Skip to content

Commit

Permalink
Bump to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dpiatek committed Nov 9, 2023
1 parent d8795c8 commit 946b49c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# CHANGELOG

## v0.3.0

Breaking changes in this release:

* [COL-577] Use ::$space as space channel suffix [\#244](https://github.com/ably/spaces/pull/244)

This change updates the name of the channel [used by spaces internally](./docs/channel-usage.md).

Previously, if you create a space with `spaces.get('example')`, this would create an Ably channel named `example-space`. This will now become `example::$space`.

When deploying this change, it's important to note that there will be no continuty between the channel used so far and the channel used after the update. If you have customer applications that are running spaces, sessions using the old channel should end before this update is implemented.

Other notable changes:

* [COL-533] Upgrade Ably to 1.2.46 by @lawrence-forooghian in https://github.com/ably/spaces/pull/235
* [COL-56] Add integration tests by @lawrence-forooghian in https://github.com/ably/spaces/pull/229

**Full Changelog**: https://github.com/ably/spaces/compare/0.2.0...0.3.0

## v0.2.0

In this release, we introduce React hooks for Spaces [\#233](https://github.com/ably/spaces/pull/233). See the [React Hooks documentation](/docs/react.md) for further details.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ably/spaces",
"version": "0.2.0",
"version": "0.3.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Manually update when bumping version
const VERSION = '0.2.0';
const VERSION = '0.3.0';
export { VERSION };

0 comments on commit 946b49c

Please sign in to comment.