Skip to content

Releases: awslabs/amazon-sqs-java-messaging-lib

1.1.2

08 Dec 22:07
Compare
Choose a tag to compare

What's Changed

  • Updated Java SDK version to latest 1.12.360
  • Made wait time seconds modifiable by @seanliu-oss in #140
  • Resolved CVE - geronimo issue credit to @vghero
  • Updated dependencies recommended by dependabot

New Contributors

Full Changelog: 2.0.1...1.1.2

Version 2.0.1 of the Amazon SQS Java Messaging Library

12 Oct 21:23
c16c185
Compare
Choose a tag to compare
  • bug fix
  • dependencies up2date (thanks to dedependabot v2.0)

Version 2.0.0 of the Amazon SQS Java Messaging Library

07 Jul 21:53
8627d03
Compare
Choose a tag to compare

Upgrade aws sdk to v2

Changes include the following PRs:
#112

What's Changed

New Contributors

Full Changelog: 1.1.0...2.0.0

Version 1.1.0 of the Amazon SQS Java Messaging Library

02 Jun 00:03
Compare
Choose a tag to compare

What's Changed

  • JMSTimestamp could be set to SentTimestamp by @volkanto in #111

New Contributors

Full Changelog: 1.0.9...1.1.0

Version 1.0.9 of the Amazon SQS Java Messaging Library

01 Jun 23:42
27573c0
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.0.8...1.0.9

Version 1.0.8 of the Amazon SQS Java Messaging Library

14 Aug 17:23
Compare
Choose a tag to compare

Updated the SQSMessageConsumerPrefetch receive* methods to throw an exception when the consumer is closed rather than returning null (PR #41)

Version 1.0.7 of the Amazon SQS Java Messaging Library

06 Aug 23:16
Compare
Choose a tag to compare
  • Bug fix: SQSMessageConsumer@receiveNoWait() fails to return messages when numberOfMessagesToPrefetch is 0
  • Add log message when a received message can't be converted
  • Support receiving message attributes with types of the form "String." or "Number."

Version 1.0.6 of the Amazon SQS Java Messaging Library

16 Apr 15:45
Compare
Choose a tag to compare
  • Add support for MessageProducer.setDeliveryDelay() (PR #40)

Version 1.0.5 of the Amazon SQS Java Messaging Library

13 Feb 17:59
Compare
Choose a tag to compare
  • Add support for SQS messages with a "Type" of "Number" (PR #71)

  • Preserve the JMS Correlation ID when sending and receiving messages (PR #63)

  • Fix failure to increment messagesRequested in receive methods. In rare cases this could cause a SQSMessageConsumer with numberOfMessagesToPrefetch set to 0 to get stuck and no longer receive messages.

Version 1.0.4 of the Amazon SQS Java Messaging Library

10 Aug 19:53
Compare
Choose a tag to compare
  • Support for the JMSReplyTo Destination message header field, which now correctly persists through Amazon SQS. Use this field to avoid making extra calls to the Amazon SQS GetQueueUrl API action.

  • Support for setting the numberOfMessagesToPrefetch connection parameter to 0. In this mode, messages are retrieved from Amazon SQS only when you make explicit receive() or receive(long) calls to message consumers, or when you attach a message listener to a consumer.

    Note: This mode can result in better performance in cases when handling messages is expensive.