logstash-integration-rabbitmq 7.3.1-java → 7.3.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/logstash/plugin_mixins/rabbitmq_connection.rb +0 -6
- data/logstash-integration-rabbitmq.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d87b910943f6be19026320fcad93686f4583361f394f4ce5415415bc99faaac3
|
|
4
|
+
data.tar.gz: f6dce144b898f2a818f8e9bc0751adc1e467f98ddf002abb6eedbf64f24242bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2de6023c6ae0ab82548a8933ed89771ebc839a24320e13065e177a12d488f29e329e0ef9983854600c03f28c67f49fcf627ecf92556a8839abbdae9255195d62
|
|
7
|
+
data.tar.gz: f0071bfa48a4b2f2c3727bef2543f06c9e88ef92d7a662606f782fccb508028d25f3bd3a7c6107a43334ae86d75ebf0ff6526d27ff400d5035dababf83189977
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 7.3.2
|
|
2
|
+
- Change `tls_certificate_password` type to `password` to protect from leaks in the logs [#54](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/54)
|
|
3
|
+
|
|
1
4
|
## 7.3.1
|
|
2
5
|
- DOCS: clarify the availability and cost of using the `metadata_enabled` option [#52](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/52)
|
|
3
6
|
|
|
@@ -81,12 +81,6 @@ module LogStash
|
|
|
81
81
|
# Passive queue creation? Useful for checking queue existance without modifying server state
|
|
82
82
|
config :passive, :validate => :boolean, :default => false
|
|
83
83
|
|
|
84
|
-
# TLS certifcate path
|
|
85
|
-
config :tls_certificate_path, :validate => :path, :obsolete => "This setting is obsolete. Use ssl_certificate_path instead"
|
|
86
|
-
|
|
87
|
-
# TLS certificate password
|
|
88
|
-
config :tls_certificate_password, :validate => :string, :obsolete => "This setting is obsolete. Use ssl_certificate_password instead"
|
|
89
|
-
|
|
90
84
|
# Extra queue arguments as an array.
|
|
91
85
|
# To make a RabbitMQ queue mirrored, use: `{"x-ha-policy" => "all"}`
|
|
92
86
|
config :arguments, :validate => :array, :default => {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-integration-rabbitmq'
|
|
3
|
-
s.version = '7.3.
|
|
3
|
+
s.version = '7.3.2'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "Integration with RabbitMQ - input and output plugins"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-integration-rabbitmq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.3.
|
|
4
|
+
version: 7.3.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-05-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -217,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
217
|
- !ruby/object:Gem::Version
|
|
218
218
|
version: '0'
|
|
219
219
|
requirements: []
|
|
220
|
-
rubygems_version: 3.
|
|
220
|
+
rubygems_version: 3.2.33
|
|
221
221
|
signing_key:
|
|
222
222
|
specification_version: 4
|
|
223
223
|
summary: Integration with RabbitMQ - input and output plugins
|