From 2f55182e19a786a2daca6caf4c2842937d3ff3cc Mon Sep 17 00:00:00 2001 From: rmaheshwari-splunk <84171674+rmaheshwari-splunk@users.noreply.github.com> Date: Fri, 30 Jul 2021 11:19:50 +0530 Subject: [PATCH 1/2] Release 1.10.0 Made necessary changes for release 1.10.0 --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 6 +++--- pom.xml | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8b4e627..e720603a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Splunk Logging for Java Changelog +## Version 1.10.0 + +### Bug Fixes + +* Fixed issue causing delayed time when using AsyncAppender (GitHub issue [#186](https://github.com/splunk/splunk-javascript-logging/issues/186)) + +### Minor Changes + +* Updated the project to use make conventions to spin up local dockerized instances. +* Upgrade version of okhttp to 4.9.1. +* Upgrade version of slf4j to 1.7.30. +* Upgrade version of gson to 2.8.7. +* Upgrade version of junit to 4.13.2. +* Upgrade version of commons to 3.12. + + ## Version 1.9.0 * Resolve an issue with TcpAppender losing events when busy (@avdv) diff --git a/README.md b/README.md index ef1a96c2..c4807eae 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Splunk Logging for Java -#### Version 1.9.0 +#### Version 1.10.0 Splunk logging for Java enables you to log events to HTTP Event Collector or to a TCP input on a Splunk Enterprise instance within your Java applications. You can use three major Java logging frameworks: [Logback](http://logback.qos.ch), [Log4j 2](http://logging.apache.org/log4j/2.x/), and [java.util.logging](https://docs.oracle.com/javase/7/docs/api/java/util/logging/package-summary.html). Splunk logging for Java is also enabled for [Simple Logging Facade for Java (SLF4J)](http://www.slf4j.org). @@ -24,7 +24,7 @@ Here's what you need to get going with Splunk logging for Java. If you haven't already installed Splunk, download it [here](http://www.splunk.com/download). For more about installing and running -Splunk and system requirements, see [Installing & Running Splunk](http://dev.splunk.com/view/SP-CAAADRV). Splunk logging for Java is tested with Splunk Enterprise 7.0 and 7.2. +Splunk and system requirements, see [Installing & Running Splunk](http://dev.splunk.com/view/SP-CAAADRV). Splunk logging for Java is tested with Splunk Enterprise 8.0 and 8.2.0. #### Java @@ -34,7 +34,7 @@ You'll need Java version 8 or higher, from [OpenJDK](https://openjdk.java.net) o If you're using the Log4j 2, Simple Logging Facade for Java (SLF4J), or Logback logging frameworks in conjunction with Splunk logging for Java there are additional compatibility requirements. For more about logging framework requirements, see [Enable logging to HEC](https://dev.splunk.com/enterprise/docs/devtools/java/logging-java/howtouseloggingjava/enableloghttpjava/) and [Enable logging to TCP inputs](https://dev.splunk.com/enterprise/docs/devtools/java/logging-java/howtouseloggingjava/enablelogtcpjava). These frameworks require: * Log4j version 2.12.1 -* SLF4J version 1.7.29 +* SLF4J version 1.7.30 * Logback version 1.2.3 ## Documentation and resources diff --git a/pom.xml b/pom.xml index abee5d97..185d0cc0 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.splunk.logging splunk-library-javalogging - 1.9.0 + 1.10.0 jar Splunk Logging for Java From b23222f3101b3ebad1e2cfeeb1d675142fd9a5e2 Mon Sep 17 00:00:00 2001 From: Abhi Shah Date: Fri, 30 Jul 2021 15:10:56 +0530 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e720603a..f81745ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Bug Fixes * Fixed issue causing delayed time when using AsyncAppender (GitHub issue [#186](https://github.com/splunk/splunk-javascript-logging/issues/186)) + * Now the timestamp is being recorded at the time when log event "occurs" instead of the time when log event is being "sent" ### Minor Changes