Skip to content

Latest commit

 

History

History
118 lines (95 loc) · 4.99 KB

CHANGELOG.md

File metadata and controls

118 lines (95 loc) · 4.99 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

3.0.1 - 2023-05-10

Fixed

  • Fixed AWS SDK issue by ensuring token is not included in root config options. (#24)

3.0.0 - 2023-03-09

Added

  • Added support for Laravel 9.x and Laravel 10.x.
  • Added support for PHP 8.0, 8.1, and 8.2.
  • Added a note on non-support of queued event listeners to the readme.

Removed

  • Removed support for Laravel 4.1 - Laravel 8.x. These are all EOL and will never change, so version 2.1.0 will always work for them.
  • Removed support for PHP 5.5 - PHP 7.4. These are all EOL and will never change, so version 2.1.0 will always work for them.

Changed

  • Updated package dependencies to support new minimum Laravel and PHP versions.
  • Updated CI configs to support new minimum Laravel and PHP versions.

2.1.0 - 2023-03-05

Added

  • Added support for after_commit functionality that was added in Laravel 8.19.0.

2.0.2 - 2023-03-03

Changed

  • Converted CI from Travis CI to Github Actions.
  • Updated tests to handle changes made in AWS and Laravel 8.x.
  • Updated CI config to stop running tests in Scrutinizer.

2.0.1 - 2020-09-09

Changed

  • Updated CI configs to run tests on Laravel 8.x.
  • Updated readme with new version information.

2.0.0 - 2020-07-17

Added

  • Added support for queue suffixes that was added in Laravel 7.x.
  • Added an allow_delay config option to prevent the later() method from throwing an exception.
  • Added tests for checking if the connector created the queue properly with the given config.

Fixed

  • Fixed reading the message group and deduplicator set on queued notifications.
  • Fixed reading the message group and deduplicator set on queued mailables.

1.2.0 - 2020-06-30

Added

  • Support for AWS STS temporary credentials session token in the config. (#9, 3493a99)

Changed

  • Updated readme with newer queue connection environment variable name as of Laravel 5.7.
  • Updated readme wording about alternative AWS credentials.

Fixed

  • Fixed spelling typo in the readme.

1.1.3 - 2020-06-26

Changed

  • Updated ramsey/uuid dependency version to support Laravel 7.x.
  • Updated CI configs to run tests on Laravel 7.x.
  • Updated readme with new version information.

1.1.2 - 2020-06-26

Changed

  • Support queuing job instances in Laravel 4 to support per job message groups.
  • Updated readme with new support information.
  • Updated CI config to remove composer memory limit and retry failed composer commands.

1.1.1 - 2019-12-10

Changed

  • Support Laravel 6.x by converting string and array helpers to use support classes.
  • Updated CI configs to support newest versions of Laravel and PHP.
  • Updated readme with new version information.
  • Added a missing test for invalid bound deduplicators.
  • Cleaned up some unused use statements and variables in tests.

1.1.0 - 2018-05-08

Added

  • New changelog.
  • Support for automatic package discovery in Laravel 5.5+.

Changed

  • Updated CI configs for increased test coverage.
  • Allow key and secret config keys to be omitted for alternative AWS credentials.
  • Updated readme with version information and message group information.

1.0.2 - 2017-02-14

Fixed

  • Fix onMessageGroup() typo in the documentation.

1.0.1 - 2017-02-14

Fixed

  • Fix FIFO connector not registering due to the deferred service provider.

1.0.0 - 2017-02-13

Added

  • Initial release!