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

## [v1.0.7](https://github.com/ably/laravel-broadcaster/tree/v1.0.7)

[Full Changelog](https://github.com/ably/laravel-broadcaster/compare/v1.0.6...v1.0.7)

**Laravel 12 support**

- Add support for laravel 12 [\#58](https://github.com/ably/laravel-broadcaster/issues/58)

**Merged pull requests:**

- \[ECO-5208\] Support laravel 12 [\#59](https://github.com/ably/laravel-broadcaster/pull/59) ([sacOO7](https://github.com/sacOO7))
- docs\(README\): capability operations section links [\#57](https://github.com/ably/laravel-broadcaster/pull/57) ([guspan-tanadi](https://github.com/guspan-tanadi))

## [v1.0.6](https://github.com/ably/laravel-broadcaster/tree/v1.0.6)

[Full Changelog](https://github.com/ably/laravel-broadcaster/compare/v1.0.5...v1.0.6)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ npm run dev
'ably' => [
'driver' => 'ably',
'key' => env('ABLY_KEY'),
'token_expiry' => env('ABLY_TOKEN_EXPIRY', 3600)
'token_expiry' => env('ABLY_TOKEN_EXPIRY', 28800)
],
```

Expand Down Expand Up @@ -257,3 +257,4 @@ This library uses [semantic versioning](http://semver.org/). For each release, t
7. Add a tag and push it to origin - e.g.: `git tag v1.0.6 && git push origin v1.0.6`.
8. Visit https://github.com/ably/laravel-broadcaster/tags and add release notes for the release including links to the changelog entry.
9. Visit https://packagist.org/packages/ably/laravel-broadcaster, log in to Packagist, and click the "Update" button.
10. Create the entry on the [Ably Changelog](https://changelog.ably.com/) (via [headwayapp](https://headwayapp.co/))
2 changes: 1 addition & 1 deletion src/AblyBroadcaster.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class AblyBroadcaster extends Broadcaster
{
const LIB_VERSION = '1.0.6';
const LIB_VERSION = '1.0.7';

/**
* The AblyRest SDK instance.
Expand Down