@feathersjs/authentication-client 5.0.0-pre.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +800 -0
- package/LICENSE +22 -0
- package/README.md +23 -0
- package/lib/core.d.ts +34 -0
- package/lib/core.js +136 -0
- package/lib/core.js.map +1 -0
- package/lib/hooks/authentication.d.ts +2 -0
- package/lib/hooks/authentication.js +19 -0
- package/lib/hooks/authentication.js.map +1 -0
- package/lib/hooks/index.d.ts +2 -0
- package/lib/hooks/index.js +8 -0
- package/lib/hooks/index.js.map +1 -0
- package/lib/hooks/populate-header.d.ts +2 -0
- package/lib/hooks/populate-header.js +20 -0
- package/lib/hooks/populate-header.js.map +1 -0
- package/lib/index.d.ts +21 -0
- package/lib/index.js +68 -0
- package/lib/index.js.map +1 -0
- package/lib/storage.d.ts +21 -0
- package/lib/storage.js +36 -0
- package/lib/storage.js.map +1 -0
- package/package.json +76 -0
- package/src/core.ts +200 -0
- package/src/hooks/authentication.ts +18 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/populate-header.ts +20 -0
- package/src/index.ts +66 -0
- package/src/storage.ts +49 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,800 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# [5.0.0-pre.10](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.9...v5.0.0-pre.10) (2021-09-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [5.0.0-pre.9](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.8...v5.0.0-pre.9) (2021-08-09)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [5.0.0-pre.8](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.7...v5.0.0-pre.8) (2021-08-09)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [5.0.0-pre.7](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.6...v5.0.0-pre.7) (2021-08-09)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# [5.0.0-pre.6](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.5...v5.0.0-pre.6) (2021-08-08)
|
|
39
|
+
|
|
40
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
# [5.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.4...v5.0.0-pre.5) (2021-06-23)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
* **hooks:** Migrate built-in hooks and allow backwards compatibility ([#2358](https://github.com/feathersjs/feathers/issues/2358)) ([759c5a1](https://github.com/feathersjs/feathers/commit/759c5a19327a731af965c3604119393b3d09a406))
|
|
52
|
+
* **koa:** Use extended query parser for compatibility ([#2397](https://github.com/feathersjs/feathers/issues/2397)) ([b2944ba](https://github.com/feathersjs/feathers/commit/b2944bac3ec6d5ecc80dc518cd4e58093692db74))
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* **adapter-commons:** Add support for params.adapter option and move memory adapter to @feathersjs/memory ([#2367](https://github.com/feathersjs/feathers/issues/2367)) ([a43e7da](https://github.com/feathersjs/feathers/commit/a43e7da22b6b981a96d1321736ea9a0cb924fb4f))
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
# [5.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.3...v5.0.0-pre.4) (2021-05-13)
|
|
64
|
+
|
|
65
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
# [5.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.2...v5.0.0-pre.3) (2021-04-21)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* **typescript:** Improve TypeScript backwards compatibility ([#2310](https://github.com/feathersjs/feathers/issues/2310)) ([f33be73](https://github.com/feathersjs/feathers/commit/f33be73fc46a533efb15df9aab0658e3240d3897))
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
### Features
|
|
80
|
+
|
|
81
|
+
* **dependencies:** Remove direct debug dependency ([#2296](https://github.com/feathersjs/feathers/issues/2296)) ([501d416](https://github.com/feathersjs/feathers/commit/501d4164d30c6a126906dc640cdfdc82207ba34a))
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
# [5.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.1...v5.0.0-pre.2) (2021-04-06)
|
|
88
|
+
|
|
89
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
# [5.0.0-beta.1](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-04-03)
|
|
96
|
+
|
|
97
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
# [5.0.0-beta.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.1...v5.0.0-beta.0) (2021-03-28)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### Bug Fixes
|
|
107
|
+
|
|
108
|
+
* Update Grant usage and other dependencies ([#2264](https://github.com/feathersjs/feathers/issues/2264)) ([7b0f8fa](https://github.com/feathersjs/feathers/commit/7b0f8fad252419ed0ad0bf259cdf3104d322ab60))
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Features
|
|
112
|
+
|
|
113
|
+
* Application service types default to any ([#1566](https://github.com/feathersjs/feathers/issues/1566)) ([d93ba9a](https://github.com/feathersjs/feathers/commit/d93ba9a17edd20d3397bb00f4f6e82e804e42ed6))
|
|
114
|
+
* Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
|
|
115
|
+
* **authentication-client:** Throw separate OauthError in authentication client ([#2189](https://github.com/feathersjs/feathers/issues/2189)) ([fa45ec5](https://github.com/feathersjs/feathers/commit/fa45ec520b21834e103e6fe4200b06dced56c0e6))
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
# [5.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.5.11...v5.0.0-pre.1) (2020-12-17)
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
### chore
|
|
129
|
+
|
|
130
|
+
* **package:** Remove @feathersjs/primus packages from core ([#1919](https://github.com/feathersjs/feathers/issues/1919)) ([d20b7d5](https://github.com/feathersjs/feathers/commit/d20b7d5a70f4d3306e294696156e8aa0337c35e9)), closes [#1899](https://github.com/feathersjs/feathers/issues/1899)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
### BREAKING CHANGES
|
|
134
|
+
|
|
135
|
+
* **package:** Remove primus packages to be moved into the ecosystem.
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### chore
|
|
145
|
+
|
|
146
|
+
* **package:** Remove @feathersjs/primus packages from core ([#1919](https://github.com/feathersjs/feathers/issues/1919)) ([d20b7d5](https://github.com/feathersjs/feathers/commit/d20b7d5a70f4d3306e294696156e8aa0337c35e9)), closes [#1899](https://github.com/feathersjs/feathers/issues/1899)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
### BREAKING CHANGES
|
|
150
|
+
|
|
151
|
+
* **package:** Remove primus packages to be moved into the ecosystem.
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Bug Fixes
|
|
159
|
+
|
|
160
|
+
* **authentication-client:** Allow reAuthentication using specific strategy ([#2140](https://github.com/feathersjs/feathers/issues/2140)) ([2a2bbf7](https://github.com/feathersjs/feathers/commit/2a2bbf7f8ee6d32b9fac8afab3421286b06e6443))
|
|
161
|
+
* **socketio-client:** Throw an error and show a warning if someone tries to use socket.io-client v3 ([#2135](https://github.com/feathersjs/feathers/issues/2135)) ([cc3521c](https://github.com/feathersjs/feathers/commit/cc3521c935a1cbd690e29b7057998e3898f282db))
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
## [4.5.10](https://github.com/feathersjs/feathers/compare/v4.5.9...v4.5.10) (2020-11-08)
|
|
168
|
+
|
|
169
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09)
|
|
176
|
+
|
|
177
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
### Bug Fixes
|
|
187
|
+
|
|
188
|
+
* **authentication-client:** Fix storage type so it works with all supported interfaces ([#2041](https://github.com/feathersjs/feathers/issues/2041)) ([6ee0e78](https://github.com/feathersjs/feathers/commit/6ee0e78d55cf1214f61458f386b94c350eec32af))
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
## [4.5.7](https://github.com/feathersjs/feathers/compare/v4.5.6...v4.5.7) (2020-07-24)
|
|
195
|
+
|
|
196
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
## [4.5.6](https://github.com/feathersjs/feathers/compare/v4.5.5...v4.5.6) (2020-07-12)
|
|
203
|
+
|
|
204
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
## [4.5.5](https://github.com/feathersjs/feathers/compare/v4.5.4...v4.5.5) (2020-07-11)
|
|
211
|
+
|
|
212
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29)
|
|
219
|
+
|
|
220
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)
|
|
227
|
+
|
|
228
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
## [4.5.2](https://github.com/feathersjs/feathers/compare/v4.5.1...v4.5.2) (2020-03-04)
|
|
235
|
+
|
|
236
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
## [4.5.1](https://github.com/feathersjs/feathers/compare/v4.5.0...v4.5.1) (2020-01-24)
|
|
243
|
+
|
|
244
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
# [4.5.0](https://github.com/feathersjs/feathers/compare/v4.4.3...v4.5.0) (2020-01-18)
|
|
251
|
+
|
|
252
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
## [4.4.3](https://github.com/feathersjs/feathers/compare/v4.4.1...v4.4.3) (2019-12-06)
|
|
259
|
+
|
|
260
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
## [4.4.1](https://github.com/feathersjs/feathers/compare/v4.4.0...v4.4.1) (2019-11-27)
|
|
267
|
+
|
|
268
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
# [4.4.0](https://github.com/feathersjs/feathers/compare/v4.3.11...v4.4.0) (2019-11-27)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
### Bug Fixes
|
|
278
|
+
|
|
279
|
+
* **authentication-client:** Reset authentication promise on socket disconnect ([#1696](https://github.com/feathersjs/feathers/issues/1696)) ([3951626](https://github.com/feathersjs/feathers/commit/395162633ff22e95833a3c2900cb9464bb5b056f))
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
## [4.3.11](https://github.com/feathersjs/feathers/compare/v4.3.10...v4.3.11) (2019-11-11)
|
|
286
|
+
|
|
287
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
## [4.3.10](https://github.com/feathersjs/feathers/compare/v4.3.9...v4.3.10) (2019-10-26)
|
|
294
|
+
|
|
295
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26)
|
|
302
|
+
|
|
303
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
### Bug Fixes
|
|
313
|
+
|
|
314
|
+
* Improve authentication client default storage initialization ([#1613](https://github.com/feathersjs/feathers/issues/1613)) ([d7f5107](https://github.com/feathersjs/feathers/commit/d7f5107ef76297b4ca6db580afc5e2b372f5ee4d))
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
## [4.3.5](https://github.com/feathersjs/feathers/compare/v4.3.4...v4.3.5) (2019-10-07)
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### Bug Fixes
|
|
324
|
+
|
|
325
|
+
* Authentication type improvements and timeout fix ([#1605](https://github.com/feathersjs/feathers/issues/1605)) ([19854d3](https://github.com/feathersjs/feathers/commit/19854d3))
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
## [4.3.4](https://github.com/feathersjs/feathers/compare/v4.3.3...v4.3.4) (2019-10-03)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Bug Fixes
|
|
335
|
+
|
|
336
|
+
* Typing improvements ([#1580](https://github.com/feathersjs/feathers/issues/1580)) ([7818aec](https://github.com/feathersjs/feathers/commit/7818aec))
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
## [4.3.3](https://github.com/feathersjs/feathers/compare/v4.3.2...v4.3.3) (2019-09-21)
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
### Bug Fixes
|
|
346
|
+
|
|
347
|
+
* Small improvements in dependencies and code sturcture ([#1562](https://github.com/feathersjs/feathers/issues/1562)) ([42c13e2](https://github.com/feathersjs/feathers/commit/42c13e2))
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
## [4.3.2](https://github.com/feathersjs/feathers/compare/v4.3.1...v4.3.2) (2019-09-16)
|
|
354
|
+
|
|
355
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
## [4.3.1](https://github.com/feathersjs/feathers/compare/v4.3.0...v4.3.1) (2019-09-09)
|
|
362
|
+
|
|
363
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
# [4.3.0](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.4...v4.3.0) (2019-08-27)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
### Bug Fixes
|
|
373
|
+
|
|
374
|
+
* Only remove token on NotAuthenticated error in authentication client and handle error better ([#1525](https://github.com/feathersjs/feathers/issues/1525)) ([13a8758](https://github.com/feathersjs/feathers/commit/13a8758))
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
# [4.3.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.3...v4.3.0-pre.4) (2019-08-22)
|
|
381
|
+
|
|
382
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
# [4.3.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.2...v4.3.0-pre.3) (2019-08-19)
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
### Bug Fixes
|
|
392
|
+
|
|
393
|
+
* Update all dependencies ([7d53a00](https://github.com/feathersjs/feathers/commit/7d53a00))
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### Features
|
|
397
|
+
|
|
398
|
+
* Let strategies handle the connection ([#1510](https://github.com/feathersjs/feathers/issues/1510)) ([4329feb](https://github.com/feathersjs/feathers/commit/4329feb))
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
# [4.3.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.1...v4.3.0-pre.2) (2019-08-02)
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
### Bug Fixes
|
|
408
|
+
|
|
409
|
+
* Do not error in authentication client on logout ([#1473](https://github.com/feathersjs/feathers/issues/1473)) ([8211b98](https://github.com/feathersjs/feathers/commit/8211b98))
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
# [4.3.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.5...v4.3.0-pre.1) (2019-07-11)
|
|
416
|
+
|
|
417
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
# [4.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.4...v4.0.0-pre.5) (2019-07-10)
|
|
424
|
+
|
|
425
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
# [4.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.3...v4.0.0-pre.4) (2019-07-05)
|
|
432
|
+
|
|
433
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
# [4.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.2...v4.0.0-pre.3) (2019-06-01)
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
### Bug Fixes
|
|
443
|
+
|
|
444
|
+
* Make oAuth paths more consistent and improve authentication client ([#1377](https://github.com/feathersjs/feathers/issues/1377)) ([adb2543](https://github.com/feathersjs/feathers/commit/adb2543))
|
|
445
|
+
* Typings fix and improvements. ([#1364](https://github.com/feathersjs/feathers/issues/1364)) ([515b916](https://github.com/feathersjs/feathers/commit/515b916))
|
|
446
|
+
* Update dependencies and fix tests ([#1373](https://github.com/feathersjs/feathers/issues/1373)) ([d743a7f](https://github.com/feathersjs/feathers/commit/d743a7f))
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
# [4.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.1...v4.0.0-pre.2) (2019-05-15)
|
|
453
|
+
|
|
454
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
# [4.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.0...v4.0.0-pre.1) (2019-05-08)
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
### Bug Fixes
|
|
464
|
+
|
|
465
|
+
* Guard against null in client side logout function ([#1319](https://github.com/feathersjs/feathers/issues/1319)) ([fa7f057](https://github.com/feathersjs/feathers/commit/fa7f057))
|
|
466
|
+
* Handle error oAuth redirect in authentication client ([#1307](https://github.com/feathersjs/feathers/issues/1307)) ([12d48ee](https://github.com/feathersjs/feathers/commit/12d48ee))
|
|
467
|
+
* Merge httpStrategies and authStrategies option ([#1308](https://github.com/feathersjs/feathers/issues/1308)) ([afa4d55](https://github.com/feathersjs/feathers/commit/afa4d55))
|
|
468
|
+
* Rename jwtStrategies option to authStrategies ([#1305](https://github.com/feathersjs/feathers/issues/1305)) ([4aee151](https://github.com/feathersjs/feathers/commit/4aee151))
|
|
469
|
+
* Update version number check ([53575c5](https://github.com/feathersjs/feathers/commit/53575c5))
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
# [4.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v3.2.0-pre.1...v4.0.0-pre.0) (2019-04-21)
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
### Bug Fixes
|
|
479
|
+
|
|
480
|
+
* Authentication core improvements ([#1260](https://github.com/feathersjs/feathers/issues/1260)) ([c5dc7a2](https://github.com/feathersjs/feathers/commit/c5dc7a2))
|
|
481
|
+
* Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
|
|
482
|
+
* Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
|
|
483
|
+
* Update all dependencies to latest ([#1206](https://github.com/feathersjs/feathers/issues/1206)) ([e51e0f6](https://github.com/feathersjs/feathers/commit/e51e0f6))
|
|
484
|
+
* **package:** update debug to version 3.0.0 ([#61](https://github.com/feathersjs/feathers/issues/61)) ([6f5009c](https://github.com/feathersjs/feathers/commit/6f5009c))
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
### Features
|
|
488
|
+
|
|
489
|
+
* @feathersjs/authentication-oauth ([#1299](https://github.com/feathersjs/feathers/issues/1299)) ([656bae7](https://github.com/feathersjs/feathers/commit/656bae7))
|
|
490
|
+
* Add authentication through oAuth redirect to authentication client ([#1301](https://github.com/feathersjs/feathers/issues/1301)) ([35d8043](https://github.com/feathersjs/feathers/commit/35d8043))
|
|
491
|
+
* Add AuthenticationBaseStrategy and make authentication option handling more explicit ([#1284](https://github.com/feathersjs/feathers/issues/1284)) ([2667d92](https://github.com/feathersjs/feathers/commit/2667d92))
|
|
492
|
+
* Add TypeScript definitions ([#1275](https://github.com/feathersjs/feathers/issues/1275)) ([9dd6713](https://github.com/feathersjs/feathers/commit/9dd6713))
|
|
493
|
+
* Authentication v3 client ([#1240](https://github.com/feathersjs/feathers/issues/1240)) ([65b43bd](https://github.com/feathersjs/feathers/commit/65b43bd))
|
|
494
|
+
* Authentication v3 core server implementation ([#1205](https://github.com/feathersjs/feathers/issues/1205)) ([1bd7591](https://github.com/feathersjs/feathers/commit/1bd7591))
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
### BREAKING CHANGES
|
|
498
|
+
|
|
499
|
+
* Rewrite for authentication v3
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
## [1.0.11](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication-client@1.0.10...@feathersjs/authentication-client@1.0.11) (2019-01-26)
|
|
506
|
+
|
|
507
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
## [1.0.10](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication-client@1.0.9...@feathersjs/authentication-client@1.0.10) (2019-01-02)
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
### Bug Fixes
|
|
517
|
+
|
|
518
|
+
* Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
<a name="1.0.9"></a>
|
|
525
|
+
## [1.0.9](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication-client@1.0.8...@feathersjs/authentication-client@1.0.9) (2018-12-16)
|
|
526
|
+
|
|
527
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
<a name="1.0.8"></a>
|
|
534
|
+
## [1.0.8](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication-client@1.0.7...@feathersjs/authentication-client@1.0.8) (2018-10-26)
|
|
535
|
+
|
|
536
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
<a name="1.0.7"></a>
|
|
543
|
+
## [1.0.7](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication-client@1.0.6...@feathersjs/authentication-client@1.0.7) (2018-10-25)
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
### Bug Fixes
|
|
547
|
+
|
|
548
|
+
* Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
<a name="1.0.6"></a>
|
|
555
|
+
## [1.0.6](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication-client@1.0.5...@feathersjs/authentication-client@1.0.6) (2018-09-21)
|
|
556
|
+
|
|
557
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
<a name="1.0.5"></a>
|
|
564
|
+
## [1.0.5](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication-client@1.0.4...@feathersjs/authentication-client@1.0.5) (2018-09-17)
|
|
565
|
+
|
|
566
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
<a name="1.0.4"></a>
|
|
573
|
+
## [1.0.4](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication-client@1.0.3...@feathersjs/authentication-client@1.0.4) (2018-09-02)
|
|
574
|
+
|
|
575
|
+
**Note:** Version bump only for package @feathersjs/authentication-client
|
|
576
|
+
|
|
577
|
+
<a name="1.0.3"></a>
|
|
578
|
+
## 1.0.3
|
|
579
|
+
|
|
580
|
+
- Migrate to Monorepo ([feathers#462](https://github.com/feathersjs/feathers/issues/462))
|
|
581
|
+
|
|
582
|
+
## [v1.0.2](https://github.com/feathersjs/authentication-client/tree/v1.0.2) (2018-01-03)
|
|
583
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v1.0.1...v1.0.2)
|
|
584
|
+
|
|
585
|
+
**Closed issues:**
|
|
586
|
+
|
|
587
|
+
- No Auth header added when sending 1st request [\#80](https://github.com/feathersjs/authentication-client/issues/80)
|
|
588
|
+
|
|
589
|
+
**Merged pull requests:**
|
|
590
|
+
|
|
591
|
+
- Update to correspond with latest release [\#84](https://github.com/feathersjs/authentication-client/pull/84) ([daffl](https://github.com/daffl))
|
|
592
|
+
- Update semistandard to the latest version 🚀 [\#83](https://github.com/feathersjs/authentication-client/pull/83) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
593
|
+
- Update feathers-memory to the latest version 🚀 [\#82](https://github.com/feathersjs/authentication-client/pull/82) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
594
|
+
|
|
595
|
+
## [v1.0.1](https://github.com/feathersjs/authentication-client/tree/v1.0.1) (2017-11-16)
|
|
596
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v1.0.0...v1.0.1)
|
|
597
|
+
|
|
598
|
+
**Merged pull requests:**
|
|
599
|
+
|
|
600
|
+
- Add default export for better ES module \(TypeScript\) compatibility [\#81](https://github.com/feathersjs/authentication-client/pull/81) ([daffl](https://github.com/daffl))
|
|
601
|
+
- Update @feathersjs/authentication to the latest version 🚀 [\#79](https://github.com/feathersjs/authentication-client/pull/79) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
602
|
+
|
|
603
|
+
## [v1.0.0](https://github.com/feathersjs/authentication-client/tree/v1.0.0) (2017-11-01)
|
|
604
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v1.0.0-pre.1...v1.0.0)
|
|
605
|
+
|
|
606
|
+
**Merged pull requests:**
|
|
607
|
+
|
|
608
|
+
- Update dependencies for release [\#78](https://github.com/feathersjs/authentication-client/pull/78) ([daffl](https://github.com/daffl))
|
|
609
|
+
|
|
610
|
+
## [v1.0.0-pre.1](https://github.com/feathersjs/authentication-client/tree/v1.0.0-pre.1) (2017-10-25)
|
|
611
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.3.3...v1.0.0-pre.1)
|
|
612
|
+
|
|
613
|
+
**Closed issues:**
|
|
614
|
+
|
|
615
|
+
- Error authenticating! Error: Token provided to verifyJWT is missing or not a string ? [\#73](https://github.com/feathersjs/authentication-client/issues/73)
|
|
616
|
+
- Authorization Header not sent!! [\#69](https://github.com/feathersjs/authentication-client/issues/69)
|
|
617
|
+
- users.get\(id\) failed \(Not authenticated\) after successful login. [\#66](https://github.com/feathersjs/authentication-client/issues/66)
|
|
618
|
+
|
|
619
|
+
**Merged pull requests:**
|
|
620
|
+
|
|
621
|
+
- Updates for Feathers v3 [\#77](https://github.com/feathersjs/authentication-client/pull/77) ([daffl](https://github.com/daffl))
|
|
622
|
+
- Update Codeclimate token and badges [\#76](https://github.com/feathersjs/authentication-client/pull/76) ([daffl](https://github.com/daffl))
|
|
623
|
+
- Rename repository and use npm scope [\#75](https://github.com/feathersjs/authentication-client/pull/75) ([daffl](https://github.com/daffl))
|
|
624
|
+
- Update to new plugin infrastructure [\#74](https://github.com/feathersjs/authentication-client/pull/74) ([daffl](https://github.com/daffl))
|
|
625
|
+
- Update mocha to the latest version 🚀 [\#72](https://github.com/feathersjs/authentication-client/pull/72) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
626
|
+
- Add babel-polyfill and package-lock.json [\#68](https://github.com/feathersjs/authentication-client/pull/68) ([daffl](https://github.com/daffl))
|
|
627
|
+
- Passport.verifyJWT should return Promise\<any\>, not Promise\<string\> [\#65](https://github.com/feathersjs/authentication-client/pull/65) ([zxh19890103](https://github.com/zxh19890103))
|
|
628
|
+
- Update debug to the latest version 🚀 [\#61](https://github.com/feathersjs/authentication-client/pull/61) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
629
|
+
- Update ws to the latest version 🚀 [\#60](https://github.com/feathersjs/authentication-client/pull/60) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
630
|
+
|
|
631
|
+
## [v0.3.3](https://github.com/feathersjs/authentication-client/tree/v0.3.3) (2017-07-18)
|
|
632
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.3.2...v0.3.3)
|
|
633
|
+
|
|
634
|
+
**Closed issues:**
|
|
635
|
+
|
|
636
|
+
- An in-range update of feathers is breaking the build 🚨 [\#59](https://github.com/feathersjs/authentication-client/issues/59)
|
|
637
|
+
- An in-range update of feathers is breaking the build 🚨 [\#58](https://github.com/feathersjs/authentication-client/issues/58)
|
|
638
|
+
|
|
639
|
+
**Merged pull requests:**
|
|
640
|
+
|
|
641
|
+
- typings: add auth methods to feathers.Application interface [\#57](https://github.com/feathersjs/authentication-client/pull/57) ([j2L4e](https://github.com/j2L4e))
|
|
642
|
+
- Update feathers-authentication-local to the latest version 🚀 [\#55](https://github.com/feathersjs/authentication-client/pull/55) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
643
|
+
- Update chai to the latest version 🚀 [\#54](https://github.com/feathersjs/authentication-client/pull/54) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
644
|
+
- Update feathers-socketio to the latest version 🚀 [\#50](https://github.com/feathersjs/authentication-client/pull/50) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
645
|
+
- Update socket.io-client to the latest version 🚀 [\#49](https://github.com/feathersjs/authentication-client/pull/49) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
646
|
+
- Update README.md [\#47](https://github.com/feathersjs/authentication-client/pull/47) ([bertho-zero](https://github.com/bertho-zero))
|
|
647
|
+
|
|
648
|
+
## [v0.3.2](https://github.com/feathersjs/authentication-client/tree/v0.3.2) (2017-04-30)
|
|
649
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.3.1...v0.3.2)
|
|
650
|
+
|
|
651
|
+
**Closed issues:**
|
|
652
|
+
|
|
653
|
+
- An in-range update of feathers-errors is breaking the build 🚨 [\#45](https://github.com/feathersjs/authentication-client/issues/45)
|
|
654
|
+
- Proper way to save jwt in cookies [\#41](https://github.com/feathersjs/authentication-client/issues/41)
|
|
655
|
+
- Allow customizing the `tokenField` [\#38](https://github.com/feathersjs/authentication-client/issues/38)
|
|
656
|
+
- Show blank page in safari@iOS 8.3 [\#37](https://github.com/feathersjs/authentication-client/issues/37)
|
|
657
|
+
|
|
658
|
+
**Merged pull requests:**
|
|
659
|
+
|
|
660
|
+
- Catch getJWT promise errors [\#46](https://github.com/feathersjs/authentication-client/pull/46) ([NikitaVlaznev](https://github.com/NikitaVlaznev))
|
|
661
|
+
- Update semistandard to the latest version 🚀 [\#43](https://github.com/feathersjs/authentication-client/pull/43) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
662
|
+
- Update feathers-hooks to the latest version 🚀 [\#42](https://github.com/feathersjs/authentication-client/pull/42) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
663
|
+
- Update dependencies to enable Greenkeeper 🌴 [\#40](https://github.com/feathersjs/authentication-client/pull/40) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
664
|
+
- Note that auth must be configured after rest/socket clients [\#36](https://github.com/feathersjs/authentication-client/pull/36) ([hubgit](https://github.com/hubgit))
|
|
665
|
+
|
|
666
|
+
## [v0.3.1](https://github.com/feathersjs/authentication-client/tree/v0.3.1) (2017-03-10)
|
|
667
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.3.0...v0.3.1)
|
|
668
|
+
|
|
669
|
+
**Closed issues:**
|
|
670
|
+
|
|
671
|
+
- The latest tag on NPM is wrong [\#35](https://github.com/feathersjs/authentication-client/issues/35)
|
|
672
|
+
- exp claim should be optional [\#33](https://github.com/feathersjs/authentication-client/issues/33)
|
|
673
|
+
|
|
674
|
+
**Merged pull requests:**
|
|
675
|
+
|
|
676
|
+
- Fix \#33 exp claim should be optional [\#34](https://github.com/feathersjs/authentication-client/pull/34) ([whollacsek](https://github.com/whollacsek))
|
|
677
|
+
|
|
678
|
+
## [v0.3.0](https://github.com/feathersjs/authentication-client/tree/v0.3.0) (2017-03-08)
|
|
679
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.2.0...v0.3.0)
|
|
680
|
+
|
|
681
|
+
## [v0.2.0](https://github.com/feathersjs/authentication-client/tree/v0.2.0) (2017-03-07)
|
|
682
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.10...v0.2.0)
|
|
683
|
+
|
|
684
|
+
**Closed issues:**
|
|
685
|
+
|
|
686
|
+
- Support `authenticated` and `logout` client side events [\#29](https://github.com/feathersjs/authentication-client/issues/29)
|
|
687
|
+
- The default header mismatches the default feathers-authentication header [\#23](https://github.com/feathersjs/authentication-client/issues/23)
|
|
688
|
+
- Re-authenticating fails when passing options [\#22](https://github.com/feathersjs/authentication-client/issues/22)
|
|
689
|
+
- Socket.io timeout does nothing when there is JWT token available [\#19](https://github.com/feathersjs/authentication-client/issues/19)
|
|
690
|
+
|
|
691
|
+
**Merged pull requests:**
|
|
692
|
+
|
|
693
|
+
- Fix header casing [\#32](https://github.com/feathersjs/authentication-client/pull/32) ([daffl](https://github.com/daffl))
|
|
694
|
+
- Add client side `authenticated` and `logout` events [\#31](https://github.com/feathersjs/authentication-client/pull/31) ([daffl](https://github.com/daffl))
|
|
695
|
+
- Add support for socket timeouts and some refactoring [\#30](https://github.com/feathersjs/authentication-client/pull/30) ([daffl](https://github.com/daffl))
|
|
696
|
+
|
|
697
|
+
## [v0.1.10](https://github.com/feathersjs/authentication-client/tree/v0.1.10) (2017-03-03)
|
|
698
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.9...v0.1.10)
|
|
699
|
+
|
|
700
|
+
**Merged pull requests:**
|
|
701
|
+
|
|
702
|
+
- Remove hardcoded values for Config and Credentials typings [\#28](https://github.com/feathersjs/authentication-client/pull/28) ([myknbani](https://github.com/myknbani))
|
|
703
|
+
|
|
704
|
+
## [v0.1.9](https://github.com/feathersjs/authentication-client/tree/v0.1.9) (2017-03-01)
|
|
705
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.8...v0.1.9)
|
|
706
|
+
|
|
707
|
+
**Merged pull requests:**
|
|
708
|
+
|
|
709
|
+
- Typescript Definitions [\#25](https://github.com/feathersjs/authentication-client/pull/25) ([AbraaoAlves](https://github.com/AbraaoAlves))
|
|
710
|
+
|
|
711
|
+
## [v0.1.8](https://github.com/feathersjs/authentication-client/tree/v0.1.8) (2017-02-05)
|
|
712
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.7...v0.1.8)
|
|
713
|
+
|
|
714
|
+
**Closed issues:**
|
|
715
|
+
|
|
716
|
+
- Uncaught TypeError: Cannot read property 'options' of undefined [\#26](https://github.com/feathersjs/authentication-client/issues/26)
|
|
717
|
+
- Browser Version [\#24](https://github.com/feathersjs/authentication-client/issues/24)
|
|
718
|
+
|
|
719
|
+
**Merged pull requests:**
|
|
720
|
+
|
|
721
|
+
- Hoist upgrade handler into current scope by using an arrow function [\#27](https://github.com/feathersjs/authentication-client/pull/27) ([daffl](https://github.com/daffl))
|
|
722
|
+
|
|
723
|
+
## [v0.1.7](https://github.com/feathersjs/authentication-client/tree/v0.1.7) (2017-01-29)
|
|
724
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.6...v0.1.7)
|
|
725
|
+
|
|
726
|
+
**Closed issues:**
|
|
727
|
+
|
|
728
|
+
- \[Webpack\] TypeError: \_this4.storage.getItem is not a function [\#18](https://github.com/feathersjs/authentication-client/issues/18)
|
|
729
|
+
- \[Feature request\] Signup via socket [\#17](https://github.com/feathersjs/authentication-client/issues/17)
|
|
730
|
+
- Missing auth token when used with feathers-rest in comparison to feathers-socketio [\#16](https://github.com/feathersjs/authentication-client/issues/16)
|
|
731
|
+
- Cannot read property 'on' of undefined - feathers-authentication-client [\#12](https://github.com/feathersjs/authentication-client/issues/12)
|
|
732
|
+
|
|
733
|
+
**Merged pull requests:**
|
|
734
|
+
|
|
735
|
+
- Update passport.js [\#20](https://github.com/feathersjs/authentication-client/pull/20) ([bertho-zero](https://github.com/bertho-zero))
|
|
736
|
+
|
|
737
|
+
## [v0.1.6](https://github.com/feathersjs/authentication-client/tree/v0.1.6) (2016-12-14)
|
|
738
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.5...v0.1.6)
|
|
739
|
+
|
|
740
|
+
**Closed issues:**
|
|
741
|
+
|
|
742
|
+
- `logout\(\)` doesn't resolve [\#10](https://github.com/feathersjs/authentication-client/issues/10)
|
|
743
|
+
|
|
744
|
+
**Merged pull requests:**
|
|
745
|
+
|
|
746
|
+
- Fix linting [\#13](https://github.com/feathersjs/authentication-client/pull/13) ([marshallswain](https://github.com/marshallswain))
|
|
747
|
+
|
|
748
|
+
## [v0.1.5](https://github.com/feathersjs/authentication-client/tree/v0.1.5) (2016-12-13)
|
|
749
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.4...v0.1.5)
|
|
750
|
+
|
|
751
|
+
## [v0.1.4](https://github.com/feathersjs/authentication-client/tree/v0.1.4) (2016-12-13)
|
|
752
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.3...v0.1.4)
|
|
753
|
+
|
|
754
|
+
**Closed issues:**
|
|
755
|
+
|
|
756
|
+
- populateAccessToken tries to access non-existent property [\#11](https://github.com/feathersjs/authentication-client/issues/11)
|
|
757
|
+
- Socket client should automatically auth on reconnect [\#2](https://github.com/feathersjs/authentication-client/issues/2)
|
|
758
|
+
|
|
759
|
+
**Merged pull requests:**
|
|
760
|
+
|
|
761
|
+
- More specific imports for StealJS [\#14](https://github.com/feathersjs/authentication-client/pull/14) ([marshallswain](https://github.com/marshallswain))
|
|
762
|
+
|
|
763
|
+
## [v0.1.3](https://github.com/feathersjs/authentication-client/tree/v0.1.3) (2016-11-23)
|
|
764
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.2...v0.1.3)
|
|
765
|
+
|
|
766
|
+
**Closed issues:**
|
|
767
|
+
|
|
768
|
+
- Client should ensure socket.io upgrade is complete before authenticating [\#4](https://github.com/feathersjs/authentication-client/issues/4)
|
|
769
|
+
|
|
770
|
+
**Merged pull requests:**
|
|
771
|
+
|
|
772
|
+
- Socket reconnect [\#9](https://github.com/feathersjs/authentication-client/pull/9) ([ekryski](https://github.com/ekryski))
|
|
773
|
+
|
|
774
|
+
## [v0.1.2](https://github.com/feathersjs/authentication-client/tree/v0.1.2) (2016-11-22)
|
|
775
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.1...v0.1.2)
|
|
776
|
+
|
|
777
|
+
**Merged pull requests:**
|
|
778
|
+
|
|
779
|
+
- Custom jwt strategy names [\#8](https://github.com/feathersjs/authentication-client/pull/8) ([ekryski](https://github.com/ekryski))
|
|
780
|
+
|
|
781
|
+
## [v0.1.1](https://github.com/feathersjs/authentication-client/tree/v0.1.1) (2016-11-21)
|
|
782
|
+
[Full Changelog](https://github.com/feathersjs/authentication-client/compare/v0.1.0...v0.1.1)
|
|
783
|
+
|
|
784
|
+
**Merged pull requests:**
|
|
785
|
+
|
|
786
|
+
- Socket reconnect upgrade auth [\#3](https://github.com/feathersjs/authentication-client/pull/3) ([marshallswain](https://github.com/marshallswain))
|
|
787
|
+
|
|
788
|
+
## [v0.1.0](https://github.com/feathersjs/authentication-client/tree/v0.1.0) (2016-11-18)
|
|
789
|
+
**Closed issues:**
|
|
790
|
+
|
|
791
|
+
- Relation with feathers-authentication [\#6](https://github.com/feathersjs/authentication-client/issues/6)
|
|
792
|
+
- Client: Docs for getJWT & verifyJWT [\#1](https://github.com/feathersjs/authentication-client/issues/1)
|
|
793
|
+
|
|
794
|
+
**Merged pull requests:**
|
|
795
|
+
|
|
796
|
+
- Feathers authentication 1.0 compatible client [\#7](https://github.com/feathersjs/authentication-client/pull/7) ([ekryski](https://github.com/ekryski))
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|