You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v5.0.0 release
Note that while we already have a go.mod and go.sum files, this
package was not fully compatible with go modules because the
pacakge name had not been updated to
github.com/pusher/pusher-http-go/v4. This commit completes this
step.
We are taking the approach described in option 1. of
https://github.com/golang/go/wiki/Modules#releasing-modules-v2-or-higher,
and leaving major versions on the master branch.
Note that this will cause problems for legacy package managers
like `dep`.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,13 @@
1
+
5.0.0 / 2021-02-19
2
+
==================
3
+
* Breaking change: `TriggerBatch` now returns `(*TriggerBatchChannelsList, error)` instead of `error`
4
+
* Breaking change: `Channels` takes `ChannelsParams` as a parameter instead of `map[string]string`
5
+
* Breaking change: `Channel` takes `ChannelParams` as a parameter instead of `map[string]string`
6
+
* Breaking change: switches to go modules using option 1. described in https://github.com/golang/go/wiki/Modules#releasing-modules-v2-or-higher - this will cause problems for legacy package managers like `dep`
7
+
* Added `TriggerWithParams` and `TriggerMultiWithParams` - they provide support for requesting channel attributes by specifying an `Info` field
8
+
* Added a `Info` field to the `Event` type passed to `TriggerBatch`
9
+
* Deprecated `TriggerExclusive` and `TriggerMultiExclusive` (use `TriggerWithParams` and `TriggerMultiWithParams` instead)
10
+
1
11
4.0.4 / 2020-09-02
2
12
==================
3
13
* Allow message size to be overridden for dedicate cluster customers (PR [#63](https://github.com/pusher/pusher-http-go/pull/71))
0 commit comments