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

## [1.4.0](https://github.com/ably/ably-go/tree/v1.4.0)

[Full Changelog](https://github.com/ably/ably-go/compare/v1.3.0...v1.4.0)

**This release adds support for Message Updates, Deletes, and Appends** — allowing published messages to be updated, deleted, or appended to after the fact using the new `UpdateMessage`, `DeleteMessage`, and `AppendMessage` operations.

**Implemented enhancements:**

- feat: Implement Message Updates, Deletes, and Appends [\#697](https://github.com/ably/ably-go/pull/697)
- Add V2 operation types for protocol v6+ [\#695](https://github.com/ably/ably-go/pull/695)
- state: add v2 object create types [\#699](https://github.com/ably/ably-go/pull/699)
- Switch to github.com/coder/websocket [\#698](https://github.com/ably/ably-go/pull/698)

**Fixed bugs:**

- fix: Prevent deadlock when releasing a realtime channel [\#693](https://github.com/ably/ably-go/pull/693)

**Merged pull requests:**

- Only run tests on the latest two Go versions [\#700](https://github.com/ably/ably-go/pull/700)

## [1.3.0](https://github.com/ably/ably-go/tree/v1.3.0)

[Full Changelog](https://github.com/ably/ably-go/compare/v1.2.22...v1.3.0)
Expand Down
2 changes: 1 addition & 1 deletion ably/proto_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const (
ablyProtocolVersionHeader = "X-Ably-Version"
ablyErrorCodeHeader = "X-Ably-Errorcode"
ablyErrorMessageHeader = "X-Ably-Errormessage"
clientLibraryVersion = "1.3.0"
clientLibraryVersion = "1.4.0"
clientRuntimeName = "go"
// ablyProtocolVersion is the default Ably protocol version used for all requests.
// Protocol v5 is required for message operations (publish/update/delete/append) to return
Expand Down
Loading