logstash-input-azure_event_hubs 1.4.4 → 1.4.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a99554e6bcdd5621bad4b5747b0cc85598954a6352503d194f5cd56d1e7856c2
4
- data.tar.gz: 6ddb686a32ca38703ec893b2fca726b6f156caf58bd59a40fd2ee3bf797f5d61
3
+ metadata.gz: 24763a109522b1616d01ac89030c1267b3d71c065dec3b3e996aeb156e6aba1c
4
+ data.tar.gz: c6bb6220ca942890b0fa550e1a8de15791291ab19e0b7c20faa2ae76bb83f88c
5
5
  SHA512:
6
- metadata.gz: f32620d841a1ea3e5d0a72322a29fee434e2d541de502dbcb491dcdd46260f5b1b3c282b4e7ab65f2b3d78f6dca37accbd1f31191e8f91290ffeebbf02384319
7
- data.tar.gz: fc192d930814f7f2dc6f281e70a9978bb94a9da23037bf433a9a79b454fc72cd737da81159d62a68ac694c15b86bc2fb63e272dc54b382faf0521f7403b37ea8
6
+ metadata.gz: cb6393312037e8fdf615f20a0b71cfb984bb3db4365d5de3a80d3088fc2f33dfeb2faa817d5b6c4b43914e924f703d2a5bb4f1250ab08567c796b2df86172d16
7
+ data.tar.gz: 0b9998bfceb30f4fcefd0596ba8045565f413bdc58b6975a043ef84460bce4e8bfb85acc44691c6177a039487edc458df34f06fc6919c540e61fe554face15ee
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 1.4.6
2
+ - [DOCS] Add outbound port requirements for Event Hub [#88](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/88)
3
+
4
+ ## 1.4.5
5
+ - Upgrade multiple dependencies such as `gson`, `log4j2`, `jackson` to make the plugin stable [#83](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/83)
6
+
1
7
  ## 1.4.4
2
8
  - Fix: Replace use of block with lambda to fix wrong number of arguments error on jruby-9.3.4.0 [#75](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/75)
3
9
 
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- logstash_path = "../../logstash"
5
+ logstash_path = ENV['LOGSTASH_PATH'] || '../../logstash'
6
6
 
7
7
  if Dir.exist?(logstash_path) && ENV["LOGSTASH_SOURCE"] == "1"
8
8
  gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.4
1
+ 1.4.6
@@ -5,5 +5,5 @@ require_jar('com.microsoft.azure', 'azure-eventhubs', '2.3.2')
5
5
  require_jar('com.microsoft.azure', 'qpid-proton-j-extensions', '1.2.4')
6
6
  require_jar('com.microsoft.azure', 'azure-eventhubs-eph', '2.5.2')
7
7
  require_jar('com.microsoft.azure', 'azure-storage', '8.6.6')
8
- require_jar('com.google.code.gson', 'gson', '2.8.5')
8
+ require_jar('com.google.code.gson', 'gson', '2.10.1')
9
9
  require_jar('org.apache.qpid', 'proton-j', '0.33.9')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-azure_event_hubs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.4
4
+ version: 1.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-13 00:00:00.000000000 Z
11
+ date: 2024-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -103,7 +103,7 @@ files:
103
103
  - lib/logstash/inputs/processor_factory.rb
104
104
  - logstash-input-azure_event_hubs.gemspec
105
105
  - spec/inputs/azure_event_hub_spec.rb
106
- - vendor/jar-dependencies/com/google/code/gson/gson/2.8.5/gson-2.8.5.jar
106
+ - vendor/jar-dependencies/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
107
107
  - vendor/jar-dependencies/com/microsoft/azure/azure-eventhubs-eph/2.5.2/azure-eventhubs-eph-2.5.2.jar
108
108
  - vendor/jar-dependencies/com/microsoft/azure/azure-eventhubs/2.3.2/azure-eventhubs-2.3.2.jar
109
109
  - vendor/jar-dependencies/com/microsoft/azure/azure-storage/8.6.6/azure-storage-8.6.6.jar
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  - !ruby/object:Gem::Version
132
132
  version: '0'
133
133
  requirements: []
134
- rubygems_version: 3.1.6
134
+ rubygems_version: 3.2.33
135
135
  signing_key:
136
136
  specification_version: 4
137
137
  summary: Consumes events from Azure Event Hubs for use with Logstash