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