Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/1.2.15 #628

Merged
merged 2 commits into from
Jan 16, 2024
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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Change Log

## [1.2.15](https://github.com/ably/ably-go/tree/1.2.15)

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

**Closed issues:**

- Implement no connection serial [\#612](https://github.com/ably/ably-go/issues/612)
- Potential go routine on blocking functions [\#623](https://github.com/ably/ably-go/issues/623)
- Client gives up on reconnect [\#606](https://github.com/ably/ably-go/issues/606)
- RTP5: Channel state change side effects on presence [\#259](https://github.com/ably/ably-go/issues/259)
- RTP18: Server-initiated presence sync [\#256](https://github.com/ably/ably-go/issues/256)
- RTP2, RTP17, RTP19: PresenceMap [\#255](https://github.com/ably/ably-go/issues/255)
- RTP1: HAS\_PRESENCE flag [\#248](https://github.com/ably/ably-go/issues/248)
- RTP16: Presence connection state conditions [\#214](https://github.com/ably/ably-go/issues/214)

**Merged pull requests:**

- \[SDK-222\] \[no connection serial \] + implement missing internal presence map + presencequeue [\#621](https://github.com/ably/ably-go/pull/621) ([sacOO7](https://github.com/sacOO7))
- \[SDK-3746\] Feature/integration 2.0 [\#613](https://github.com/ably/ably-go/pull/613) ([sacOO7](https://github.com/sacOO7))

## [1.2.14](https://github.com/ably/ably-go/tree/1.2.14)

[Full Changelog](https://github.com/ably/ably-go/compare/v1.2.13...v1.2.14)
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.2.14"
clientLibraryVersion = "1.2.15"
clientRuntimeName = "go"
ablyProtocolVersion = "2" // CSV2
ablyClientIDHeader = "X-Ably-ClientId"
Expand Down
Loading