|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 2.0.0 |
| 4 | + |
| 5 | +* [CHANGED] Use TLS by default. |
| 6 | +* [REMOVED] Support for Ruby 2.4 and 2.5. |
| 7 | +* [FIXED] Handle empty or nil configuration. |
| 8 | +* [REMOVED] Legacy Push Notification integration. |
| 9 | +* [ADDED] Stalebot and Github actions. |
| 10 | + |
3 | 11 | ## 1.4.3
|
4 | 12 |
|
5 | 13 | * [FIXED] Remove newline from end of base64 encoded strings, some decoders don't like
|
|
11 | 19 | * [FIXED] Return `shared_secret` to support authenticating encrypted channels. Thanks
|
12 | 20 | @Benjaminpjacobs
|
13 | 21 |
|
14 |
| -# 1.4.1 |
15 | 22 |
|
16 | 23 | * [CHANGED] Remove rbnacl from dependencies so we don't get errors when it isn't
|
17 | 24 | required. Thanks @y-yagi!
|
18 | 25 |
|
19 |
| -# 1.4.0 |
20 | 26 |
|
21 | 27 | * [ADDED] Support for end-to-end encryption.
|
22 | 28 |
|
23 |
| -# 1.3.3 |
24 | 29 |
|
25 | 30 | * [CHANGED] Rewording to clarify "Pusher Channels" or simply "Channels" product name.
|
26 | 31 |
|
27 |
| -# 1.3.2 |
28 | 32 |
|
29 | 33 | * [FIXED] Return a specific error for "Request Entity Too Large" (body over 10KB).
|
30 | 34 | * [ADDED] Add a `use_tls` option for SSL (defaults to false).
|
31 | 35 | * [ADDED] Add a `from_url` client method (in addition to existing `from_env` option).
|
32 | 36 | * [CHANGED] Improved documentation and fixed typos.
|
33 | 37 | * [ADDED] Add Ruby 2.4 to test matrix.
|
34 | 38 |
|
35 |
| -# 1.3.1 |
36 | 39 |
|
37 | 40 | * [FIXED] Added missing client batch methods to default client delegations
|
38 | 41 | * [CHANGED] Document raised exception in the `authenticate` method
|
39 | 42 | * [FIXED] Fixes em-http-request from using v2.5.0 of `addressable` breaking builds.
|
40 | 43 |
|
41 |
| -# 1.3.0 |
42 | 44 |
|
43 | 45 | * [ADDED] Add support for sending push notifications on up to 10 interests.
|
44 | 46 |
|
45 |
| -# 1.2.1 |
46 | 47 |
|
47 | 48 | * [FIXED] Fixes Rails 5 compatibility. Use duck-typing to detect request object
|
48 | 49 |
|
49 |
| -# 1.2.0 |
50 | 50 |
|
51 | 51 | * [CHANGED] Minor release for Native notifications
|
52 | 52 |
|
53 |
| -# 1.2.0.rc1 |
54 | 53 |
|
55 | 54 | * [ADDED] Add support for Native notifications
|
56 | 55 |
|
57 |
| -# 1.1.0 |
58 | 56 |
|
59 | 57 | * [ADDED] Add support for batch events
|
60 | 58 |
|
61 |
| -# 1.0.0 |
62 | 59 |
|
63 | 60 | * [CHANGED] No breaking changes, this release is just to follow semver and show that we
|
64 | 61 | are stable.
|
65 | 62 |
|
66 |
| -# 0.18.0 |
67 | 63 |
|
68 | 64 | * [ADDED] Introduce `Pusher::Client.from_env`
|
69 | 65 | * [FIXED] Improve error handling on missing config
|
70 | 66 |
|
71 |
| -# 0.17.0 |
72 | 67 |
|
73 | 68 | * [ADDED] Introduce the `cluster` option.
|
74 | 69 |
|
75 |
| -# 0.16.0 |
76 | 70 |
|
77 | 71 | * [CHANGED] Bump httpclient version to 2.7
|
78 | 72 | * [REMOVED] Ruby 1.8.7 is not supported anymore.
|
79 | 73 |
|
80 |
| -# 0.15.2 |
81 | 74 |
|
82 | 75 | * [CHANGED] Documented `Pusher.channel_info`, `Pusher.channels`
|
83 | 76 | * [ADDED] Added `Pusher.channel_users`
|
84 | 77 |
|
85 |
| -# 0.15.1 |
86 | 78 |
|
87 | 79 | * [FIXED] Fixed a bug where the `authenticate` method added in 0.15.0 wasn't exposed on the Pusher class.
|
88 | 80 |
|
89 |
| -# 0.15.0 |
90 | 81 |
|
91 | 82 | * [ADDED] Added `Pusher.authenticate` method for authenticating private and presence channels.
|
92 | 83 | This is prefered over the older `Pusher['a_channel'].authenticate(...)` style.
|
93 | 84 |
|
94 |
| -# 0.14.6 |
95 | 85 |
|
96 | 86 | * [CHANGED] Updated to use the `pusher-signature` gem instead of `signature`.
|
97 | 87 | This resolves namespace related issues.
|
98 | 88 |
|
99 |
| -# 0.14.5 |
100 | 89 |
|
101 | 90 | * [SECURITY] Prevent auth delegation trough crafted socket IDs
|
102 | 91 |
|
103 |
| -# 0.14.4 |
104 | 92 |
|
105 | 93 | * [SECURITY] Prevent timing attack, update signature to v0.1.8
|
106 | 94 | * [SECURITY] Prevent POODLE. Disable SSLv3, update httpclient to v2.5
|
107 | 95 | * [FIXED] Fix channel name character limit.
|
108 | 96 | * [ADDED] Adds support for listing users on a presence channel
|
109 | 97 |
|
110 |
| -# 0.14.2 |
111 | 98 |
|
112 | 99 | * [CHANGED] Bump httpclient to v2.4. See #62 (POODLE SSL)
|
113 | 100 | * [CHANGED] Fix limited channel count at README.md. Thanks @tricknotes
|
0 commit comments