Skip to content

Commit

Permalink
deps: update to latest-available same-major dependencies (#67)
Browse files Browse the repository at this point in the history
* deps: update to latest-available same-major dependencies

* bump version and update changelog
  • Loading branch information
yaauie committed Sep 30, 2021
1 parent dcb85da commit 21aaa53
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.4.0
- Updated the minor version of Azure SDK and other dependencies to ensure users of this plugin get upstream fixes and improvements [#67](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/67)

## 1.3.0
- Add EventHub `user properties` in `@metadata` object [#66](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/66)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.4.0
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ repositories {
dependencies {
testCompile 'junit:junit:4.12'

compile 'com.microsoft.azure:azure-eventhubs:2.2.0'
compile 'com.microsoft.azure:qpid-proton-j-extensions:1.1.0'
compile 'com.microsoft.azure:azure-eventhubs-eph:2.4.0'
compile 'com.microsoft.azure:azure-storage:8.0.0'
compile 'com.microsoft.azure:azure-eventhubs:2.3.2'
compile 'com.microsoft.azure:qpid-proton-j-extensions:1.2.4'
compile 'com.microsoft.azure:azure-eventhubs-eph:2.5.2'
compile 'com.microsoft.azure:azure-storage:8.6.6'
runtime 'com.google.code.gson:gson:2.8.5'
runtime 'org.apache.qpid:proton-j:0.33.3'
runtime 'org.apache.qpid:proton-j:0.33.9'
compile 'org.apache.logging.log4j:log4j-api:2.9.1'
runtime 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1'
}
Expand Down
10 changes: 5 additions & 5 deletions lib/logstash-input-azure_event_hubs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

require 'jar_dependencies'
require_jar('com.google.code.gson', 'gson', '2.8.5')
require_jar('org.apache.qpid', 'proton-j', '0.33.3')
require_jar('org.apache.qpid', 'proton-j', '0.33.9')
require_jar('org.apache.logging.log4j', 'log4j-slf4j-impl', '2.9.1')
require_jar('com.microsoft.azure', 'azure-eventhubs', '2.2.0')
require_jar('com.microsoft.azure', 'qpid-proton-j-extensions', '1.1.0')
require_jar('com.microsoft.azure', 'azure-eventhubs-eph', '2.4.0')
require_jar('com.microsoft.azure', 'azure-storage', '8.0.0')
require_jar('com.microsoft.azure', 'azure-eventhubs', '2.3.2')
require_jar('com.microsoft.azure', 'qpid-proton-j-extensions', '1.2.4')
require_jar('com.microsoft.azure', 'azure-eventhubs-eph', '2.5.2')
require_jar('com.microsoft.azure', 'azure-storage', '8.6.6')
require_jar('org.apache.logging.log4j', 'log4j-api', '2.9.1')

0 comments on commit 21aaa53

Please sign in to comment.