Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/integration/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
set -ex

# runs integration tests, assuming that a rabbitmq server is running on ${RABBITMQ_HOST} (if provided) or on localhost.
jruby -rbundler/setup -S rspec --format=documentation --tag integration
bundle exec rspec spec --tag integration --format=documentation
2 changes: 1 addition & 1 deletion .ci/unit/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
set -ex

# runs unit-test specs
jruby -rbundler/setup -S rspec --format=documentation
bundle exec rspec spec --format=documentation
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 7.3.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)

## 7.3.1
- DOCS: clarify the availability and cost of using the `metadata_enabled` option [#52](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/52)

Expand Down
6 changes: 0 additions & 6 deletions lib/logstash/plugin_mixins/rabbitmq_connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,6 @@ def setup_rabbitmq_connection_config
# Passive queue creation? Useful for checking queue existance without modifying server state
config :passive, :validate => :boolean, :default => false

# TLS certifcate path
config :tls_certificate_path, :validate => :path, :obsolete => "This setting is obsolete. Use ssl_certificate_path instead"

# TLS certificate password
config :tls_certificate_password, :validate => :string, :obsolete => "This setting is obsolete. Use ssl_certificate_password instead"

# Extra queue arguments as an array.
# To make a RabbitMQ queue mirrored, use: `{"x-ha-policy" => "all"}`
config :arguments, :validate => :array, :default => {}
Expand Down
2 changes: 1 addition & 1 deletion logstash-integration-rabbitmq.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'logstash-integration-rabbitmq'
s.version = '7.3.1'
s.version = '7.3.2'
s.licenses = ['Apache License (2.0)']
s.summary = "Integration with RabbitMQ - input and output plugins"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+
Expand Down