@feathersjs/authentication 5.0.0-pre.6 → 5.0.0
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 +281 -268
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/lib/core.d.ts +31 -5
- package/lib/core.js +84 -80
- package/lib/core.js.map +1 -1
- package/lib/hooks/authenticate.d.ts +2 -2
- package/lib/hooks/authenticate.js +11 -19
- package/lib/hooks/authenticate.js.map +1 -1
- package/lib/hooks/connection.js +4 -18
- package/lib/hooks/connection.js.map +1 -1
- package/lib/hooks/event.js +4 -13
- package/lib/hooks/event.js.map +1 -1
- package/lib/hooks/index.js.map +1 -1
- package/lib/index.d.ts +4 -5
- package/lib/index.js +11 -6
- package/lib/index.js.map +1 -1
- package/lib/jwt.d.ts +2 -2
- package/lib/jwt.js +98 -104
- package/lib/jwt.js.map +1 -1
- package/lib/options.d.ts +5 -3
- package/lib/options.js +4 -1
- package/lib/options.js.map +1 -1
- package/lib/service.d.ts +10 -8
- package/lib/service.js +82 -95
- package/lib/service.js.map +1 -1
- package/lib/strategy.d.ts +1 -1
- package/lib/strategy.js.map +1 -1
- package/package.json +25 -22
- package/src/core.ts +133 -83
- package/src/hooks/authenticate.ts +37 -33
- package/src/hooks/connection.ts +10 -10
- package/src/hooks/event.ts +9 -9
- package/src/hooks/index.ts +3 -3
- package/src/index.ts +8 -10
- package/src/jwt.ts +93 -82
- package/src/options.ts +9 -3
- package/src/service.ts +87 -71
- package/src/strategy.ts +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -3,573 +3,519 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [5.0.0
|
|
6
|
+
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
9
9
|
|
|
10
|
+
# [5.0.0-pre.38](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.37...v5.0.0-pre.38) (2023-02-17)
|
|
10
11
|
|
|
12
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
11
13
|
|
|
14
|
+
# [5.0.0-pre.37](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.36...v5.0.0-pre.37) (2023-02-09)
|
|
12
15
|
|
|
16
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
13
17
|
|
|
14
|
-
# [5.0.0-pre.
|
|
15
|
-
|
|
18
|
+
# [5.0.0-pre.36](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.35...v5.0.0-pre.36) (2023-01-29)
|
|
16
19
|
|
|
17
20
|
### Bug Fixes
|
|
18
21
|
|
|
19
|
-
|
|
20
|
-
* **koa:** Use extended query parser for compatibility ([#2397](https://github.com/feathersjs/feathers/issues/2397)) ([b2944ba](https://github.com/feathersjs/feathers/commit/b2944bac3ec6d5ecc80dc518cd4e58093692db74))
|
|
22
|
+
- Update all dependencies ([#3024](https://github.com/feathersjs/feathers/issues/3024)) ([283dc47](https://github.com/feathersjs/feathers/commit/283dc4798d85584bc031e6e54b83b4ea77d1edd0))
|
|
21
23
|
|
|
24
|
+
# [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
|
|
22
25
|
|
|
23
26
|
### Features
|
|
24
27
|
|
|
25
|
-
|
|
28
|
+
- **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
|
|
26
29
|
|
|
30
|
+
# [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
|
|
27
31
|
|
|
32
|
+
### Bug Fixes
|
|
28
33
|
|
|
34
|
+
- **authentication:** Fix order of connection and login event handling ([#2909](https://github.com/feathersjs/feathers/issues/2909)) ([801a503](https://github.com/feathersjs/feathers/commit/801a503425062e27f2a32b91493b6ffae3822626))
|
|
35
|
+
- **core:** `context.type` for around hooks ([#2890](https://github.com/feathersjs/feathers/issues/2890)) ([d606ac6](https://github.com/feathersjs/feathers/commit/d606ac660fd5335c95206784fea36530dd2e851a))
|
|
29
36
|
|
|
37
|
+
### Features
|
|
30
38
|
|
|
31
|
-
|
|
39
|
+
- **schema:** Virtual property resolvers ([#2900](https://github.com/feathersjs/feathers/issues/2900)) ([7d03b57](https://github.com/feathersjs/feathers/commit/7d03b57ae2f633bdd4a368e0d5955011fbd6c329))
|
|
40
|
+
|
|
41
|
+
# [5.0.0-pre.33](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.32...v5.0.0-pre.33) (2022-11-08)
|
|
32
42
|
|
|
33
43
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
34
44
|
|
|
45
|
+
# [5.0.0-pre.32](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.31...v5.0.0-pre.32) (2022-10-26)
|
|
35
46
|
|
|
47
|
+
### Bug Fixes
|
|
36
48
|
|
|
49
|
+
- **authentication:** Improve logout and disconnect connection handling ([#2813](https://github.com/feathersjs/feathers/issues/2813)) ([dd77379](https://github.com/feathersjs/feathers/commit/dd77379d8bdcd32d529bef912e672639e4899823))
|
|
37
50
|
|
|
51
|
+
# [5.0.0-pre.31](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.30...v5.0.0-pre.31) (2022-10-12)
|
|
38
52
|
|
|
39
|
-
|
|
53
|
+
### Features
|
|
40
54
|
|
|
55
|
+
- **cli:** Generate full client test suite and improve typed client ([#2788](https://github.com/feathersjs/feathers/issues/2788)) ([57119b6](https://github.com/feathersjs/feathers/commit/57119b6bb2797f7297cf054268a248c093ecd538))
|
|
41
56
|
|
|
42
|
-
|
|
57
|
+
# [5.0.0-pre.30](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.29...v5.0.0-pre.30) (2022-10-07)
|
|
43
58
|
|
|
44
|
-
|
|
59
|
+
### Features
|
|
45
60
|
|
|
61
|
+
- **core:** Allow to unregister services at runtime ([#2756](https://github.com/feathersjs/feathers/issues/2756)) ([d16601f](https://github.com/feathersjs/feathers/commit/d16601f2277dca5357866ffdefba2a611f6dc7fa))
|
|
62
|
+
- **schema:** Make schemas validation library independent and add TypeBox support ([#2772](https://github.com/feathersjs/feathers/issues/2772)) ([44172d9](https://github.com/feathersjs/feathers/commit/44172d99b566d11d9ceda04f1d0bf72b6d05ce76))
|
|
63
|
+
|
|
64
|
+
# [5.0.0-pre.29](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.28...v5.0.0-pre.29) (2022-09-16)
|
|
46
65
|
|
|
47
66
|
### Features
|
|
48
67
|
|
|
49
|
-
|
|
68
|
+
- **authentication-oauth:** Koa and transport independent oAuth authentication ([#2737](https://github.com/feathersjs/feathers/issues/2737)) ([9231525](https://github.com/feathersjs/feathers/commit/9231525a24bb790ba9c5d940f2867a9c727691c9))
|
|
69
|
+
|
|
70
|
+
# [5.0.0-pre.28](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.27...v5.0.0-pre.28) (2022-08-03)
|
|
50
71
|
|
|
72
|
+
### Bug Fixes
|
|
51
73
|
|
|
74
|
+
- **cli:** Improve generated application and client ([#2701](https://github.com/feathersjs/feathers/issues/2701)) ([bd55ffb](https://github.com/feathersjs/feathers/commit/bd55ffb812e89bf215f4515e7f137656ea888c3f))
|
|
52
75
|
|
|
76
|
+
# [5.0.0-pre.27](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.26...v5.0.0-pre.27) (2022-07-13)
|
|
53
77
|
|
|
78
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
54
79
|
|
|
55
|
-
# [5.0.0-pre.
|
|
80
|
+
# [5.0.0-pre.26](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.25...v5.0.0-pre.26) (2022-06-22)
|
|
56
81
|
|
|
57
82
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
58
83
|
|
|
84
|
+
# [5.0.0-pre.25](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.24...v5.0.0-pre.25) (2022-06-22)
|
|
59
85
|
|
|
86
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
60
87
|
|
|
88
|
+
# [5.0.0-pre.24](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.23...v5.0.0-pre.24) (2022-06-21)
|
|
61
89
|
|
|
90
|
+
### Bug Fixes
|
|
62
91
|
|
|
63
|
-
|
|
92
|
+
- **authentication:** Add safe dispatch data for authentication requests ([#2662](https://github.com/feathersjs/feathers/issues/2662)) ([d8104a1](https://github.com/feathersjs/feathers/commit/d8104a19ee9181e6a5ea81014af29ff9a3c28a8a))
|
|
64
93
|
|
|
65
|
-
|
|
94
|
+
# [5.0.0-pre.23](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.22...v5.0.0-pre.23) (2022-06-06)
|
|
66
95
|
|
|
96
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
67
97
|
|
|
98
|
+
# [5.0.0-pre.22](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.21...v5.0.0-pre.22) (2022-05-24)
|
|
68
99
|
|
|
100
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
69
101
|
|
|
102
|
+
# [5.0.0-pre.21](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.20...v5.0.0-pre.21) (2022-05-23)
|
|
70
103
|
|
|
71
|
-
|
|
104
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
72
105
|
|
|
106
|
+
# [5.0.0-pre.20](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.19...v5.0.0-pre.20) (2022-05-04)
|
|
73
107
|
|
|
74
108
|
### Bug Fixes
|
|
75
109
|
|
|
76
|
-
|
|
110
|
+
- **dependencies:** Lock monorepo package version numbers ([#2623](https://github.com/feathersjs/feathers/issues/2623)) ([5640c10](https://github.com/feathersjs/feathers/commit/5640c1020cc139994e695d658c08bad3494db507))
|
|
77
111
|
|
|
112
|
+
# [5.0.0-pre.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)
|
|
78
113
|
|
|
79
114
|
### Features
|
|
80
115
|
|
|
81
|
-
|
|
82
|
-
|
|
116
|
+
- **typescript:** Improve adapter typings ([#2605](https://github.com/feathersjs/feathers/issues/2605)) ([3b2ca0a](https://github.com/feathersjs/feathers/commit/3b2ca0a6a8e03e8390272c4d7e930b4bffdaacf5))
|
|
117
|
+
- **typescript:** Improve params and query typeability ([#2600](https://github.com/feathersjs/feathers/issues/2600)) ([df28b76](https://github.com/feathersjs/feathers/commit/df28b7619161f1df5e700326f52cca1a92dc5d28))
|
|
83
118
|
|
|
119
|
+
# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)
|
|
84
120
|
|
|
121
|
+
### Features
|
|
85
122
|
|
|
123
|
+
- **authentication:** Add setup method for auth strategies ([#1611](https://github.com/feathersjs/feathers/issues/1611)) ([a3c3581](https://github.com/feathersjs/feathers/commit/a3c35814dccdbbf6de96f04f60b226ce206c6dbe))
|
|
124
|
+
- **configuration:** Allow app configuration to be validated against a schema ([#2590](https://github.com/feathersjs/feathers/issues/2590)) ([a268f86](https://github.com/feathersjs/feathers/commit/a268f86da92a8ada14ed11ab456aac0a4bba5bb0))
|
|
86
125
|
|
|
126
|
+
# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
|
|
87
127
|
|
|
88
|
-
|
|
89
|
-
|
|
128
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
90
129
|
|
|
130
|
+
# [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
|
|
91
131
|
|
|
92
|
-
|
|
132
|
+
### Features
|
|
93
133
|
|
|
94
|
-
**
|
|
134
|
+
- **express, koa:** make transports similar ([#2486](https://github.com/feathersjs/feathers/issues/2486)) ([26aa937](https://github.com/feathersjs/feathers/commit/26aa937c114fb8596dfefc599b1f53cead69c159))
|
|
95
135
|
|
|
136
|
+
# [5.0.0-pre.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
|
|
96
137
|
|
|
138
|
+
### Bug Fixes
|
|
97
139
|
|
|
140
|
+
- **typescript:** Overall typing improvements ([#2478](https://github.com/feathersjs/feathers/issues/2478)) ([b8eb804](https://github.com/feathersjs/feathers/commit/b8eb804158556d9651a8607e3c3fda15e0bfd110))
|
|
98
141
|
|
|
142
|
+
### Features
|
|
99
143
|
|
|
100
|
-
|
|
144
|
+
- **authentication-oauth:** Allow dynamic oAuth redirect ([#2469](https://github.com/feathersjs/feathers/issues/2469)) ([b7143d4](https://github.com/feathersjs/feathers/commit/b7143d4c0fbe961e714f79512be04449b9bbd7d9))
|
|
101
145
|
|
|
146
|
+
# [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13)
|
|
102
147
|
|
|
148
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
103
149
|
|
|
104
|
-
|
|
150
|
+
# [5.0.0-pre.13](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.12...v5.0.0-pre.13) (2021-10-13)
|
|
105
151
|
|
|
106
152
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
107
153
|
|
|
154
|
+
# [5.0.0-pre.12](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.11...v5.0.0-pre.12) (2021-10-12)
|
|
108
155
|
|
|
156
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
109
157
|
|
|
158
|
+
# [5.0.0-pre.11](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.10...v5.0.0-pre.11) (2021-10-06)
|
|
110
159
|
|
|
160
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
111
161
|
|
|
112
|
-
|
|
162
|
+
# [5.0.0-pre.10](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.9...v5.0.0-pre.10) (2021-09-19)
|
|
113
163
|
|
|
164
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
114
165
|
|
|
115
|
-
|
|
166
|
+
# [5.0.0-pre.9](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.8...v5.0.0-pre.9) (2021-08-09)
|
|
116
167
|
|
|
117
|
-
|
|
168
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
118
169
|
|
|
170
|
+
# [5.0.0-pre.8](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.7...v5.0.0-pre.8) (2021-08-09)
|
|
119
171
|
|
|
172
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
120
173
|
|
|
174
|
+
# [5.0.0-pre.7](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.6...v5.0.0-pre.7) (2021-08-09)
|
|
121
175
|
|
|
176
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
122
177
|
|
|
123
|
-
|
|
178
|
+
# [5.0.0-pre.6](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.5...v5.0.0-pre.6) (2021-08-08)
|
|
124
179
|
|
|
125
180
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
126
181
|
|
|
182
|
+
# [5.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.4...v5.0.0-pre.5) (2021-06-23)
|
|
183
|
+
|
|
184
|
+
### Bug Fixes
|
|
127
185
|
|
|
186
|
+
- **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))
|
|
187
|
+
- **koa:** Use extended query parser for compatibility ([#2397](https://github.com/feathersjs/feathers/issues/2397)) ([b2944ba](https://github.com/feathersjs/feathers/commit/b2944bac3ec6d5ecc80dc518cd4e58093692db74))
|
|
128
188
|
|
|
189
|
+
### Features
|
|
129
190
|
|
|
191
|
+
- **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))
|
|
130
192
|
|
|
131
|
-
|
|
193
|
+
# [5.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.3...v5.0.0-pre.4) (2021-05-13)
|
|
132
194
|
|
|
133
195
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
134
196
|
|
|
197
|
+
# [5.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.2...v5.0.0-pre.3) (2021-04-21)
|
|
135
198
|
|
|
199
|
+
### Bug Fixes
|
|
136
200
|
|
|
201
|
+
- **typescript:** Improve TypeScript backwards compatibility ([#2310](https://github.com/feathersjs/feathers/issues/2310)) ([f33be73](https://github.com/feathersjs/feathers/commit/f33be73fc46a533efb15df9aab0658e3240d3897))
|
|
137
202
|
|
|
203
|
+
### Features
|
|
138
204
|
|
|
139
|
-
|
|
140
|
-
|
|
205
|
+
- **dependencies:** Remove direct debug dependency ([#2296](https://github.com/feathersjs/feathers/issues/2296)) ([501d416](https://github.com/feathersjs/feathers/commit/501d4164d30c6a126906dc640cdfdc82207ba34a))
|
|
141
206
|
|
|
142
|
-
|
|
207
|
+
# [5.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.1...v5.0.0-pre.2) (2021-04-06)
|
|
143
208
|
|
|
144
|
-
|
|
209
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
145
210
|
|
|
211
|
+
# [5.0.0-beta.1](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-04-03)
|
|
146
212
|
|
|
213
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
147
214
|
|
|
215
|
+
# [5.0.0-beta.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.1...v5.0.0-beta.0) (2021-03-28)
|
|
148
216
|
|
|
217
|
+
### Bug Fixes
|
|
149
218
|
|
|
150
|
-
|
|
219
|
+
- Update Grant usage and other dependencies ([#2264](https://github.com/feathersjs/feathers/issues/2264)) ([7b0f8fa](https://github.com/feathersjs/feathers/commit/7b0f8fad252419ed0ad0bf259cdf3104d322ab60))
|
|
151
220
|
|
|
221
|
+
### Features
|
|
152
222
|
|
|
153
|
-
|
|
223
|
+
- Application service types default to any ([#1566](https://github.com/feathersjs/feathers/issues/1566)) ([d93ba9a](https://github.com/feathersjs/feathers/commit/d93ba9a17edd20d3397bb00f4f6e82e804e42ed6))
|
|
224
|
+
- Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
|
|
154
225
|
|
|
155
|
-
|
|
226
|
+
# [5.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.5.11...v5.0.0-pre.1) (2020-12-17)
|
|
156
227
|
|
|
228
|
+
# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
|
|
157
229
|
|
|
230
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
158
231
|
|
|
232
|
+
# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
|
|
159
233
|
|
|
234
|
+
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
|
|
160
235
|
|
|
161
|
-
|
|
236
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
162
237
|
|
|
238
|
+
## [4.5.10](https://github.com/feathersjs/feathers/compare/v4.5.9...v4.5.10) (2020-11-08)
|
|
163
239
|
|
|
164
240
|
### Bug Fixes
|
|
165
241
|
|
|
166
|
-
|
|
167
|
-
|
|
242
|
+
- **authentication:** consistent response return between local and jwt strategy ([#2042](https://github.com/feathersjs/feathers/issues/2042)) ([8d25be1](https://github.com/feathersjs/feathers/commit/8d25be101a2593a9e789375c928a07780b9e28cf))
|
|
168
243
|
|
|
244
|
+
## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09)
|
|
169
245
|
|
|
246
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
170
247
|
|
|
248
|
+
## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12)
|
|
171
249
|
|
|
172
|
-
|
|
250
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
173
251
|
|
|
252
|
+
## [4.5.7](https://github.com/feathersjs/feathers/compare/v4.5.6...v4.5.7) (2020-07-24)
|
|
174
253
|
|
|
175
254
|
### Bug Fixes
|
|
176
255
|
|
|
177
|
-
|
|
256
|
+
- **authentication:** Add JWT getEntityQuery ([#2013](https://github.com/feathersjs/feathers/issues/2013)) ([e0e7fb5](https://github.com/feathersjs/feathers/commit/e0e7fb5162940fe776731283b40026c61d9c8a33))
|
|
178
257
|
|
|
258
|
+
## [4.5.6](https://github.com/feathersjs/feathers/compare/v4.5.5...v4.5.6) (2020-07-12)
|
|
179
259
|
|
|
260
|
+
### Bug Fixes
|
|
180
261
|
|
|
262
|
+
- **authentication:** Omit query in JWT strategy ([#2011](https://github.com/feathersjs/feathers/issues/2011)) ([04ce7e9](https://github.com/feathersjs/feathers/commit/04ce7e98515fe9d495cd0e83e0da097e9bcd7382))
|
|
181
263
|
|
|
264
|
+
## [4.5.5](https://github.com/feathersjs/feathers/compare/v4.5.4...v4.5.5) (2020-07-11)
|
|
182
265
|
|
|
183
|
-
|
|
266
|
+
### Bug Fixes
|
|
184
267
|
|
|
268
|
+
- **authentication:** Include query params when authenticating via authenticate hook [#2009](https://github.com/feathersjs/feathers/issues/2009) ([4cdb7bf](https://github.com/feathersjs/feathers/commit/4cdb7bf2898385ddac7a1692bc9ac2f6cf5ad446))
|
|
185
269
|
|
|
186
|
-
|
|
270
|
+
## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)
|
|
187
271
|
|
|
188
|
-
|
|
272
|
+
### Bug Fixes
|
|
189
273
|
|
|
274
|
+
- **authentication:** Remove entity from connection information on logout ([#1889](https://github.com/feathersjs/feathers/issues/1889)) ([b062753](https://github.com/feathersjs/feathers/commit/b0627530d61babe15dd84369d3093ccae4b780ca))
|
|
190
275
|
|
|
276
|
+
## [4.5.2](https://github.com/feathersjs/feathers/compare/v4.5.1...v4.5.2) (2020-03-04)
|
|
191
277
|
|
|
278
|
+
### Bug Fixes
|
|
192
279
|
|
|
280
|
+
- **authentication:** Improve JWT strategy configuration error message ([#1844](https://github.com/feathersjs/feathers/issues/1844)) ([2c771db](https://github.com/feathersjs/feathers/commit/2c771dbb22d53d4f7de3c3f514e57afa1a186322))
|
|
193
281
|
|
|
194
282
|
## [4.5.1](https://github.com/feathersjs/feathers/compare/v4.5.0...v4.5.1) (2020-01-24)
|
|
195
283
|
|
|
196
284
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
197
285
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
286
|
# [4.5.0](https://github.com/feathersjs/feathers/compare/v4.4.3...v4.5.0) (2020-01-18)
|
|
203
287
|
|
|
204
|
-
|
|
205
288
|
### Bug Fixes
|
|
206
289
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
290
|
+
- Add `params.authentication` type, remove `hook.connection` type ([#1732](https://github.com/feathersjs/feathers/issues/1732)) ([d46b7b2](https://github.com/feathersjs/feathers/commit/d46b7b2abac8862c0e4dbfce20d71b8b8a96692f))
|
|
212
291
|
|
|
213
292
|
## [4.4.3](https://github.com/feathersjs/feathers/compare/v4.4.1...v4.4.3) (2019-12-06)
|
|
214
293
|
|
|
215
294
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
216
295
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
296
|
## [4.4.1](https://github.com/feathersjs/feathers/compare/v4.4.0...v4.4.1) (2019-11-27)
|
|
222
297
|
|
|
223
298
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
224
299
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
300
|
# [4.4.0](https://github.com/feathersjs/feathers/compare/v4.3.11...v4.4.0) (2019-11-27)
|
|
230
301
|
|
|
231
302
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
232
303
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
304
|
## [4.3.11](https://github.com/feathersjs/feathers/compare/v4.3.10...v4.3.11) (2019-11-11)
|
|
238
305
|
|
|
239
|
-
|
|
240
306
|
### Bug Fixes
|
|
241
307
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
308
|
+
- **authentication:** Retain object references in authenticate hook ([#1675](https://github.com/feathersjs/feathers/issues/1675)) ([e1939be](https://github.com/feathersjs/feathers/commit/e1939be19d4e79d3f5e2fe69ba894a11c627ae99))
|
|
247
309
|
|
|
248
310
|
## [4.3.10](https://github.com/feathersjs/feathers/compare/v4.3.9...v4.3.10) (2019-10-26)
|
|
249
311
|
|
|
250
312
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
251
313
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
314
|
## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26)
|
|
257
315
|
|
|
258
|
-
|
|
259
316
|
### Bug Fixes
|
|
260
317
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
318
|
+
- Add jsonwebtoken TypeScript type dependency ([317c80a](https://github.com/feathersjs/feathers/commit/317c80a9205e8853bb830a12c3aa1a19e95f9abc))
|
|
319
|
+
- Small type improvements ([#1624](https://github.com/feathersjs/feathers/issues/1624)) ([50162c6](https://github.com/feathersjs/feathers/commit/50162c6e562f0a47c6a280c4f01fff7c3afee293))
|
|
267
320
|
|
|
268
321
|
## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14)
|
|
269
322
|
|
|
270
323
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
271
324
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
325
|
## [4.3.5](https://github.com/feathersjs/feathers/compare/v4.3.4...v4.3.5) (2019-10-07)
|
|
277
326
|
|
|
278
|
-
|
|
279
327
|
### Bug Fixes
|
|
280
328
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
329
|
+
- Authentication type improvements and timeout fix ([#1605](https://github.com/feathersjs/feathers/issues/1605)) ([19854d3](https://github.com/feathersjs/feathers/commit/19854d3))
|
|
330
|
+
- Improve error message when authentication strategy is not allowed ([#1600](https://github.com/feathersjs/feathers/issues/1600)) ([317a312](https://github.com/feathersjs/feathers/commit/317a312))
|
|
287
331
|
|
|
288
332
|
## [4.3.4](https://github.com/feathersjs/feathers/compare/v4.3.3...v4.3.4) (2019-10-03)
|
|
289
333
|
|
|
290
334
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
291
335
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
336
|
## [4.3.3](https://github.com/feathersjs/feathers/compare/v4.3.2...v4.3.3) (2019-09-21)
|
|
297
337
|
|
|
298
|
-
|
|
299
338
|
### Bug Fixes
|
|
300
339
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
340
|
+
- check for undefined access token ([#1571](https://github.com/feathersjs/feathers/issues/1571)) ([976369d](https://github.com/feathersjs/feathers/commit/976369d))
|
|
341
|
+
- Small improvements in dependencies and code sturcture ([#1562](https://github.com/feathersjs/feathers/issues/1562)) ([42c13e2](https://github.com/feathersjs/feathers/commit/42c13e2))
|
|
307
342
|
|
|
308
343
|
## [4.3.2](https://github.com/feathersjs/feathers/compare/v4.3.1...v4.3.2) (2019-09-16)
|
|
309
344
|
|
|
310
345
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
311
346
|
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
347
|
## [4.3.1](https://github.com/feathersjs/feathers/compare/v4.3.0...v4.3.1) (2019-09-09)
|
|
317
348
|
|
|
318
|
-
|
|
319
349
|
### Bug Fixes
|
|
320
350
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
351
|
+
- Use long-timeout for JWT expiration timers ([#1552](https://github.com/feathersjs/feathers/issues/1552)) ([65637ec](https://github.com/feathersjs/feathers/commit/65637ec))
|
|
326
352
|
|
|
327
353
|
# [4.3.0](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.4...v4.3.0) (2019-08-27)
|
|
328
354
|
|
|
329
355
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
330
356
|
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
357
|
# [4.3.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.3...v4.3.0-pre.4) (2019-08-22)
|
|
336
358
|
|
|
337
|
-
|
|
338
359
|
### Bug Fixes
|
|
339
360
|
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
361
|
+
- Fix auth publisher mistake ([08bad61](https://github.com/feathersjs/feathers/commit/08bad61))
|
|
345
362
|
|
|
346
363
|
# [4.3.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.2...v4.3.0-pre.3) (2019-08-19)
|
|
347
364
|
|
|
348
|
-
|
|
349
365
|
### Bug Fixes
|
|
350
366
|
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
367
|
+
- Expire and remove authenticated real-time connections ([#1512](https://github.com/feathersjs/feathers/issues/1512)) ([2707c33](https://github.com/feathersjs/feathers/commit/2707c33))
|
|
368
|
+
- Update all dependencies ([7d53a00](https://github.com/feathersjs/feathers/commit/7d53a00))
|
|
354
369
|
|
|
355
370
|
### Features
|
|
356
371
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
372
|
+
- Let strategies handle the connection ([#1510](https://github.com/feathersjs/feathers/issues/1510)) ([4329feb](https://github.com/feathersjs/feathers/commit/4329feb))
|
|
362
373
|
|
|
363
374
|
# [4.3.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.1...v4.3.0-pre.2) (2019-08-02)
|
|
364
375
|
|
|
365
|
-
|
|
366
376
|
### Bug Fixes
|
|
367
377
|
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
378
|
+
- Add getEntityId to JWT strategy and fix legacy Socket authentication ([#1488](https://github.com/feathersjs/feathers/issues/1488)) ([9a3b324](https://github.com/feathersjs/feathers/commit/9a3b324))
|
|
379
|
+
- Add method to reliably get default authentication service ([#1470](https://github.com/feathersjs/feathers/issues/1470)) ([e542cb3](https://github.com/feathersjs/feathers/commit/e542cb3))
|
|
374
380
|
|
|
375
381
|
# [4.3.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.5...v4.3.0-pre.1) (2019-07-11)
|
|
376
382
|
|
|
377
383
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
378
384
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
385
|
# [4.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.4...v4.0.0-pre.5) (2019-07-10)
|
|
384
386
|
|
|
385
387
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
386
388
|
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
389
|
# [4.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.3...v4.0.0-pre.4) (2019-07-05)
|
|
392
390
|
|
|
393
|
-
|
|
394
391
|
### Bug Fixes
|
|
395
392
|
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
393
|
+
- Updated typings for ServiceMethods ([#1409](https://github.com/feathersjs/feathers/issues/1409)) ([b5ee7e2](https://github.com/feathersjs/feathers/commit/b5ee7e2))
|
|
401
394
|
|
|
402
395
|
# [4.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.2...v4.0.0-pre.3) (2019-06-01)
|
|
403
396
|
|
|
404
|
-
|
|
405
397
|
### Bug Fixes
|
|
406
398
|
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
399
|
+
- 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))
|
|
400
|
+
- Set authenticated: true after successful authentication ([#1367](https://github.com/feathersjs/feathers/issues/1367)) ([9918cff](https://github.com/feathersjs/feathers/commit/9918cff))
|
|
401
|
+
- Typings fix and improvements. ([#1364](https://github.com/feathersjs/feathers/issues/1364)) ([515b916](https://github.com/feathersjs/feathers/commit/515b916))
|
|
402
|
+
- Update dependencies and fix tests ([#1373](https://github.com/feathersjs/feathers/issues/1373)) ([d743a7f](https://github.com/feathersjs/feathers/commit/d743a7f))
|
|
415
403
|
|
|
416
404
|
# [4.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.1...v4.0.0-pre.2) (2019-05-15)
|
|
417
405
|
|
|
418
|
-
|
|
419
406
|
### Bug Fixes
|
|
420
407
|
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
408
|
+
- Throw NotAuthenticated on token verification errors ([#1357](https://github.com/feathersjs/feathers/issues/1357)) ([e0120df](https://github.com/feathersjs/feathers/commit/e0120df))
|
|
426
409
|
|
|
427
410
|
# [4.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.0...v4.0.0-pre.1) (2019-05-08)
|
|
428
411
|
|
|
429
|
-
|
|
430
412
|
### Bug Fixes
|
|
431
413
|
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
414
|
+
- Always require strategy parameter in authentication ([#1327](https://github.com/feathersjs/feathers/issues/1327)) ([d4a8021](https://github.com/feathersjs/feathers/commit/d4a8021))
|
|
415
|
+
- Bring back params.authenticated ([#1317](https://github.com/feathersjs/feathers/issues/1317)) ([a0ffd5e](https://github.com/feathersjs/feathers/commit/a0ffd5e))
|
|
416
|
+
- Improve authentication parameter handling ([#1333](https://github.com/feathersjs/feathers/issues/1333)) ([6e77204](https://github.com/feathersjs/feathers/commit/6e77204))
|
|
417
|
+
- Merge httpStrategies and authStrategies option ([#1308](https://github.com/feathersjs/feathers/issues/1308)) ([afa4d55](https://github.com/feathersjs/feathers/commit/afa4d55))
|
|
418
|
+
- Rename jwtStrategies option to authStrategies ([#1305](https://github.com/feathersjs/feathers/issues/1305)) ([4aee151](https://github.com/feathersjs/feathers/commit/4aee151))
|
|
438
419
|
|
|
439
420
|
### Features
|
|
440
421
|
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
422
|
+
- Change and *JWT methods to *accessToken ([#1304](https://github.com/feathersjs/feathers/issues/1304)) ([5ac826b](https://github.com/feathersjs/feathers/commit/5ac826b))
|
|
446
423
|
|
|
447
424
|
# [4.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v3.2.0-pre.1...v4.0.0-pre.0) (2019-04-21)
|
|
448
425
|
|
|
449
|
-
|
|
450
426
|
### Bug Fixes
|
|
451
427
|
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
428
|
+
- Added path and method in to express request for passport ([#1112](https://github.com/feathersjs/feathers/issues/1112)) ([afa1cb4](https://github.com/feathersjs/feathers/commit/afa1cb4))
|
|
429
|
+
- Authentication core improvements ([#1260](https://github.com/feathersjs/feathers/issues/1260)) ([c5dc7a2](https://github.com/feathersjs/feathers/commit/c5dc7a2))
|
|
430
|
+
- Improve JWT authentication option handling ([#1261](https://github.com/feathersjs/feathers/issues/1261)) ([31b956b](https://github.com/feathersjs/feathers/commit/31b956b))
|
|
431
|
+
- Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
|
|
432
|
+
- Only merge authenticated property on update ([8a564f7](https://github.com/feathersjs/feathers/commit/8a564f7))
|
|
433
|
+
- reduce authentication connection hook complexity and remove unnecessary checks ([fa94b2f](https://github.com/feathersjs/feathers/commit/fa94b2f))
|
|
434
|
+
- Update all dependencies to latest ([#1206](https://github.com/feathersjs/feathers/issues/1206)) ([e51e0f6](https://github.com/feathersjs/feathers/commit/e51e0f6))
|
|
435
|
+
- **authentication:** Fall back when req.app is not the application when emitting events ([#1185](https://github.com/feathersjs/feathers/issues/1185)) ([6a534f0](https://github.com/feathersjs/feathers/commit/6a534f0))
|
|
436
|
+
- Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
|
|
437
|
+
- **docs/new-features:** syntax highlighting ([#347](https://github.com/feathersjs/feathers/issues/347)) ([4ab7c95](https://github.com/feathersjs/feathers/commit/4ab7c95))
|
|
438
|
+
- **package:** update @feathersjs/commons to version 2.0.0 ([#692](https://github.com/feathersjs/feathers/issues/692)) ([ca665ab](https://github.com/feathersjs/feathers/commit/ca665ab))
|
|
439
|
+
- **package:** update debug to version 3.0.0 ([#555](https://github.com/feathersjs/feathers/issues/555)) ([f788804](https://github.com/feathersjs/feathers/commit/f788804))
|
|
440
|
+
- **package:** update jsonwebtoken to version 8.0.0 ([#567](https://github.com/feathersjs/feathers/issues/567)) ([6811626](https://github.com/feathersjs/feathers/commit/6811626))
|
|
441
|
+
- **package:** update ms to version 2.0.0 ([#509](https://github.com/feathersjs/feathers/issues/509)) ([7e4b0b6](https://github.com/feathersjs/feathers/commit/7e4b0b6))
|
|
442
|
+
- **package:** update passport to version 0.4.0 ([#558](https://github.com/feathersjs/feathers/issues/558)) ([dcb14a5](https://github.com/feathersjs/feathers/commit/dcb14a5))
|
|
468
443
|
|
|
469
444
|
### Features
|
|
470
445
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
446
|
+
- @feathersjs/authentication-oauth ([#1299](https://github.com/feathersjs/feathers/issues/1299)) ([656bae7](https://github.com/feathersjs/feathers/commit/656bae7))
|
|
447
|
+
- 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))
|
|
448
|
+
- Add TypeScript definitions ([#1275](https://github.com/feathersjs/feathers/issues/1275)) ([9dd6713](https://github.com/feathersjs/feathers/commit/9dd6713))
|
|
449
|
+
- Authentication v3 core server implementation ([#1205](https://github.com/feathersjs/feathers/issues/1205)) ([1bd7591](https://github.com/feathersjs/feathers/commit/1bd7591))
|
|
450
|
+
- Authentication v3 local authentication ([#1211](https://github.com/feathersjs/feathers/issues/1211)) ([0fa5f7c](https://github.com/feathersjs/feathers/commit/0fa5f7c))
|
|
451
|
+
- Remove (hook, next) signature and SKIP support ([#1269](https://github.com/feathersjs/feathers/issues/1269)) ([211c0f8](https://github.com/feathersjs/feathers/commit/211c0f8))
|
|
452
|
+
- Support params symbol to skip authenticate hook ([#1296](https://github.com/feathersjs/feathers/issues/1296)) ([d16cf4d](https://github.com/feathersjs/feathers/commit/d16cf4d))
|
|
479
453
|
|
|
480
454
|
### BREAKING CHANGES
|
|
481
455
|
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
456
|
+
- Update authentication strategies for @feathersjs/authentication v3
|
|
487
457
|
|
|
488
458
|
## [2.1.16](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.15...@feathersjs/authentication@2.1.16) (2019-01-26)
|
|
489
459
|
|
|
490
|
-
|
|
491
460
|
### Bug Fixes
|
|
492
461
|
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
462
|
+
- **authentication:** Fall back when req.app is not the application when emitting events ([#1185](https://github.com/feathersjs/feathers/issues/1185)) ([6a534f0](https://github.com/feathersjs/feathers/commit/6a534f0))
|
|
498
463
|
|
|
499
464
|
## [2.1.15](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.14...@feathersjs/authentication@2.1.15) (2019-01-02)
|
|
500
465
|
|
|
501
|
-
|
|
502
466
|
### Bug Fixes
|
|
503
467
|
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
468
|
+
- Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
|
|
509
469
|
|
|
510
470
|
<a name="2.1.14"></a>
|
|
511
|
-
## [2.1.14](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.13...@feathersjs/authentication@2.1.14) (2018-12-16)
|
|
512
471
|
|
|
472
|
+
## [2.1.14](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.13...@feathersjs/authentication@2.1.14) (2018-12-16)
|
|
513
473
|
|
|
514
474
|
### Bug Fixes
|
|
515
475
|
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
476
|
+
- Added path and method in to express request for passport ([#1112](https://github.com/feathersjs/feathers/issues/1112)) ([afa1cb4](https://github.com/feathersjs/feathers/commit/afa1cb4))
|
|
521
477
|
|
|
522
478
|
<a name="2.1.13"></a>
|
|
479
|
+
|
|
523
480
|
## [2.1.13](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.12...@feathersjs/authentication@2.1.13) (2018-10-26)
|
|
524
481
|
|
|
525
482
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
526
483
|
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
484
|
<a name="2.1.12"></a>
|
|
532
|
-
## [2.1.12](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.11...@feathersjs/authentication@2.1.12) (2018-10-25)
|
|
533
485
|
|
|
486
|
+
## [2.1.12](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.11...@feathersjs/authentication@2.1.12) (2018-10-25)
|
|
534
487
|
|
|
535
488
|
### Bug Fixes
|
|
536
489
|
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
490
|
+
- Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
|
|
491
|
+
- Only merge authenticated property on update ([8a564f7](https://github.com/feathersjs/feathers/commit/8a564f7))
|
|
543
492
|
|
|
544
493
|
<a name="2.1.11"></a>
|
|
494
|
+
|
|
545
495
|
## [2.1.11](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.10...@feathersjs/authentication@2.1.11) (2018-09-21)
|
|
546
496
|
|
|
547
497
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
548
498
|
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
499
|
<a name="2.1.10"></a>
|
|
500
|
+
|
|
554
501
|
## [2.1.10](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.9...@feathersjs/authentication@2.1.10) (2018-09-17)
|
|
555
502
|
|
|
556
503
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
557
504
|
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
505
|
<a name="2.1.9"></a>
|
|
506
|
+
|
|
563
507
|
## [2.1.9](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.8...@feathersjs/authentication@2.1.9) (2018-09-02)
|
|
564
508
|
|
|
565
509
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
566
510
|
|
|
567
511
|
<a name="2.1.8"></a>
|
|
512
|
+
|
|
568
513
|
## 2.1.8
|
|
569
514
|
|
|
570
515
|
- Migrate to Monorepo ([feathers#462](https://github.com/feathersjs/feathers/issues/462))
|
|
571
516
|
|
|
572
517
|
## [v2.1.7](https://github.com/feathersjs/authentication/tree/v2.1.7) (2018-06-29)
|
|
518
|
+
|
|
573
519
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.6...v2.1.7)
|
|
574
520
|
|
|
575
521
|
**Fixed bugs:**
|
|
@@ -591,6 +537,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
591
537
|
- Update sinon to the latest version 🚀 [\#681](https://github.com/feathersjs/authentication/pull/681) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
592
538
|
|
|
593
539
|
## [v2.1.6](https://github.com/feathersjs/authentication/tree/v2.1.6) (2018-06-01)
|
|
540
|
+
|
|
594
541
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.5...v2.1.6)
|
|
595
542
|
|
|
596
543
|
**Closed issues:**
|
|
@@ -612,6 +559,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
612
559
|
- add option to allowUnauthenticated [\#599](https://github.com/feathersjs/authentication/pull/599) ([MichaelErmer](https://github.com/MichaelErmer))
|
|
613
560
|
|
|
614
561
|
## [v2.1.5](https://github.com/feathersjs/authentication/tree/v2.1.5) (2018-04-16)
|
|
562
|
+
|
|
615
563
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.4...v2.1.5)
|
|
616
564
|
|
|
617
565
|
**Closed issues:**
|
|
@@ -624,6 +572,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
624
572
|
- Remove payload and user entity on logout. [\#665](https://github.com/feathersjs/authentication/pull/665) ([bertho-zero](https://github.com/bertho-zero))
|
|
625
573
|
|
|
626
574
|
## [v2.1.4](https://github.com/feathersjs/authentication/tree/v2.1.4) (2018-04-12)
|
|
575
|
+
|
|
627
576
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.3...v2.1.4)
|
|
628
577
|
|
|
629
578
|
**Closed issues:**
|
|
@@ -640,6 +589,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
640
589
|
- Update sinon to the latest version 🚀 [\#656](https://github.com/feathersjs/authentication/pull/656) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
641
590
|
|
|
642
591
|
## [v2.1.3](https://github.com/feathersjs/authentication/tree/v2.1.3) (2018-03-16)
|
|
592
|
+
|
|
643
593
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.2...v2.1.3)
|
|
644
594
|
|
|
645
595
|
**Closed issues:**
|
|
@@ -659,6 +609,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
659
609
|
- Update sinon-chai to the latest version 🚀 [\#644](https://github.com/feathersjs/authentication/pull/644) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
660
610
|
|
|
661
611
|
## [v2.1.2](https://github.com/feathersjs/authentication/tree/v2.1.2) (2018-02-14)
|
|
612
|
+
|
|
662
613
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.1...v2.1.2)
|
|
663
614
|
|
|
664
615
|
**Fixed bugs:**
|
|
@@ -675,7 +626,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
675
626
|
- cookie reused from server in SSR app [\#619](https://github.com/feathersjs/authentication/issues/619)
|
|
676
627
|
- Express middleware not setCookie [\#617](https://github.com/feathersjs/authentication/issues/617)
|
|
677
628
|
- Server to Server Authentication Question [\#612](https://github.com/feathersjs/authentication/issues/612)
|
|
678
|
-
- No way to share token between socket-rest-express
|
|
629
|
+
- No way to share token between socket-rest-express [\#607](https://github.com/feathersjs/authentication/issues/607)
|
|
679
630
|
- 404 when accessing route using customer authentication [\#579](https://github.com/feathersjs/authentication/issues/579)
|
|
680
631
|
- \[question\] is it possible to protect by role a create method? [\#564](https://github.com/feathersjs/authentication/issues/564)
|
|
681
632
|
- Authentication with server-side rendering [\#560](https://github.com/feathersjs/authentication/issues/560)
|
|
@@ -692,6 +643,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
692
643
|
- Options merged [\#611](https://github.com/feathersjs/authentication/pull/611) ([Makingweb](https://github.com/Makingweb))
|
|
693
644
|
|
|
694
645
|
## [v2.1.1](https://github.com/feathersjs/authentication/tree/v2.1.1) (2018-01-03)
|
|
646
|
+
|
|
695
647
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.0...v2.1.1)
|
|
696
648
|
|
|
697
649
|
**Closed issues:**
|
|
@@ -707,6 +659,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
707
659
|
- Update mongodb to the latest version 🚀 [\#618](https://github.com/feathersjs/authentication/pull/618) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
708
660
|
|
|
709
661
|
## [v2.1.0](https://github.com/feathersjs/authentication/tree/v2.1.0) (2017-12-06)
|
|
662
|
+
|
|
710
663
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.0.1...v2.1.0)
|
|
711
664
|
|
|
712
665
|
**Closed issues:**
|
|
@@ -720,6 +673,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
720
673
|
- Update feathers-memory to the latest version 🚀 [\#613](https://github.com/feathersjs/authentication/pull/613) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
721
674
|
|
|
722
675
|
## [v2.0.1](https://github.com/feathersjs/authentication/tree/v2.0.1) (2017-11-16)
|
|
676
|
+
|
|
723
677
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.0.0...v2.0.1)
|
|
724
678
|
|
|
725
679
|
**Merged pull requests:**
|
|
@@ -727,6 +681,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
727
681
|
- Add default export for better ES module \(TypeScript\) compatibility [\#605](https://github.com/feathersjs/authentication/pull/605) ([daffl](https://github.com/daffl))
|
|
728
682
|
|
|
729
683
|
## [v2.0.0](https://github.com/feathersjs/authentication/tree/v2.0.0) (2017-11-09)
|
|
684
|
+
|
|
730
685
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.3.1...v2.0.0)
|
|
731
686
|
|
|
732
687
|
**Closed issues:**
|
|
@@ -739,6 +694,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
739
694
|
- Update nsp to the latest version 🚀 [\#603](https://github.com/feathersjs/authentication/pull/603) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
740
695
|
|
|
741
696
|
## [v1.3.1](https://github.com/feathersjs/authentication/tree/v1.3.1) (2017-11-03)
|
|
697
|
+
|
|
742
698
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.4.1...v1.3.1)
|
|
743
699
|
|
|
744
700
|
**Merged pull requests:**
|
|
@@ -746,6 +702,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
746
702
|
- Only set the JWT UUID if it is not already set [\#600](https://github.com/feathersjs/authentication/pull/600) ([daffl](https://github.com/daffl))
|
|
747
703
|
|
|
748
704
|
## [v1.4.1](https://github.com/feathersjs/authentication/tree/v1.4.1) (2017-11-01)
|
|
705
|
+
|
|
749
706
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.4.0...v1.4.1)
|
|
750
707
|
|
|
751
708
|
**Merged pull requests:**
|
|
@@ -755,6 +712,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
755
712
|
- Update Codeclimate coverage token [\#595](https://github.com/feathersjs/authentication/pull/595) ([daffl](https://github.com/daffl))
|
|
756
713
|
|
|
757
714
|
## [v1.4.0](https://github.com/feathersjs/authentication/tree/v1.4.0) (2017-10-25)
|
|
715
|
+
|
|
758
716
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.3.0...v1.4.0)
|
|
759
717
|
|
|
760
718
|
**Closed issues:**
|
|
@@ -769,6 +727,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
769
727
|
- Update to new plugin infrastructure [\#591](https://github.com/feathersjs/authentication/pull/591) ([daffl](https://github.com/daffl))
|
|
770
728
|
|
|
771
729
|
## [v1.3.0](https://github.com/feathersjs/authentication/tree/v1.3.0) (2017-10-24)
|
|
730
|
+
|
|
772
731
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.13...v1.3.0)
|
|
773
732
|
|
|
774
733
|
**Merged pull requests:**
|
|
@@ -776,12 +735,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
776
735
|
- updating the codeclimate setup [\#589](https://github.com/feathersjs/authentication/pull/589) ([ekryski](https://github.com/ekryski))
|
|
777
736
|
|
|
778
737
|
## [v0.7.13](https://github.com/feathersjs/authentication/tree/v0.7.13) (2017-10-23)
|
|
738
|
+
|
|
779
739
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.7...v0.7.13)
|
|
780
740
|
|
|
781
741
|
**Closed issues:**
|
|
782
742
|
|
|
783
743
|
- Error authenticating! Error: Token provided to verifyJWT is missing or not a string ? [\#584](https://github.com/feathersjs/authentication/issues/584)
|
|
784
|
-
- Visual Studio Code
|
|
744
|
+
- Visual Studio Code Debug no authentication [\#583](https://github.com/feathersjs/authentication/issues/583)
|
|
785
745
|
- \[Feature Request\] Cloud DB's [\#581](https://github.com/feathersjs/authentication/issues/581)
|
|
786
746
|
- Request doesn't contain any headers when user service requested [\#578](https://github.com/feathersjs/authentication/issues/578)
|
|
787
747
|
- No way to pass Options to auth.express.authenticate. Needed for Google API refreshToken [\#576](https://github.com/feathersjs/authentication/issues/576)
|
|
@@ -822,13 +782,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
822
782
|
- Refresh token must have a user ID [\#419](https://github.com/feathersjs/authentication/pull/419) ([francisco-sanchez-molina](https://github.com/francisco-sanchez-molina))
|
|
823
783
|
|
|
824
784
|
## [v1.2.7](https://github.com/feathersjs/authentication/tree/v1.2.7) (2017-07-11)
|
|
785
|
+
|
|
825
786
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.6...v1.2.7)
|
|
826
787
|
|
|
827
788
|
**Closed issues:**
|
|
828
789
|
|
|
829
790
|
- Connection without password [\#541](https://github.com/feathersjs/authentication/issues/541)
|
|
830
791
|
- email in lower case ? [\#538](https://github.com/feathersjs/authentication/issues/538)
|
|
831
|
-
- Im unable to ping feathers server from react native.
|
|
792
|
+
- Im unable to ping feathers server from react native. [\#537](https://github.com/feathersjs/authentication/issues/537)
|
|
832
793
|
- whats the official way to open cors in feather ? [\#536](https://github.com/feathersjs/authentication/issues/536)
|
|
833
794
|
- Error options.service does not exist after initial auth setup [\#535](https://github.com/feathersjs/authentication/issues/535)
|
|
834
795
|
- LogoutTimer not being cleared correctly [\#532](https://github.com/feathersjs/authentication/issues/532)
|
|
@@ -839,6 +800,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
839
800
|
- fixed meta undefined error [\#542](https://github.com/feathersjs/authentication/pull/542) ([markacola](https://github.com/markacola))
|
|
840
801
|
|
|
841
802
|
## [v1.2.6](https://github.com/feathersjs/authentication/tree/v1.2.6) (2017-06-22)
|
|
803
|
+
|
|
842
804
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.5...v1.2.6)
|
|
843
805
|
|
|
844
806
|
**Closed issues:**
|
|
@@ -851,6 +813,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
851
813
|
- Update feathers-authentication-local to the latest version 🚀 [\#533](https://github.com/feathersjs/authentication/pull/533) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
852
814
|
|
|
853
815
|
## [v1.2.5](https://github.com/feathersjs/authentication/tree/v1.2.5) (2017-06-21)
|
|
816
|
+
|
|
854
817
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.4...v1.2.5)
|
|
855
818
|
|
|
856
819
|
**Closed issues:**
|
|
@@ -864,6 +827,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
864
827
|
- fixes several issues with update-entity w/ test cases [\#531](https://github.com/feathersjs/authentication/pull/531) ([jerfowler](https://github.com/jerfowler))
|
|
865
828
|
|
|
866
829
|
## [v1.2.4](https://github.com/feathersjs/authentication/tree/v1.2.4) (2017-06-08)
|
|
830
|
+
|
|
867
831
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.3...v1.2.4)
|
|
868
832
|
|
|
869
833
|
**Fixed bugs:**
|
|
@@ -891,6 +855,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
891
855
|
- Fix default authentication config keys [\#506](https://github.com/feathersjs/authentication/pull/506) ([ekryski](https://github.com/ekryski))
|
|
892
856
|
|
|
893
857
|
## [v1.2.3](https://github.com/feathersjs/authentication/tree/v1.2.3) (2017-05-10)
|
|
858
|
+
|
|
894
859
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.2...v1.2.3)
|
|
895
860
|
|
|
896
861
|
**Closed issues:**
|
|
@@ -916,6 +881,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
916
881
|
- Update dependencies to enable Greenkeeper 🌴 [\#482](https://github.com/feathersjs/authentication/pull/482) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
917
882
|
|
|
918
883
|
## [v1.2.2](https://github.com/feathersjs/authentication/tree/v1.2.2) (2017-04-12)
|
|
884
|
+
|
|
919
885
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.1...v1.2.2)
|
|
920
886
|
|
|
921
887
|
**Fixed bugs:**
|
|
@@ -937,6 +903,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
937
903
|
- Resolves \#475 - Socket params are made available to authentication hooks [\#477](https://github.com/feathersjs/authentication/pull/477) ([thomas-p-wilson](https://github.com/thomas-p-wilson))
|
|
938
904
|
|
|
939
905
|
## [v1.2.1](https://github.com/feathersjs/authentication/tree/v1.2.1) (2017-04-07)
|
|
906
|
+
|
|
940
907
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.0...v1.2.1)
|
|
941
908
|
|
|
942
909
|
**Fixed bugs:**
|
|
@@ -960,6 +927,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
960
927
|
- Allow the cookie to be set if action is not `remove` [\#474](https://github.com/feathersjs/authentication/pull/474) ([marshallswain](https://github.com/marshallswain))
|
|
961
928
|
|
|
962
929
|
## [v1.2.0](https://github.com/feathersjs/authentication/tree/v1.2.0) (2017-03-23)
|
|
930
|
+
|
|
963
931
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.1.1...v1.2.0)
|
|
964
932
|
|
|
965
933
|
**Fixed bugs:**
|
|
@@ -972,7 +940,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
972
940
|
|
|
973
941
|
- Token creation has side effect [\#454](https://github.com/feathersjs/authentication/issues/454)
|
|
974
942
|
- Question: When is userId set? [\#453](https://github.com/feathersjs/authentication/issues/453)
|
|
975
|
-
- How to authenticate SPA? More precisely how does the redirect works?
|
|
943
|
+
- How to authenticate SPA? More precisely how does the redirect works? [\#451](https://github.com/feathersjs/authentication/issues/451)
|
|
976
944
|
- POST to auth/facebook for FacebookTokenStrategy 404? [\#447](https://github.com/feathersjs/authentication/issues/447)
|
|
977
945
|
- feathers-authentication 1.1.1 `No auth token` [\#445](https://github.com/feathersjs/authentication/issues/445)
|
|
978
946
|
- Another readme incorrect and maybe docs to [\#441](https://github.com/feathersjs/authentication/issues/441)
|
|
@@ -995,6 +963,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
995
963
|
- Add support for Bearer scheme in remove method [\#403](https://github.com/feathersjs/authentication/pull/403) ([boybundit](https://github.com/boybundit))
|
|
996
964
|
|
|
997
965
|
## [v1.1.1](https://github.com/feathersjs/authentication/tree/v1.1.1) (2017-03-02)
|
|
966
|
+
|
|
998
967
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.1.0...v1.1.1)
|
|
999
968
|
|
|
1000
969
|
**Closed issues:**
|
|
@@ -1006,6 +975,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1006
975
|
- Remove lots of hardcoded values for config, and adds the `authenticate` hook [\#427](https://github.com/feathersjs/authentication/pull/427) ([myknbani](https://github.com/myknbani))
|
|
1007
976
|
|
|
1008
977
|
## [v1.1.0](https://github.com/feathersjs/authentication/tree/v1.1.0) (2017-03-01)
|
|
978
|
+
|
|
1009
979
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.2...v1.1.0)
|
|
1010
980
|
|
|
1011
981
|
**Fixed bugs:**
|
|
@@ -1034,10 +1004,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1034
1004
|
- feathers-authentication errors with any view error, and redirects to /auth/failure [\#381](https://github.com/feathersjs/authentication/issues/381)
|
|
1035
1005
|
- what does app.service\('authentication'\).remove\(...\) mean? [\#379](https://github.com/feathersjs/authentication/issues/379)
|
|
1036
1006
|
- Rest Endpoints. [\#375](https://github.com/feathersjs/authentication/issues/375)
|
|
1037
|
-
- cordova google-plus signUp with
|
|
1007
|
+
- cordova google-plus signUp with id_token [\#373](https://github.com/feathersjs/authentication/issues/373)
|
|
1038
1008
|
- How to reconnect socket with cookie after page refresh ? [\#372](https://github.com/feathersjs/authentication/issues/372)
|
|
1039
1009
|
- Error: Could not find stored JWT and no authentication strategy was given [\#367](https://github.com/feathersjs/authentication/issues/367)
|
|
1040
|
-
- "No auth token" using authenticate
|
|
1010
|
+
- "No auth token" using authenticate strategy: 'jwt' \(v.1.0.0-beta-2\) [\#366](https://github.com/feathersjs/authentication/issues/366)
|
|
1041
1011
|
- Navigating to /auth/\<provider\> twice redirects to /auth/failed [\#344](https://github.com/feathersjs/authentication/issues/344)
|
|
1042
1012
|
- Meteor auth migration guide [\#334](https://github.com/feathersjs/authentication/issues/334)
|
|
1043
1013
|
- Auth 1.0 [\#330](https://github.com/feathersjs/authentication/issues/330)
|
|
@@ -1065,6 +1035,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1065
1035
|
- Docs: Equalize usage of feathers-authenticate [\#378](https://github.com/feathersjs/authentication/pull/378) ([eikaramba](https://github.com/eikaramba))
|
|
1066
1036
|
|
|
1067
1037
|
## [v1.0.2](https://github.com/feathersjs/authentication/tree/v1.0.2) (2016-12-14)
|
|
1038
|
+
|
|
1068
1039
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.1...v1.0.2)
|
|
1069
1040
|
|
|
1070
1041
|
**Closed issues:**
|
|
@@ -1072,9 +1043,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1072
1043
|
- successRedirect not redirecting [\#364](https://github.com/feathersjs/authentication/issues/364)
|
|
1073
1044
|
|
|
1074
1045
|
## [v1.0.1](https://github.com/feathersjs/authentication/tree/v1.0.1) (2016-12-14)
|
|
1046
|
+
|
|
1075
1047
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.0...v1.0.1)
|
|
1076
1048
|
|
|
1077
1049
|
## [v1.0.0](https://github.com/feathersjs/authentication/tree/v1.0.0) (2016-12-14)
|
|
1050
|
+
|
|
1078
1051
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.12...v1.0.0)
|
|
1079
1052
|
|
|
1080
1053
|
**Fixed bugs:**
|
|
@@ -1085,19 +1058,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1085
1058
|
|
|
1086
1059
|
- auth.express.authenticate got undefined [\#363](https://github.com/feathersjs/authentication/issues/363)
|
|
1087
1060
|
- Non-standard header structure [\#361](https://github.com/feathersjs/authentication/issues/361)
|
|
1088
|
-
- localEndpoint without local strategy
|
|
1061
|
+
- localEndpoint without local strategy [\#359](https://github.com/feathersjs/authentication/issues/359)
|
|
1089
1062
|
- Using custom passport strategies [\#356](https://github.com/feathersjs/authentication/issues/356)
|
|
1090
1063
|
- Client-side app.on\('login'\) [\#355](https://github.com/feathersjs/authentication/issues/355)
|
|
1091
1064
|
- Payload limiting on `app.get\('user'\)`? [\#354](https://github.com/feathersjs/authentication/issues/354)
|
|
1092
|
-
- Authentication token is missing
|
|
1065
|
+
- Authentication token is missing [\#352](https://github.com/feathersjs/authentication/issues/352)
|
|
1093
1066
|
- \[1.0\] The entity on the socket should pull from the strategy options. [\#348](https://github.com/feathersjs/authentication/issues/348)
|
|
1094
1067
|
- \[1.0\] Only the first failure is returned on auth failure when chaining multiple strategies [\#346](https://github.com/feathersjs/authentication/issues/346)
|
|
1095
1068
|
- Build 0.7.11 does not contain current code on NPMJS [\#342](https://github.com/feathersjs/authentication/issues/342)
|
|
1096
|
-
-
|
|
1069
|
+
- feathers-authentication branch 0.8 did not work with payload \(tested on socket\) [\#264](https://github.com/feathersjs/authentication/issues/264)
|
|
1097
1070
|
- Add method for updating JWT [\#260](https://github.com/feathersjs/authentication/issues/260)
|
|
1098
1071
|
- 1.0 architecture considerations [\#226](https://github.com/feathersjs/authentication/issues/226)
|
|
1099
1072
|
- Features/RFC [\#213](https://github.com/feathersjs/authentication/issues/213)
|
|
1100
|
-
- Support
|
|
1073
|
+
- Support access_token based OAuth2 providers [\#169](https://github.com/feathersjs/authentication/issues/169)
|
|
1101
1074
|
- Support openID [\#154](https://github.com/feathersjs/authentication/issues/154)
|
|
1102
1075
|
- Disable cookie by default if not using OAuth [\#152](https://github.com/feathersjs/authentication/issues/152)
|
|
1103
1076
|
- Add token service tests [\#144](https://github.com/feathersjs/authentication/issues/144)
|
|
@@ -1128,6 +1101,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1128
1101
|
- 1.0 Pre-release [\#336](https://github.com/feathersjs/authentication/pull/336) ([ekryski](https://github.com/ekryski))
|
|
1129
1102
|
|
|
1130
1103
|
## [v0.7.12](https://github.com/feathersjs/authentication/tree/v0.7.12) (2016-11-11)
|
|
1104
|
+
|
|
1131
1105
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.11...v0.7.12)
|
|
1132
1106
|
|
|
1133
1107
|
**Closed issues:**
|
|
@@ -1175,6 +1149,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1175
1149
|
- 0.8 - OAuth fixes [\#304](https://github.com/feathersjs/authentication/pull/304) ([marshallswain](https://github.com/marshallswain))
|
|
1176
1150
|
|
|
1177
1151
|
## [v0.7.11](https://github.com/feathersjs/authentication/tree/v0.7.11) (2016-09-28)
|
|
1152
|
+
|
|
1178
1153
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.10...v0.7.11)
|
|
1179
1154
|
|
|
1180
1155
|
**Closed issues:**
|
|
@@ -1193,6 +1168,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1193
1168
|
- Allow multiple username fields for local auth [\#283](https://github.com/feathersjs/authentication/pull/283) ([sdbondi](https://github.com/sdbondi))
|
|
1194
1169
|
|
|
1195
1170
|
## [v0.7.10](https://github.com/feathersjs/authentication/tree/v0.7.10) (2016-08-31)
|
|
1171
|
+
|
|
1196
1172
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.9...v0.7.10)
|
|
1197
1173
|
|
|
1198
1174
|
**Fixed bugs:**
|
|
@@ -1205,7 +1181,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1205
1181
|
- Auth0 & featherjs authorization only [\#277](https://github.com/feathersjs/authentication/issues/277)
|
|
1206
1182
|
- Cannot read property 'scope' of undefined [\#273](https://github.com/feathersjs/authentication/issues/273)
|
|
1207
1183
|
- Socker.js | Custom successHandler [\#271](https://github.com/feathersjs/authentication/issues/271)
|
|
1208
|
-
- Use feathers-socketio? and rest&socket share session maybe?
|
|
1184
|
+
- Use feathers-socketio? and rest&socket share session maybe? [\#269](https://github.com/feathersjs/authentication/issues/269)
|
|
1209
1185
|
- Ability to invalidate old token/session when user login with another machine. [\#267](https://github.com/feathersjs/authentication/issues/267)
|
|
1210
1186
|
- 0.8 authentication before hooks - only ever getting a 401 Unauthorised [\#263](https://github.com/feathersjs/authentication/issues/263)
|
|
1211
1187
|
- REST Middleware breaks local auth [\#262](https://github.com/feathersjs/authentication/issues/262)
|
|
@@ -1235,6 +1211,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1235
1211
|
- Adds ability to limit queries unless authenticated and authorized [\#229](https://github.com/feathersjs/authentication/pull/229) ([codingfriend1](https://github.com/codingfriend1))
|
|
1236
1212
|
|
|
1237
1213
|
## [v0.7.9](https://github.com/feathersjs/authentication/tree/v0.7.9) (2016-06-20)
|
|
1214
|
+
|
|
1238
1215
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.8...v0.7.9)
|
|
1239
1216
|
|
|
1240
1217
|
**Fixed bugs:**
|
|
@@ -1252,6 +1229,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1252
1229
|
- jwt ssl warning [\#214](https://github.com/feathersjs/authentication/pull/214) ([aboutlo](https://github.com/aboutlo))
|
|
1253
1230
|
|
|
1254
1231
|
## [v0.7.8](https://github.com/feathersjs/authentication/tree/v0.7.8) (2016-06-09)
|
|
1232
|
+
|
|
1255
1233
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.7...v0.7.8)
|
|
1256
1234
|
|
|
1257
1235
|
**Closed issues:**
|
|
@@ -1276,6 +1254,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1276
1254
|
- Update babel-plugin-add-module-exports to version 0.2.0 🚀 [\#199](https://github.com/feathersjs/authentication/pull/199) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
|
|
1277
1255
|
|
|
1278
1256
|
## [v0.7.7](https://github.com/feathersjs/authentication/tree/v0.7.7) (2016-05-05)
|
|
1257
|
+
|
|
1279
1258
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.6...v0.7.7)
|
|
1280
1259
|
|
|
1281
1260
|
**Fixed bugs:**
|
|
@@ -1287,6 +1266,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1287
1266
|
- properly handle optional `\_json` property [\#197](https://github.com/feathersjs/authentication/pull/197) ([nyaaao](https://github.com/nyaaao))
|
|
1288
1267
|
|
|
1289
1268
|
## [v0.7.6](https://github.com/feathersjs/authentication/tree/v0.7.6) (2016-05-03)
|
|
1269
|
+
|
|
1290
1270
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.5...v0.7.6)
|
|
1291
1271
|
|
|
1292
1272
|
**Fixed bugs:**
|
|
@@ -1295,7 +1275,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1295
1275
|
|
|
1296
1276
|
**Closed issues:**
|
|
1297
1277
|
|
|
1298
|
-
- Authenticated user
|
|
1278
|
+
- Authenticated user [\#192](https://github.com/feathersjs/authentication/issues/192)
|
|
1299
1279
|
- REST token revoke [\#185](https://github.com/feathersjs/authentication/issues/185)
|
|
1300
1280
|
- TypeError: Cannot read property 'service' of undefined [\#173](https://github.com/feathersjs/authentication/issues/173)
|
|
1301
1281
|
- Optionally Include password in the params.query object passed to User.find\(\) [\#171](https://github.com/feathersjs/authentication/issues/171)
|
|
@@ -1309,6 +1289,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1309
1289
|
- fix\(oauth2\): Use patch to update user in oauthCallback [\#183](https://github.com/feathersjs/authentication/pull/183) ([beevelop](https://github.com/beevelop))
|
|
1310
1290
|
|
|
1311
1291
|
## [v0.7.5](https://github.com/feathersjs/authentication/tree/v0.7.5) (2016-04-23)
|
|
1292
|
+
|
|
1312
1293
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.4...v0.7.5)
|
|
1313
1294
|
|
|
1314
1295
|
**Fixed bugs:**
|
|
@@ -1321,6 +1302,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1321
1302
|
- Unable to authenticate requests when using vanilla Socket.IO [\#166](https://github.com/feathersjs/authentication/issues/166)
|
|
1322
1303
|
|
|
1323
1304
|
## [v0.7.4](https://github.com/feathersjs/authentication/tree/v0.7.4) (2016-04-18)
|
|
1305
|
+
|
|
1324
1306
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.3...v0.7.4)
|
|
1325
1307
|
|
|
1326
1308
|
**Fixed bugs:**
|
|
@@ -1338,9 +1320,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1338
1320
|
- Hook fixes [\#164](https://github.com/feathersjs/authentication/pull/164) ([ekryski](https://github.com/ekryski))
|
|
1339
1321
|
|
|
1340
1322
|
## [v0.7.3](https://github.com/feathersjs/authentication/tree/v0.7.3) (2016-04-16)
|
|
1323
|
+
|
|
1341
1324
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.2...v0.7.3)
|
|
1342
1325
|
|
|
1343
1326
|
## [v0.7.2](https://github.com/feathersjs/authentication/tree/v0.7.2) (2016-04-16)
|
|
1327
|
+
|
|
1344
1328
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.1...v0.7.2)
|
|
1345
1329
|
|
|
1346
1330
|
**Closed issues:**
|
|
@@ -1356,6 +1340,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1356
1340
|
- Steal Compatibility [\#156](https://github.com/feathersjs/authentication/pull/156) ([marshallswain](https://github.com/marshallswain))
|
|
1357
1341
|
|
|
1358
1342
|
## [v0.7.1](https://github.com/feathersjs/authentication/tree/v0.7.1) (2016-04-08)
|
|
1343
|
+
|
|
1359
1344
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.0...v0.7.1)
|
|
1360
1345
|
|
|
1361
1346
|
**Closed issues:**
|
|
@@ -1372,6 +1357,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1372
1357
|
- Fix copy paste typo in queryWithCurrentUser hook. [\#140](https://github.com/feathersjs/authentication/pull/140) ([juodumas](https://github.com/juodumas))
|
|
1373
1358
|
|
|
1374
1359
|
## [v0.7.0](https://github.com/feathersjs/authentication/tree/v0.7.0) (2016-03-30)
|
|
1360
|
+
|
|
1375
1361
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.6.0...v0.7.0)
|
|
1376
1362
|
|
|
1377
1363
|
**Fixed bugs:**
|
|
@@ -1402,6 +1388,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1402
1388
|
- 0.7 Release [\#139](https://github.com/feathersjs/authentication/pull/139) ([ekryski](https://github.com/ekryski))
|
|
1403
1389
|
|
|
1404
1390
|
## [v0.6.0](https://github.com/feathersjs/authentication/tree/v0.6.0) (2016-03-24)
|
|
1391
|
+
|
|
1405
1392
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.5.1...v0.6.0)
|
|
1406
1393
|
|
|
1407
1394
|
**Fixed bugs:**
|
|
@@ -1422,15 +1409,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1422
1409
|
**Merged pull requests:**
|
|
1423
1410
|
|
|
1424
1411
|
- Bcryptjs [\#137](https://github.com/feathersjs/authentication/pull/137) ([ekryski](https://github.com/ekryski))
|
|
1425
|
-
- Allow user.id to be 0.
|
|
1412
|
+
- Allow user.id to be 0. Fixes \#116 [\#117](https://github.com/feathersjs/authentication/pull/117) ([marshallswain](https://github.com/marshallswain))
|
|
1426
1413
|
- client should return a 401 error code when no token is provided [\#115](https://github.com/feathersjs/authentication/pull/115) ([ccummings](https://github.com/ccummings))
|
|
1427
1414
|
- v0.6 - Bugs fixes, new hooks, and hook tests [\#109](https://github.com/feathersjs/authentication/pull/109) ([ekryski](https://github.com/ekryski))
|
|
1428
1415
|
- primus client connect event is 'open' [\#106](https://github.com/feathersjs/authentication/pull/106) ([ahdinosaur](https://github.com/ahdinosaur))
|
|
1429
1416
|
|
|
1430
1417
|
## [v0.5.1](https://github.com/feathersjs/authentication/tree/v0.5.1) (2016-03-15)
|
|
1418
|
+
|
|
1431
1419
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.5.0...v0.5.1)
|
|
1432
1420
|
|
|
1433
1421
|
## [v0.5.0](https://github.com/feathersjs/authentication/tree/v0.5.0) (2016-03-14)
|
|
1422
|
+
|
|
1434
1423
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.4.1...v0.5.0)
|
|
1435
1424
|
|
|
1436
1425
|
**Fixed bugs:**
|
|
@@ -1456,6 +1445,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1456
1445
|
- Customize the JWT payload [\#80](https://github.com/feathersjs/authentication/pull/80) ([enten](https://github.com/enten))
|
|
1457
1446
|
|
|
1458
1447
|
## [v0.4.1](https://github.com/feathersjs/authentication/tree/v0.4.1) (2016-02-28)
|
|
1448
|
+
|
|
1459
1449
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.4.0...v0.4.1)
|
|
1460
1450
|
|
|
1461
1451
|
**Fixed bugs:**
|
|
@@ -1465,13 +1455,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1465
1455
|
**Closed issues:**
|
|
1466
1456
|
|
|
1467
1457
|
- Username response ? [\#84](https://github.com/feathersjs/authentication/issues/84)
|
|
1468
|
-
- User doesn't get populated after authentication with databases that don't use \_id
|
|
1458
|
+
- User doesn't get populated after authentication with databases that don't use \_id [\#71](https://github.com/feathersjs/authentication/issues/71)
|
|
1469
1459
|
- Support client usage in NodeJS [\#52](https://github.com/feathersjs/authentication/issues/52)
|
|
1470
1460
|
- Support async storage for React Native [\#51](https://github.com/feathersjs/authentication/issues/51)
|
|
1471
1461
|
- RequireAdmin on userService [\#36](https://github.com/feathersjs/authentication/issues/36)
|
|
1472
1462
|
- Create test for changing the `usernameField` [\#1](https://github.com/feathersjs/authentication/issues/1)
|
|
1473
1463
|
|
|
1474
1464
|
## [v0.4.0](https://github.com/feathersjs/authentication/tree/v0.4.0) (2016-02-27)
|
|
1465
|
+
|
|
1475
1466
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.5...v0.4.0)
|
|
1476
1467
|
|
|
1477
1468
|
**Closed issues:**
|
|
@@ -1483,6 +1474,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1483
1474
|
- Refactoring for storage service [\#76](https://github.com/feathersjs/authentication/pull/76) ([ekryski](https://github.com/ekryski))
|
|
1484
1475
|
|
|
1485
1476
|
## [v0.3.5](https://github.com/feathersjs/authentication/tree/v0.3.5) (2016-02-25)
|
|
1477
|
+
|
|
1486
1478
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.4...v0.3.5)
|
|
1487
1479
|
|
|
1488
1480
|
**Merged pull requests:**
|
|
@@ -1490,12 +1482,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1490
1482
|
- Adding support for OAuth2 token based auth strategies. Closes \#46. [\#77](https://github.com/feathersjs/authentication/pull/77) ([ekryski](https://github.com/ekryski))
|
|
1491
1483
|
|
|
1492
1484
|
## [v0.3.4](https://github.com/feathersjs/authentication/tree/v0.3.4) (2016-02-25)
|
|
1485
|
+
|
|
1493
1486
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.3...v0.3.4)
|
|
1494
1487
|
|
|
1495
1488
|
## [v0.3.3](https://github.com/feathersjs/authentication/tree/v0.3.3) (2016-02-25)
|
|
1489
|
+
|
|
1496
1490
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.2...v0.3.3)
|
|
1497
1491
|
|
|
1498
1492
|
## [v0.3.2](https://github.com/feathersjs/authentication/tree/v0.3.2) (2016-02-24)
|
|
1493
|
+
|
|
1499
1494
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.1...v0.3.2)
|
|
1500
1495
|
|
|
1501
1496
|
**Merged pull requests:**
|
|
@@ -1503,6 +1498,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1503
1498
|
- bumping feathers-errors version [\#79](https://github.com/feathersjs/authentication/pull/79) ([ekryski](https://github.com/ekryski))
|
|
1504
1499
|
|
|
1505
1500
|
## [v0.3.1](https://github.com/feathersjs/authentication/tree/v0.3.1) (2016-02-23)
|
|
1501
|
+
|
|
1506
1502
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.0...v0.3.1)
|
|
1507
1503
|
|
|
1508
1504
|
**Closed issues:**
|
|
@@ -1516,6 +1512,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1516
1512
|
- Fix toLowerCase hook [\#75](https://github.com/feathersjs/authentication/pull/75) ([enten](https://github.com/enten))
|
|
1517
1513
|
|
|
1518
1514
|
## [v0.3.0](https://github.com/feathersjs/authentication/tree/v0.3.0) (2016-02-19)
|
|
1515
|
+
|
|
1519
1516
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.4...v0.3.0)
|
|
1520
1517
|
|
|
1521
1518
|
**Fixed bugs:**
|
|
@@ -1533,6 +1530,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1533
1530
|
- Config options [\#70](https://github.com/feathersjs/authentication/pull/70) ([ekryski](https://github.com/ekryski))
|
|
1534
1531
|
|
|
1535
1532
|
## [v0.2.4](https://github.com/feathersjs/authentication/tree/v0.2.4) (2016-02-17)
|
|
1533
|
+
|
|
1536
1534
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.3...v0.2.4)
|
|
1537
1535
|
|
|
1538
1536
|
**Closed issues:**
|
|
@@ -1544,11 +1542,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1544
1542
|
- Add module exports Babel module and test CommonJS compatibility [\#68](https://github.com/feathersjs/authentication/pull/68) ([daffl](https://github.com/daffl))
|
|
1545
1543
|
|
|
1546
1544
|
## [v0.2.3](https://github.com/feathersjs/authentication/tree/v0.2.3) (2016-02-15)
|
|
1545
|
+
|
|
1547
1546
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.2...v0.2.3)
|
|
1548
1547
|
|
|
1549
1548
|
**Closed issues:**
|
|
1550
1549
|
|
|
1551
|
-
- How to forbid get and find on the userEndpoint?
|
|
1550
|
+
- How to forbid get and find on the userEndpoint? [\#66](https://github.com/feathersjs/authentication/issues/66)
|
|
1552
1551
|
- userEndpoint problem in sub-app [\#63](https://github.com/feathersjs/authentication/issues/63)
|
|
1553
1552
|
- How to modify successRedirect in local authentication? [\#60](https://github.com/feathersjs/authentication/issues/60)
|
|
1554
1553
|
|
|
@@ -1558,6 +1557,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1558
1557
|
- Fixing client query [\#65](https://github.com/feathersjs/authentication/pull/65) ([fastlorenzo](https://github.com/fastlorenzo))
|
|
1559
1558
|
|
|
1560
1559
|
## [v0.2.2](https://github.com/feathersjs/authentication/tree/v0.2.2) (2016-02-13)
|
|
1560
|
+
|
|
1561
1561
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.1...v0.2.2)
|
|
1562
1562
|
|
|
1563
1563
|
**Closed issues:**
|
|
@@ -1571,6 +1571,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1571
1571
|
- Fixing token endpoint [\#58](https://github.com/feathersjs/authentication/pull/58) ([marshallswain](https://github.com/marshallswain))
|
|
1572
1572
|
|
|
1573
1573
|
## [v0.2.1](https://github.com/feathersjs/authentication/tree/v0.2.1) (2016-02-12)
|
|
1574
|
+
|
|
1574
1575
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.0...v0.2.1)
|
|
1575
1576
|
|
|
1576
1577
|
**Closed issues:**
|
|
@@ -1579,6 +1580,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1579
1580
|
- node can not require\("feathers-authentication"\).default [\#53](https://github.com/feathersjs/authentication/issues/53)
|
|
1580
1581
|
|
|
1581
1582
|
## [v0.2.0](https://github.com/feathersjs/authentication/tree/v0.2.0) (2016-02-12)
|
|
1583
|
+
|
|
1582
1584
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.1.2...v0.2.0)
|
|
1583
1585
|
|
|
1584
1586
|
**Closed issues:**
|
|
@@ -1600,6 +1602,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1600
1602
|
- Validate if provider [\#39](https://github.com/feathersjs/authentication/pull/39) ([mastertinner](https://github.com/mastertinner))
|
|
1601
1603
|
|
|
1602
1604
|
## [v0.1.2](https://github.com/feathersjs/authentication/tree/v0.1.2) (2016-02-04)
|
|
1605
|
+
|
|
1603
1606
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.1.1...v0.1.2)
|
|
1604
1607
|
|
|
1605
1608
|
**Closed issues:**
|
|
@@ -1613,9 +1616,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1613
1616
|
- safety check for data [\#35](https://github.com/feathersjs/authentication/pull/35) ([deanmcpherson](https://github.com/deanmcpherson))
|
|
1614
1617
|
|
|
1615
1618
|
## [v0.1.1](https://github.com/feathersjs/authentication/tree/v0.1.1) (2016-01-30)
|
|
1619
|
+
|
|
1616
1620
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.1.0...v0.1.1)
|
|
1617
1621
|
|
|
1618
1622
|
## [v0.1.0](https://github.com/feathersjs/authentication/tree/v0.1.0) (2016-01-25)
|
|
1623
|
+
|
|
1619
1624
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.8...v0.1.0)
|
|
1620
1625
|
|
|
1621
1626
|
**Closed issues:**
|
|
@@ -1634,6 +1639,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1634
1639
|
- Adding nsp check [\#26](https://github.com/feathersjs/authentication/pull/26) ([marshallswain](https://github.com/marshallswain))
|
|
1635
1640
|
|
|
1636
1641
|
## [v0.0.8](https://github.com/feathersjs/authentication/tree/v0.0.8) (2016-01-16)
|
|
1642
|
+
|
|
1637
1643
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.7...v0.0.8)
|
|
1638
1644
|
|
|
1639
1645
|
**Merged pull requests:**
|
|
@@ -1641,11 +1647,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1641
1647
|
- Support services that use pagination. [\#23](https://github.com/feathersjs/authentication/pull/23) ([marshallswain](https://github.com/marshallswain))
|
|
1642
1648
|
|
|
1643
1649
|
## [v0.0.7](https://github.com/feathersjs/authentication/tree/v0.0.7) (2016-01-07)
|
|
1650
|
+
|
|
1644
1651
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.6...v0.0.7)
|
|
1645
1652
|
|
|
1646
1653
|
**Closed issues:**
|
|
1647
1654
|
|
|
1648
|
-
- Password isn't removed from responses when using a mongoose service for users endpoint
|
|
1655
|
+
- Password isn't removed from responses when using a mongoose service for users endpoint [\#19](https://github.com/feathersjs/authentication/issues/19)
|
|
1649
1656
|
- next called twice using socket.io and using an unauthenticated service [\#17](https://github.com/feathersjs/authentication/issues/17)
|
|
1650
1657
|
- Switch to a callback-based field configuration? [\#15](https://github.com/feathersjs/authentication/issues/15)
|
|
1651
1658
|
- Cannot authenticate [\#14](https://github.com/feathersjs/authentication/issues/14)
|
|
@@ -1654,12 +1661,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1654
1661
|
|
|
1655
1662
|
**Merged pull requests:**
|
|
1656
1663
|
|
|
1657
|
-
- Adding separate route for refreshing a login token.
|
|
1664
|
+
- Adding separate route for refreshing a login token. [\#21](https://github.com/feathersjs/authentication/pull/21) ([corymsmith](https://github.com/corymsmith))
|
|
1658
1665
|
- Converting user model to object when using mongoose service [\#20](https://github.com/feathersjs/authentication/pull/20) ([corymsmith](https://github.com/corymsmith))
|
|
1659
1666
|
- Fixing issue where next is called twice when hitting an unauthenticated service via socket.io [\#18](https://github.com/feathersjs/authentication/pull/18) ([corymsmith](https://github.com/corymsmith))
|
|
1660
1667
|
- Fixing usage of mongoose service [\#16](https://github.com/feathersjs/authentication/pull/16) ([corymsmith](https://github.com/corymsmith))
|
|
1661
1668
|
|
|
1662
1669
|
## [v0.0.6](https://github.com/feathersjs/authentication/tree/v0.0.6) (2015-11-22)
|
|
1670
|
+
|
|
1663
1671
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.5...v0.0.6)
|
|
1664
1672
|
|
|
1665
1673
|
**Closed issues:**
|
|
@@ -1668,12 +1676,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1668
1676
|
- Make sure we're returning proper error responses. [\#8](https://github.com/feathersjs/authentication/issues/8)
|
|
1669
1677
|
|
|
1670
1678
|
## [v0.0.5](https://github.com/feathersjs/authentication/tree/v0.0.5) (2015-11-19)
|
|
1679
|
+
|
|
1671
1680
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.4...v0.0.5)
|
|
1672
1681
|
|
|
1673
1682
|
## [v0.0.4](https://github.com/feathersjs/authentication/tree/v0.0.4) (2015-11-19)
|
|
1683
|
+
|
|
1674
1684
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.3...v0.0.4)
|
|
1675
1685
|
|
|
1676
1686
|
## [v0.0.3](https://github.com/feathersjs/authentication/tree/v0.0.3) (2015-11-18)
|
|
1687
|
+
|
|
1677
1688
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.6...v0.0.3)
|
|
1678
1689
|
|
|
1679
1690
|
**Merged pull requests:**
|
|
@@ -1681,15 +1692,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1681
1692
|
- allow runtime auth via socket.io [\#4](https://github.com/feathersjs/authentication/pull/4) ([randomnerd](https://github.com/randomnerd))
|
|
1682
1693
|
|
|
1683
1694
|
## [v1.0.6](https://github.com/feathersjs/authentication/tree/v1.0.6) (2015-11-02)
|
|
1695
|
+
|
|
1684
1696
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.5...v1.0.6)
|
|
1685
1697
|
|
|
1686
1698
|
## [v1.0.5](https://github.com/feathersjs/authentication/tree/v1.0.5) (2015-11-02)
|
|
1699
|
+
|
|
1687
1700
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.4...v1.0.5)
|
|
1688
1701
|
|
|
1689
1702
|
## [v1.0.4](https://github.com/feathersjs/authentication/tree/v1.0.4) (2015-11-02)
|
|
1703
|
+
|
|
1690
1704
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.3...v1.0.4)
|
|
1691
1705
|
|
|
1692
1706
|
## [v1.0.3](https://github.com/feathersjs/authentication/tree/v1.0.3) (2015-10-12)
|
|
1693
1707
|
|
|
1694
|
-
|
|
1695
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
|
1708
|
+
\* _This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)_
|