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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 7.3.0

* [Added] Support for Guzzle 8 (#406, thanks @GrahamCampbell)
* [Changed] Raise minimum Guzzle to 7.8.2 and require psr7 ^2.6.3 or ^3.0 and promises ^2.0.3 or ^3.0, dropping support for psr7 v1 and promises v1 (#406)
* [Fixed] Correct typed property syntax for PHP 7.3 compatibility in WebhookTest (#405)

## 7.2.8

* [Fixed] Fix PSR-3 logger context type in webhook error handling (null → [])
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Or add to `composer.json`:

```json
"require": {
"pusher/pusher-php-server": "^7.2"
"pusher/pusher-php-server": "^7.3"
}
```

Expand Down
2 changes: 1 addition & 1 deletion src/Pusher.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Pusher implements LoggerAwareInterface, PusherInterface
/**
* @var string Version
*/
public static $VERSION = '7.2.8';
public static $VERSION = '7.3.0';

/**
* @var null|PusherCrypto
Expand Down