Skip to content

Releases: jenkinsci/syslog-java-client

syslog-java-client-1.1.7

16 Jan 14:50
Compare
Choose a tag to compare
  • Support user provided SSLContext

syslog-java-client-1.1.6

08 Jan 22:10
Compare
Choose a tag to compare
  • #25 implement closeable and add close() method the message senders
  • #29 pul up setSyslogServerHostname() and setSyslogServerPort() on AbstractSyslogMessageSender.java
  • Adopt SpotBugs

syslog-java-client-1.1.4

14 Sep 11:53
Compare
Choose a tag to compare

syslog-java-client-1.1.3

04 Jul 08:10
Compare
Choose a tag to compare
  • Fix #23 "Priority calculation wrong for rfc3164" thanks to @SpyrosPac

syslog-java-client-1.1.2

01 Nov 17:53
Compare
Choose a tag to compare
  • #19 NullPointerException in com.cloudbees.syslog.sender.TcpSyslogMessageSender#toString()

syslog-java-client-1.1.1

01 Nov 17:55
Compare
Choose a tag to compare
  • Fix #17 Fix the list of reserved SD-ID's.

syslog-java-client-1.1.0

06 Sep 11:53
Compare
Choose a tag to compare
  • Make it configurable to end messages with CR LF for TCPSender thanks to @jasonparallel
tcpSyslogMessageSender. setPostfix("\r\n"); // \r\n is the default, can be overridden
  • Modified Facility to use digits 0 - 23 instead of multiplied by 8, to conform with syslog spec thanks to @dhsmith1001

  • Add support for structured data thanks to @bbergquist0930

        SyslogMessage message = new SyslogMessage()
                .withTimestamp(cal.getTimeInMillis())
                .withAppName("my_app")
                .withHostname("myserver.example.com")
                .withFacility(Facility.USER)
                .withSeverity(Severity.INFORMATIONAL)
                .withTimestamp(cal.getTimeInMillis())
                .withMsg("a syslog message")
                .withSDElement(
                   new SDElement(
                      "exampleSDID@32473", 
                      new SDParam("iut", "3"), 
                      new SDParam("eventSource", "Application"), 
                      new SDParam("eventID", "1011")));

syslog-java-client-1.0.8

12 Jan 23:14
Compare
Choose a tag to compare
  • Fix #10 "toString() on fresh SyslogMessageSenders causes NPE" thanks to @lvh

syslog-java-client-1.0.7

29 May 08:49
Compare
Choose a tag to compare
  • Fix #7 "RFC3164 timestamp are UTC instead of localtime" thanks to @casta

Note: RFC3164 will now use the local time instead of GMT.

syslog-java-client-1.0.6

03 Mar 20:12
Compare
Choose a tag to compare
  • Add missing setters on TcpSyslogMessageSender