Skip to content

Commit

Permalink
Merge pull request #163 from ably/release/1.1.8
Browse files Browse the repository at this point in the history
Release/1.1.8
  • Loading branch information
owenpearson authored Jul 28, 2022
2 parents d3b9bda + a1ecbbb commit 17f589c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## [1.1.8](https://github.com/ably/ably-php/tree/1.1.8) (2022-07-27)

[Full Changelog](https://github.com/ably/ably-php/compare/1.1.7...1.1.8)

**Implemented enhancements:**

- Add support to get channel lifecycle status [\#155](https://github.com/ably/ably-php/issues/155)
- Add support for MsgPack [\#161](https://github.com/ably/ably-php/pull/161) ([AmirQSD](https://github.com/AmirQSD))

**Merged pull requests:**

- Add support for MsgPack [\#161](https://github.com/ably/ably-php/pull/161) ([AmirQSD](https://github.com/AmirQSD))
- Channel status [\#159](https://github.com/ably/ably-php/pull/159) ([sacOO7](https://github.com/sacOO7))
- Refactor code [\#152](https://github.com/ably/ably-php/pull/152) ([sacOO7](https://github.com/sacOO7))

## [1.1.7](https://github.com/ably/ably-php/tree/1.1.7) (2022-05-19)
[Full Changelog](https://github.com/ably/ably-php/compare/1.1.6...1.1.7)

Expand Down
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@ If you find any compatibility issues, please [do raise an issue](https://github.

Currently, this SDK only supports [Ably REST](https://www.ably.com/docs/rest). However, you can use the [MQTT adapter](https://www.ably.com/docs/mqtt) to implement [Ably's Realtime](https://www.ably.com/docs/realtime) features using [Mosquitto PHP](https://github.com/mgdm/Mosquitto-PHP).

This SDK is *not compatible* with some of the Ably features:

| Feature |
| :--- |
| [MsgPack Binary Protocol](https://www.ably.com/docs/realtime/usage#client-options) |


## Documentation

Visit https://www.ably.com/docs for a complete API reference and more examples.
Expand Down Expand Up @@ -157,7 +150,6 @@ To see what has changed in recent versions of Bundler, see the [CHANGELOG](CHANG
## Known limitations

1. This client library requires PHP version 5.4 or greater
2. [msgpack](http://msgpack.org/) support is currently missing in PHP client library, as there is no stable PHP msgpack library available.

## Running the tests

Expand Down
2 changes: 1 addition & 1 deletion src/Defaults.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class Defaults {
const API_VERSION = '1.1';
const LIB_VERSION = '1.1.7';
const LIB_VERSION = '1.1.8';

static $restHost = "rest.ably.io";
static $realtimeHost = "realtime.ably.io";
Expand Down

0 comments on commit 17f589c

Please sign in to comment.