Skip to content

Commit

Permalink
Release 7.2 (#347)
Browse files Browse the repository at this point in the history
* Add php 8.1 to CI

* Bump to version 7.2.0

* Update readme

Co-authored-by: Pusher CI <[email protected]>
  • Loading branch information
sonologico and pusher-ci authored Oct 3, 2022
1 parent 50c9358 commit 7ed4a62
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0]
php: [7.3, 7.4, 8.0, 8.1]
stability: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.stability }} Test
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 7.2.0

* [CHANGED] explicit support for 8.1
* [CHANGED] Ignore pull_request_template.md on vendor
* [ADDED] has_mixed_channels method to allow triggering a single event on multiple channels
* [FIXED] path option can be used for proxied servers under subdirectory.
* [CHANGED] base_path's leading slash is trimmed on every call to Guzzle.

## 7.1.0-beta

* [ADDED] `authenticateUser`, `authorizeChannel` and `authorizePresenceChannel`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ Or add to `composer.json`:

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

then run `composer update`.

## Supported platforms

* PHP - supports PHP versions 7.3, 7.4 and 8.0.
* PHP - supports PHP versions 7.3, 7.4, 8.0, and 8.1.
* Laravel - version 8.29 and above has built-in support for Pusher Channels as a [Broadcasting backend](https://laravel.com/docs/master/broadcasting).
* Other PHP frameworks - supported provided you are using a supported version of PHP.

Expand Down Expand Up @@ -315,7 +315,7 @@ these steps:
**Important note: This will __not__ encrypt messages on channels that are not
prefixed by `private-encrypted-`.**

**Limitation**: you cannot trigger a single event on a mixture of unencrypted
**Limitation**: you cannot trigger a single event on a mixture of unencrypted
and encrypted channels in a call to `trigger`, e.g.

```php
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.1.0-beta';
public static $VERSION = '7.2.0';

/**
* @var null|PusherCrypto
Expand Down

0 comments on commit 7ed4a62

Please sign in to comment.