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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 3.3.1
- Fixed a regression introduced in 3.3.0 where `add_field` is no longer enriching events [#59](https://github.com/logstash-plugins/logstash-input-jms/pull/59)

## 3.3.0
- Added support for decoding multiple events from text or binary messages when using a codec that produces multiple events
- Added support for decoding multiple events from text or binary messages when using a codec that produces multiple events [#56](https://github.com/logstash-plugins/logstash-input-jms/pull/56)

## 3.2.2
- Fix: Remove usage of `java_kind_of?` to allow this plugin to be supported for versions of Logstash using jruby-9.3.x
Expand Down
1 change: 1 addition & 0 deletions lib/logstash/inputs/jms.rb
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ def queue_events(msg, output_queue)
@properties_setter.call(event, properties)
end

decorate(event)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we place have an unit test. 🙏

event
end.each do |ready_event|
output_queue << ready_event
Expand Down
2 changes: 1 addition & 1 deletion logstash-input-jms.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-input-jms'
s.version = '3.3.0'
s.version = '3.3.1'
s.licenses = ['Apache License (2.0)']
s.summary = "Reads events from a Jms Broker"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
Expand Down
2 changes: 1 addition & 1 deletion setup_broker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ fi

curl -s -o activemq-all.jar https://repo1.maven.org/maven2/org/apache/activemq/activemq-all/$ACTIVEMQ_VERSION/activemq-all-$ACTIVEMQ_VERSION.jar
mv activemq-all.jar ./spec/inputs/fixtures/
curl -s -o activemq-bin.tar.gz https://archive.apache.org/dist/activemq/$ACTIVEMQ_VERSION/apache-activemq-$ACTIVEMQ_VERSION-bin.tar.gz
curl -s -o activemq-bin.tar.gz https://repo1.maven.org/maven2/org/apache/activemq/apache-activemq/$ACTIVEMQ_VERSION/apache-activemq-$ACTIVEMQ_VERSION-bin.tar.gz
tar xvf activemq-bin.tar.gz
mv apache-activemq-$ACTIVEMQ_VERSION activemq