Skip to content

Latest commit

 

History

History
171 lines (87 loc) · 3.3 KB

CHANGELOG.md

File metadata and controls

171 lines (87 loc) · 3.3 KB

Changelog

All notable changes to laravel-webhook-server will be documented in this file

3.2.1 - 2022-07-29

What's Changed

  • Allow sub-classes of CallWebhookJob to use a GuzzleHttp\Client specific for outgoing webhooks by @bezhermoso in spatie#125

Full Changelog: https://github.com/spatie/laravel-webhook-server/compare/3.2.0...3.2.1

3.2.0 - 2022-06-24

What's Changed

  • feat: add dispatchIf, dispatchUnless, dispatchSyncIf and dispatchSync… by @regnerisch in spatie#124

New Contributors

  • @regnerisch made their first contribution in spatie#124

Full Changelog: https://github.com/spatie/laravel-webhook-server/compare/3.1.2...3.2.0

3.1.2 - 2022-01-26

  • support Laravel 9

3.1.1 - 2021-12-10

What's Changed

  • Include Exception with Laravel queue failures by @awarrenlove in spatie#114

Full Changelog: https://github.com/spatie/laravel-webhook-server/compare/3.1.0...3.1.1

3.0.0 - 2021-09-10

  • support using webhook URLs as part of webhook signatures (#98)

The only breaking change in this release is the addidation of string $webhookUrl to the calculateSignature method of the Signer interface. If you have a custom Signer in your project, add that $webhookUrl to the calculateSignature method.

2.1.1 - 2021-08-27

  • add ability to use default queue of connection (#94)

2.1.0 - 2021-08-01

  • allow setting queue connection (#92)

2.0.1 - 2021-07-23

  • fix tests

2.0.0 - 2021-07-23

  • require Laravel 8
  • require PHP 8

No changes to the API were made, so you can safely upgrade from v1 to v2

1.13.0 - 2021-04-28

  • add dispatchSync

1.12.0 - 2021-04-20

  • pass Guzzle TransferStats into resulting Event (#81)

1.11.3 - 2021-04-02

  • fix for missing default headers when using withHeaders (#79)

1.11.2 - 2021-03-17

  • dispatch should return the PendingDispatch (#74)

1.11.1 - 2020-12-15

  • fix exception name for invalid signers (#67)

1.11.0 - 2020-11-28

  • add support for PHP 8

1.10.0 - 2020-10-04

  • add getUuid

1.9.3 - 2020-09-09

  • support Guzzle 7

1.9.2 - 2020-09-09

  • support Laravel 8

1.9.1 - 2020-04-10

  • do not use body in GET request (#43)

1.9.0 - 2020-03-19

  • add doNotSign

1.8.1 - 2020-03-19

  • fix uuid

1.8.0 - 2020-03-18

  • add uuid

1.7.0 - 2020-03-05

  • add dispatchNow (#39)

1.6.0 - 2020-03-02

  • add support for Laravel 7

1.5.0 - 2019-12-08

  • drop support for PHP 7.3

1.4.0 - 2019-09-05

  • add error info to the dispatched event

1.3.1 - 2019-09-05

  • remove duplicate line

1.3.0 - 2019-09-04

  • do not release job on last attempt

1.2.0 - 2019-09-04

  • add getResponse

1.1.0 - 2019-09-04

  • Add Laravel 6 support

1.0.5 - 2019-07-24

  • avoid sending unsuccessfull event when the final try of a job succeeds

1.0.4 - 2019-06-22

  • remove constructor on WebhookCallFailedEvent so it inherits properties

1.0.3 - 2019-06-19

  • add ContentType header with value application/json by default

1.0.2 - 2019-06-16

  • move test-time to dev dependencies

1.0.1 - 2019-06-15

  • fixed method names

1.0.0 - 2019-06-15

contains bug, do not use

  • initial release