Skip to content

Commit 082d4e0

Browse files
authored
Merge pull request #52 from ably/release/1.0.6
Release/1.0.6
2 parents 12db9dc + 9a3d872 commit 082d4e0

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

CHANGELOG.md

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

3+
## [v1.0.6](https://github.com/ably/laravel-broadcaster/tree/v1.0.6)
4+
5+
[Full Changelog](https://github.com/ably/laravel-broadcaster/compare/v1.0.5...v1.0.6)
6+
7+
**Fixed bugs:**
8+
9+
- Using -\>toOthers\(\) results in a "Ably error: Malformed message; invalid connectionKey" Same as issue 38 [\#48](https://github.com/ably/laravel-broadcaster/issues/48)
10+
- Issue with client ID when using SPA like inertia [\#45](https://github.com/ably/laravel-broadcaster/issues/45)
11+
12+
**Closed issues:**
13+
14+
- Fix base64 decode [\#51](https://github.com/ably/laravel-broadcaster/issues/51)
15+
- Monitor channel connection/disconnect [\#47](https://github.com/ably/laravel-broadcaster/issues/47)
16+
- Using -\>toOthers\(\) results in a "Ably error: Malformed message; invalid connectionKey" [\#38](https://github.com/ably/laravel-broadcaster/issues/38)
17+
18+
**Merged pull requests:**
19+
20+
- \[ECO-4977\] Fix/broadcast to others [\#50](https://github.com/ably/laravel-broadcaster/pull/50) ([sacOO7](https://github.com/sacOO7))
21+
- Update README [\#49](https://github.com/ably/laravel-broadcaster/pull/49) ([sacOO7](https://github.com/sacOO7))
22+
323
## [v1.0.5](https://github.com/ably/laravel-broadcaster/tree/v1.0.5)
424

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,16 +243,16 @@ Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recen
243243
## Release Process
244244
This library uses [semantic versioning](http://semver.org/). For each release, the following needs to be done:
245245

246-
1. Create a new branch for the release, named like `release/1.2.4` (where `1.2.4` is what you're releasing, being the new version).
246+
1. Create a new branch for the release, named like `release/1.0.6` (where `1.0.6` is what you're releasing, being the new version).
247247
2. Update the lib version in `src/AblyBroadcaster.php`.
248248
3. Run [`github_changelog_generator`](https://github.com/github-changelog-generator/github-changelog-generator) to automate the update of the [CHANGELOG.md](CHANGELOG.md). This may require some manual intervention, both in terms of how the command is run and how the change log file is modified. Your mileage may vary:
249-
- The command you will need to run will look something like this: `github_changelog_generator -u ably -p laravel-broadcaster --since-tag v1.2.4 --output delta.md --token $GITHUB_TOKEN_WITH_REPO_ACCESS`. Generate token [here](https://github.com/settings/tokens/new?description=GitHub%20Changelog%20Generator%20token).
249+
- The command you will need to run will look something like this: `github_changelog_generator -u ably -p laravel-broadcaster --since-tag v1.0.6 --output delta.md --token $GITHUB_TOKEN_WITH_REPO_ACCESS`. Generate token [here](https://github.com/settings/tokens/new?description=GitHub%20Changelog%20Generator%20token).
250250
- Using the command above, `--output delta.md` writes changes made after `--since-tag` to a new file.
251251
- The contents of that new file (`delta.md`) then need to be manually inserted at the top of the `CHANGELOG.md`, changing the "Unreleased" heading and linking with the current version numbers.
252252
- Also ensure that the "Full Changelog" link points to the new version tag instead of the `HEAD`.
253253
4. Commit generated [CHANGELOG.md](./CHANGELOG.md) file.
254254
5. Make a PR against `main`.
255255
6. Once the PR is approved, merge it into `main`.
256-
7. Add a tag and push it to origin - e.g.: `git tag v1.2.4 && git push origin v1.2.4`.
256+
7. Add a tag and push it to origin - e.g.: `git tag v1.0.6 && git push origin v1.0.6`.
257257
8. Visit https://github.com/ably/laravel-broadcaster/tags and add release notes for the release including links to the changelog entry.
258258
9. Visit https://packagist.org/packages/ably/laravel-broadcaster, log in to Packagist, and click the "Update" button.

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.5';
17+
const LIB_VERSION = '1.0.6';
1818

1919
/**
2020
* The AblyRest SDK instance.

0 commit comments

Comments
 (0)