diff --git a/CHANGELOG.md b/CHANGELOG.md index b03a089..47022bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ -## Unreleased +## 1.4.1 + - Update log4j dependencies [#71](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/71) - Fixed Gradle's script to use Gradle 7 [#69](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/69) ## 1.4.0 diff --git a/VERSION b/VERSION index 88c5fb8..347f583 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.0 +1.4.1 diff --git a/build.gradle b/build.gradle index 17469ad..db4ea27 100644 --- a/build.gradle +++ b/build.gradle @@ -22,8 +22,8 @@ dependencies { implementation 'com.microsoft.azure:azure-storage:8.6.6' implementation 'com.google.code.gson:gson:2.8.5' implementation 'org.apache.qpid:proton-j:0.33.9' - implementation 'org.apache.logging.log4j:log4j-api:2.9.1' - implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1' + implementation 'org.apache.logging.log4j:log4j-api:2.15.0' + implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.15.0' } diff --git a/lib/logstash-input-azure_event_hubs.rb b/lib/logstash-input-azure_event_hubs.rb index 8ae04d9..9312326 100644 --- a/lib/logstash-input-azure_event_hubs.rb +++ b/lib/logstash-input-azure_event_hubs.rb @@ -7,5 +7,5 @@ require_jar('com.microsoft.azure', 'azure-storage', '8.6.6') require_jar('com.google.code.gson', 'gson', '2.8.5') require_jar('org.apache.qpid', 'proton-j', '0.33.9') -require_jar('org.apache.logging.log4j', 'log4j-api', '2.9.1') -require_jar('org.apache.logging.log4j', 'log4j-slf4j-impl', '2.9.1') +require_jar('org.apache.logging.log4j', 'log4j-api', '2.15.0') +require_jar('org.apache.logging.log4j', 'log4j-slf4j-impl', '2.15.0')