Skip to content

Latest commit

 

History

History
76 lines (46 loc) · 1.87 KB

CHANGELOG.md

File metadata and controls

76 lines (46 loc) · 1.87 KB

Changelog

2.0.0-a1

  • Test release

2.0.0-a4

  • Test release again

2.0.0-b01

  • Test release

2.0.0-b02

  • More convenient namespaces

2.0.0

  • Update AWS Core and SQS deps to 3.3.0
  • Release 2.0.0

2.1.0

  • Add configuration extension that accepts AWSCredentials - thanks MooseMagnet

3.0.0

  • Update to Rebus 3

4.0.0

  • Update to Rebus 4
  • Add .NET Core support (netstandard 1.3)
  • Change message format to break out of SQS's limitation of being able to transfer only 10 headers - thanks mvandevy
  • Fix csproj - thanks robvanpamel
  • Add ability to use an external timeout manager or Rebus' ordinary timeout managers to overcome SQS limitations
  • Add ability to skip queue creation - thanks robvanpamel
  • Remember to configure visibility timeout for queues created by Rebus - thanks micdah

4.0.1

  • Additional one-way client configuration overloads - thanks jonathanyong81

4.0.2

  • Fix bug that did not limit size of sent message batches to 10

4.0.3

  • Do not create queues when configuration says not to - thanks robvanpamel

4.1.0

  • Add configurable factory method for customizing which implementation of IAmazonSQS is used - thanks dietermijle

4.1.1

  • Fixed issue where invalid delay value was being sent to SQS - thanks ajacksms :)

5.0.0-b02

  • Change all use of AmazonSQSClient to use instance returned from the options passed to the transport, and keep the instance for its entire lifetime
  • Enable falling back to EC2 roles by leaving out credentials when configuring Rebus
  • .ConfigureAwait(false) all the things