Skip to content

Commit 1a1259f

Browse files
authored
Merge pull request #60 from ably/release/1.0.7
Release/1.0.7
2 parents eeb1c3c + 5731773 commit 1a1259f

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [v1.0.7](https://github.com/ably/laravel-broadcaster/tree/v1.0.7)
4+
5+
[Full Changelog](https://github.com/ably/laravel-broadcaster/compare/v1.0.6...v1.0.7)
6+
7+
**Laravel 12 support**
8+
9+
- Add support for laravel 12 [\#58](https://github.com/ably/laravel-broadcaster/issues/58)
10+
11+
**Merged pull requests:**
12+
13+
- \[ECO-5208\] Support laravel 12 [\#59](https://github.com/ably/laravel-broadcaster/pull/59) ([sacOO7](https://github.com/sacOO7))
14+
- docs\(README\): capability operations section links [\#57](https://github.com/ably/laravel-broadcaster/pull/57) ([guspan-tanadi](https://github.com/guspan-tanadi))
15+
316
## [v1.0.6](https://github.com/ably/laravel-broadcaster/tree/v1.0.6)
417

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

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ npm run dev
137137
'ably' => [
138138
'driver' => 'ably',
139139
'key' => env('ABLY_KEY'),
140-
'token_expiry' => env('ABLY_TOKEN_EXPIRY', 3600)
140+
'token_expiry' => env('ABLY_TOKEN_EXPIRY', 28800)
141141
],
142142
```
143143

@@ -257,3 +257,4 @@ This library uses [semantic versioning](http://semver.org/). For each release, t
257257
7. Add a tag and push it to origin - e.g.: `git tag v1.0.6 && git push origin v1.0.6`.
258258
8. Visit https://github.com/ably/laravel-broadcaster/tags and add release notes for the release including links to the changelog entry.
259259
9. Visit https://packagist.org/packages/ably/laravel-broadcaster, log in to Packagist, and click the "Update" button.
260+
10. Create the entry on the [Ably Changelog](https://changelog.ably.com/) (via [headwayapp](https://headwayapp.co/))

src/AblyBroadcaster.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class AblyBroadcaster extends Broadcaster
1616
{
17-
const LIB_VERSION = '1.0.6';
17+
const LIB_VERSION = '1.0.7';
1818

1919
/**
2020
* The AblyRest SDK instance.

0 commit comments

Comments
 (0)