From fee6c686d6b1490d55c49ec21fd8f12e82f16637 Mon Sep 17 00:00:00 2001 From: Mike Christensen Date: Fri, 9 Jun 2023 11:00:35 +0100 Subject: [PATCH 1/3] bump version number (patch) --- ably/proto_http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ably/proto_http.go b/ably/proto_http.go index d38b0244..cb426bfa 100644 --- a/ably/proto_http.go +++ b/ably/proto_http.go @@ -11,7 +11,7 @@ const ( ablyVersionHeader = "X-Ably-Version" ablyErrorCodeHeader = "X-Ably-Errorcode" ablyErrorMessageHeader = "X-Ably-Errormessage" - libraryVersion = "1.2.11" + libraryVersion = "1.2.12" libraryName = "go" ablyVersion = "1.2" ablyClientIDHeader = "X-Ably-ClientId" From a9af8c46ff780d2cb0c196b7289d180f3a72ffef Mon Sep 17 00:00:00 2001 From: Mike Christensen Date: Fri, 9 Jun 2023 11:00:46 +0100 Subject: [PATCH 2/3] update changelog --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ecc3a6d..f69ebf96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +# Changelog + +## [1.2.12](https://github.com/ably/ably-go/tree/v1.2.12) + +[Full Changelog](https://github.com/ably/ably-go/compare/v1.2.11...v1.2.12) + +**Closed issues:** + +- Fix base url for go-pages [\#587](https://github.com/ably/ably-go/issues/587) +- Clarification on client fallbacks/failures? [\#90](https://github.com/ably/ably-go/issues/90) + +**Merged pull requests:** + +- \[DSC-94\] add publish async method [\#596](https://github.com/ably/ably-go/pull/596) ([andydunstall](https://github.com/andydunstall)) +- channel: remove transient attach notice [\#595](https://github.com/ably/ably-go/pull/595) ([andydunstall](https://github.com/andydunstall)) +- Integration/subscription filters [\#594](https://github.com/ably/ably-go/pull/594) ([mschristensen](https://github.com/mschristensen)) +- Fix godocs base-url [\#591](https://github.com/ably/ably-go/pull/591) ([sacOO7](https://github.com/sacOO7)) +- add agents option [\#590](https://github.com/ably/ably-go/pull/590) ([andydunstall](https://github.com/andydunstall)) +- Run unit tests based on msgpack\_test\_fixtures [\#588](https://github.com/ably/ably-go/pull/588) ([amnonbc](https://github.com/amnonbc)) +- Go 1.20 is out, so we should test against it, and remove 1.18 [\#586](https://github.com/ably/ably-go/pull/586) ([amnonbc](https://github.com/amnonbc)) +- update the errors script so that it no longer generates constants from errors by mangling their descriptions. [\#585](https://github.com/ably/ably-go/pull/585) ([amnonbc](https://github.com/amnonbc)) + ## [1.2.11](https://github.com/ably/ably-go/tree/v1.2.11) This release updates docstring API commentaries for public interfaces. From cff7289360e35b060717b558513cd0e459db11c7 Mon Sep 17 00:00:00 2001 From: Mike Christensen Date: Fri, 9 Jun 2023 11:16:50 +0100 Subject: [PATCH 3/3] editorialise changelog --- CHANGELOG.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f69ebf96..4d01a7d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,21 +6,15 @@ [Full Changelog](https://github.com/ably/ably-go/compare/v1.2.11...v1.2.12) -**Closed issues:** - -- Fix base url for go-pages [\#587](https://github.com/ably/ably-go/issues/587) -- Clarification on client fallbacks/failures? [\#90](https://github.com/ably/ably-go/issues/90) +This release adds a new experimental `RealtimeChannels.GetDerived` method which allows you to create custom realtime data feeds by selectively subscribing to receive only part of the data from the channel. See the [announcement post](https://pages.ably.com/subscription-filters-preview) for more information. **Merged pull requests:** -- \[DSC-94\] add publish async method [\#596](https://github.com/ably/ably-go/pull/596) ([andydunstall](https://github.com/andydunstall)) -- channel: remove transient attach notice [\#595](https://github.com/ably/ably-go/pull/595) ([andydunstall](https://github.com/andydunstall)) -- Integration/subscription filters [\#594](https://github.com/ably/ably-go/pull/594) ([mschristensen](https://github.com/mschristensen)) -- Fix godocs base-url [\#591](https://github.com/ably/ably-go/pull/591) ([sacOO7](https://github.com/sacOO7)) -- add agents option [\#590](https://github.com/ably/ably-go/pull/590) ([andydunstall](https://github.com/andydunstall)) -- Run unit tests based on msgpack\_test\_fixtures [\#588](https://github.com/ably/ably-go/pull/588) ([amnonbc](https://github.com/amnonbc)) -- Go 1.20 is out, so we should test against it, and remove 1.18 [\#586](https://github.com/ably/ably-go/pull/586) ([amnonbc](https://github.com/amnonbc)) -- update the errors script so that it no longer generates constants from errors by mangling their descriptions. [\#585](https://github.com/ably/ably-go/pull/585) ([amnonbc](https://github.com/amnonbc)) +- Support Go 1.20, drop support for Go 1.18 [\#586](https://github.com/ably/ably-go/pull/586) ([amnonbc](https://github.com/amnonbc)) +- Add new GetDerived method to support subscription filters [\#594](https://github.com/ably/ably-go/pull/594) ([mschristensen](https://github.com/mschristensen)) +- Add new async publishing methods PublishAsync and PublishMultipleAsync [\#596](https://github.com/ably/ably-go/pull/596) ([andydunstall](https://github.com/andydunstall)) +- Fix docs for transient publishing [\#595](https://github.com/ably/ably-go/pull/595) ([andydunstall](https://github.com/andydunstall)) +- Add support for setting agents option [\#590](https://github.com/ably/ably-go/pull/590) ([andydunstall](https://github.com/andydunstall)) ## [1.2.11](https://github.com/ably/ably-go/tree/v1.2.11)