@feathersjs/authentication 5.0.0-pre.9 → 5.0.1
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 +277 -284
- 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,597 +3,523 @@
|
|
|
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
|
-
|
|
6
|
+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
9
9
|
|
|
10
|
+
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
|
|
10
11
|
|
|
12
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
11
13
|
|
|
14
|
+
# [5.0.0-pre.38](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.37...v5.0.0-pre.38) (2023-02-17)
|
|
12
15
|
|
|
16
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
13
17
|
|
|
14
|
-
# [5.0.0-pre.
|
|
18
|
+
# [5.0.0-pre.37](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.36...v5.0.0-pre.37) (2023-02-09)
|
|
15
19
|
|
|
16
20
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
17
21
|
|
|
22
|
+
# [5.0.0-pre.36](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.35...v5.0.0-pre.36) (2023-01-29)
|
|
18
23
|
|
|
24
|
+
### Bug Fixes
|
|
19
25
|
|
|
26
|
+
- Update all dependencies ([#3024](https://github.com/feathersjs/feathers/issues/3024)) ([283dc47](https://github.com/feathersjs/feathers/commit/283dc4798d85584bc031e6e54b83b4ea77d1edd0))
|
|
20
27
|
|
|
28
|
+
# [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
|
|
21
29
|
|
|
22
|
-
|
|
30
|
+
### Features
|
|
23
31
|
|
|
24
|
-
**
|
|
32
|
+
- **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))
|
|
25
33
|
|
|
34
|
+
# [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
|
|
26
35
|
|
|
36
|
+
### Bug Fixes
|
|
27
37
|
|
|
38
|
+
- **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))
|
|
39
|
+
- **core:** `context.type` for around hooks ([#2890](https://github.com/feathersjs/feathers/issues/2890)) ([d606ac6](https://github.com/feathersjs/feathers/commit/d606ac660fd5335c95206784fea36530dd2e851a))
|
|
28
40
|
|
|
41
|
+
### Features
|
|
29
42
|
|
|
30
|
-
|
|
43
|
+
- **schema:** Virtual property resolvers ([#2900](https://github.com/feathersjs/feathers/issues/2900)) ([7d03b57](https://github.com/feathersjs/feathers/commit/7d03b57ae2f633bdd4a368e0d5955011fbd6c329))
|
|
44
|
+
|
|
45
|
+
# [5.0.0-pre.33](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.32...v5.0.0-pre.33) (2022-11-08)
|
|
31
46
|
|
|
32
47
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
33
48
|
|
|
49
|
+
# [5.0.0-pre.32](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.31...v5.0.0-pre.32) (2022-10-26)
|
|
34
50
|
|
|
51
|
+
### Bug Fixes
|
|
35
52
|
|
|
53
|
+
- **authentication:** Improve logout and disconnect connection handling ([#2813](https://github.com/feathersjs/feathers/issues/2813)) ([dd77379](https://github.com/feathersjs/feathers/commit/dd77379d8bdcd32d529bef912e672639e4899823))
|
|
36
54
|
|
|
55
|
+
# [5.0.0-pre.31](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.30...v5.0.0-pre.31) (2022-10-12)
|
|
37
56
|
|
|
38
|
-
|
|
57
|
+
### Features
|
|
39
58
|
|
|
59
|
+
- **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))
|
|
40
60
|
|
|
41
|
-
|
|
61
|
+
# [5.0.0-pre.30](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.29...v5.0.0-pre.30) (2022-10-07)
|
|
42
62
|
|
|
43
|
-
|
|
44
|
-
* **koa:** Use extended query parser for compatibility ([#2397](https://github.com/feathersjs/feathers/issues/2397)) ([b2944ba](https://github.com/feathersjs/feathers/commit/b2944bac3ec6d5ecc80dc518cd4e58093692db74))
|
|
63
|
+
### Features
|
|
45
64
|
|
|
65
|
+
- **core:** Allow to unregister services at runtime ([#2756](https://github.com/feathersjs/feathers/issues/2756)) ([d16601f](https://github.com/feathersjs/feathers/commit/d16601f2277dca5357866ffdefba2a611f6dc7fa))
|
|
66
|
+
- **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))
|
|
46
67
|
|
|
47
|
-
|
|
68
|
+
# [5.0.0-pre.29](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.28...v5.0.0-pre.29) (2022-09-16)
|
|
48
69
|
|
|
49
|
-
|
|
70
|
+
### Features
|
|
50
71
|
|
|
72
|
+
- **authentication-oauth:** Koa and transport independent oAuth authentication ([#2737](https://github.com/feathersjs/feathers/issues/2737)) ([9231525](https://github.com/feathersjs/feathers/commit/9231525a24bb790ba9c5d940f2867a9c727691c9))
|
|
51
73
|
|
|
74
|
+
# [5.0.0-pre.28](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.27...v5.0.0-pre.28) (2022-08-03)
|
|
52
75
|
|
|
76
|
+
### Bug Fixes
|
|
53
77
|
|
|
78
|
+
- **cli:** Improve generated application and client ([#2701](https://github.com/feathersjs/feathers/issues/2701)) ([bd55ffb](https://github.com/feathersjs/feathers/commit/bd55ffb812e89bf215f4515e7f137656ea888c3f))
|
|
54
79
|
|
|
55
|
-
# [5.0.0-pre.
|
|
80
|
+
# [5.0.0-pre.27](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.26...v5.0.0-pre.27) (2022-07-13)
|
|
56
81
|
|
|
57
82
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
58
83
|
|
|
84
|
+
# [5.0.0-pre.26](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.25...v5.0.0-pre.26) (2022-06-22)
|
|
59
85
|
|
|
86
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
60
87
|
|
|
88
|
+
# [5.0.0-pre.25](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.24...v5.0.0-pre.25) (2022-06-22)
|
|
61
89
|
|
|
90
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
62
91
|
|
|
63
|
-
# [5.0.0-pre.
|
|
64
|
-
|
|
92
|
+
# [5.0.0-pre.24](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.23...v5.0.0-pre.24) (2022-06-21)
|
|
65
93
|
|
|
66
94
|
### Bug Fixes
|
|
67
95
|
|
|
68
|
-
|
|
96
|
+
- **authentication:** Add safe dispatch data for authentication requests ([#2662](https://github.com/feathersjs/feathers/issues/2662)) ([d8104a1](https://github.com/feathersjs/feathers/commit/d8104a19ee9181e6a5ea81014af29ff9a3c28a8a))
|
|
69
97
|
|
|
98
|
+
# [5.0.0-pre.23](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.22...v5.0.0-pre.23) (2022-06-06)
|
|
70
99
|
|
|
71
|
-
|
|
100
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
72
101
|
|
|
73
|
-
|
|
102
|
+
# [5.0.0-pre.22](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.21...v5.0.0-pre.22) (2022-05-24)
|
|
74
103
|
|
|
104
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
75
105
|
|
|
106
|
+
# [5.0.0-pre.21](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.20...v5.0.0-pre.21) (2022-05-23)
|
|
76
107
|
|
|
108
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
77
109
|
|
|
110
|
+
# [5.0.0-pre.20](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.19...v5.0.0-pre.20) (2022-05-04)
|
|
78
111
|
|
|
79
|
-
|
|
112
|
+
### Bug Fixes
|
|
80
113
|
|
|
81
|
-
**
|
|
114
|
+
- **dependencies:** Lock monorepo package version numbers ([#2623](https://github.com/feathersjs/feathers/issues/2623)) ([5640c10](https://github.com/feathersjs/feathers/commit/5640c1020cc139994e695d658c08bad3494db507))
|
|
82
115
|
|
|
116
|
+
# [5.0.0-pre.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)
|
|
83
117
|
|
|
118
|
+
### Features
|
|
84
119
|
|
|
120
|
+
- **typescript:** Improve adapter typings ([#2605](https://github.com/feathersjs/feathers/issues/2605)) ([3b2ca0a](https://github.com/feathersjs/feathers/commit/3b2ca0a6a8e03e8390272c4d7e930b4bffdaacf5))
|
|
121
|
+
- **typescript:** Improve params and query typeability ([#2600](https://github.com/feathersjs/feathers/issues/2600)) ([df28b76](https://github.com/feathersjs/feathers/commit/df28b7619161f1df5e700326f52cca1a92dc5d28))
|
|
85
122
|
|
|
123
|
+
# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)
|
|
86
124
|
|
|
87
|
-
|
|
125
|
+
### Features
|
|
88
126
|
|
|
89
|
-
**
|
|
127
|
+
- **authentication:** Add setup method for auth strategies ([#1611](https://github.com/feathersjs/feathers/issues/1611)) ([a3c3581](https://github.com/feathersjs/feathers/commit/a3c35814dccdbbf6de96f04f60b226ce206c6dbe))
|
|
128
|
+
- **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))
|
|
90
129
|
|
|
130
|
+
# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
|
|
91
131
|
|
|
132
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
92
133
|
|
|
134
|
+
# [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
|
|
93
135
|
|
|
136
|
+
### Features
|
|
94
137
|
|
|
95
|
-
|
|
138
|
+
- **express, koa:** make transports similar ([#2486](https://github.com/feathersjs/feathers/issues/2486)) ([26aa937](https://github.com/feathersjs/feathers/commit/26aa937c114fb8596dfefc599b1f53cead69c159))
|
|
96
139
|
|
|
140
|
+
# [5.0.0-pre.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
|
|
97
141
|
|
|
98
142
|
### Bug Fixes
|
|
99
143
|
|
|
100
|
-
|
|
101
|
-
|
|
144
|
+
- **typescript:** Overall typing improvements ([#2478](https://github.com/feathersjs/feathers/issues/2478)) ([b8eb804](https://github.com/feathersjs/feathers/commit/b8eb804158556d9651a8607e3c3fda15e0bfd110))
|
|
102
145
|
|
|
103
146
|
### Features
|
|
104
147
|
|
|
105
|
-
|
|
106
|
-
* Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
|
|
107
|
-
|
|
108
|
-
|
|
148
|
+
- **authentication-oauth:** Allow dynamic oAuth redirect ([#2469](https://github.com/feathersjs/feathers/issues/2469)) ([b7143d4](https://github.com/feathersjs/feathers/commit/b7143d4c0fbe961e714f79512be04449b9bbd7d9))
|
|
109
149
|
|
|
150
|
+
# [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13)
|
|
110
151
|
|
|
152
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
111
153
|
|
|
112
|
-
# [5.0.0-pre.
|
|
113
|
-
|
|
154
|
+
# [5.0.0-pre.13](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.12...v5.0.0-pre.13) (2021-10-13)
|
|
114
155
|
|
|
156
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
115
157
|
|
|
116
|
-
# [5.0.0-pre.
|
|
158
|
+
# [5.0.0-pre.12](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.11...v5.0.0-pre.12) (2021-10-12)
|
|
117
159
|
|
|
118
160
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
119
161
|
|
|
162
|
+
# [5.0.0-pre.11](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.10...v5.0.0-pre.11) (2021-10-06)
|
|
120
163
|
|
|
164
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
121
165
|
|
|
166
|
+
# [5.0.0-pre.10](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.9...v5.0.0-pre.10) (2021-09-19)
|
|
122
167
|
|
|
168
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
123
169
|
|
|
124
|
-
# [5.0.0-pre.
|
|
125
|
-
|
|
170
|
+
# [5.0.0-pre.9](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.8...v5.0.0-pre.9) (2021-08-09)
|
|
126
171
|
|
|
172
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
127
173
|
|
|
128
|
-
|
|
174
|
+
# [5.0.0-pre.8](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.7...v5.0.0-pre.8) (2021-08-09)
|
|
129
175
|
|
|
130
176
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
131
177
|
|
|
178
|
+
# [5.0.0-pre.7](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.6...v5.0.0-pre.7) (2021-08-09)
|
|
132
179
|
|
|
180
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
133
181
|
|
|
182
|
+
# [5.0.0-pre.6](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.5...v5.0.0-pre.6) (2021-08-08)
|
|
134
183
|
|
|
184
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
135
185
|
|
|
136
|
-
|
|
137
|
-
|
|
186
|
+
# [5.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.4...v5.0.0-pre.5) (2021-06-23)
|
|
138
187
|
|
|
139
188
|
### Bug Fixes
|
|
140
189
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
190
|
+
- **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))
|
|
191
|
+
- **koa:** Use extended query parser for compatibility ([#2397](https://github.com/feathersjs/feathers/issues/2397)) ([b2944ba](https://github.com/feathersjs/feathers/commit/b2944bac3ec6d5ecc80dc518cd4e58093692db74))
|
|
144
192
|
|
|
193
|
+
### Features
|
|
145
194
|
|
|
195
|
+
- **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))
|
|
146
196
|
|
|
147
|
-
|
|
197
|
+
# [5.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.3...v5.0.0-pre.4) (2021-05-13)
|
|
148
198
|
|
|
149
199
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
150
200
|
|
|
201
|
+
# [5.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.2...v5.0.0-pre.3) (2021-04-21)
|
|
151
202
|
|
|
203
|
+
### Bug Fixes
|
|
152
204
|
|
|
205
|
+
- **typescript:** Improve TypeScript backwards compatibility ([#2310](https://github.com/feathersjs/feathers/issues/2310)) ([f33be73](https://github.com/feathersjs/feathers/commit/f33be73fc46a533efb15df9aab0658e3240d3897))
|
|
153
206
|
|
|
207
|
+
### Features
|
|
154
208
|
|
|
155
|
-
|
|
209
|
+
- **dependencies:** Remove direct debug dependency ([#2296](https://github.com/feathersjs/feathers/issues/2296)) ([501d416](https://github.com/feathersjs/feathers/commit/501d4164d30c6a126906dc640cdfdc82207ba34a))
|
|
210
|
+
|
|
211
|
+
# [5.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.1...v5.0.0-pre.2) (2021-04-06)
|
|
156
212
|
|
|
157
213
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
158
214
|
|
|
215
|
+
# [5.0.0-beta.1](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-04-03)
|
|
159
216
|
|
|
217
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
160
218
|
|
|
219
|
+
# [5.0.0-beta.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.1...v5.0.0-beta.0) (2021-03-28)
|
|
161
220
|
|
|
221
|
+
### Bug Fixes
|
|
162
222
|
|
|
163
|
-
|
|
223
|
+
- Update Grant usage and other dependencies ([#2264](https://github.com/feathersjs/feathers/issues/2264)) ([7b0f8fa](https://github.com/feathersjs/feathers/commit/7b0f8fad252419ed0ad0bf259cdf3104d322ab60))
|
|
164
224
|
|
|
225
|
+
### Features
|
|
165
226
|
|
|
166
|
-
|
|
227
|
+
- Application service types default to any ([#1566](https://github.com/feathersjs/feathers/issues/1566)) ([d93ba9a](https://github.com/feathersjs/feathers/commit/d93ba9a17edd20d3397bb00f4f6e82e804e42ed6))
|
|
228
|
+
- Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
|
|
167
229
|
|
|
168
|
-
|
|
230
|
+
# [5.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.5.11...v5.0.0-pre.1) (2020-12-17)
|
|
169
231
|
|
|
232
|
+
# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
|
|
170
233
|
|
|
234
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
171
235
|
|
|
236
|
+
# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
|
|
172
237
|
|
|
238
|
+
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
|
|
173
239
|
|
|
174
|
-
|
|
240
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
175
241
|
|
|
242
|
+
## [4.5.10](https://github.com/feathersjs/feathers/compare/v4.5.9...v4.5.10) (2020-11-08)
|
|
176
243
|
|
|
177
244
|
### Bug Fixes
|
|
178
245
|
|
|
179
|
-
|
|
180
|
-
|
|
246
|
+
- **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))
|
|
181
247
|
|
|
248
|
+
## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09)
|
|
182
249
|
|
|
250
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
183
251
|
|
|
252
|
+
## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12)
|
|
184
253
|
|
|
185
|
-
|
|
254
|
+
**Note:** Version bump only for package @feathersjs/authentication
|
|
186
255
|
|
|
256
|
+
## [4.5.7](https://github.com/feathersjs/feathers/compare/v4.5.6...v4.5.7) (2020-07-24)
|
|
187
257
|
|
|
188
258
|
### Bug Fixes
|
|
189
259
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
260
|
+
- **authentication:** Add JWT getEntityQuery ([#2013](https://github.com/feathersjs/feathers/issues/2013)) ([e0e7fb5](https://github.com/feathersjs/feathers/commit/e0e7fb5162940fe776731283b40026c61d9c8a33))
|
|
193
261
|
|
|
262
|
+
## [4.5.6](https://github.com/feathersjs/feathers/compare/v4.5.5...v4.5.6) (2020-07-12)
|
|
194
263
|
|
|
264
|
+
### Bug Fixes
|
|
195
265
|
|
|
196
|
-
|
|
266
|
+
- **authentication:** Omit query in JWT strategy ([#2011](https://github.com/feathersjs/feathers/issues/2011)) ([04ce7e9](https://github.com/feathersjs/feathers/commit/04ce7e98515fe9d495cd0e83e0da097e9bcd7382))
|
|
197
267
|
|
|
268
|
+
## [4.5.5](https://github.com/feathersjs/feathers/compare/v4.5.4...v4.5.5) (2020-07-11)
|
|
198
269
|
|
|
199
270
|
### Bug Fixes
|
|
200
271
|
|
|
201
|
-
|
|
202
|
-
|
|
272
|
+
- **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))
|
|
203
273
|
|
|
274
|
+
## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)
|
|
204
275
|
|
|
276
|
+
### Bug Fixes
|
|
205
277
|
|
|
278
|
+
- **authentication:** Remove entity from connection information on logout ([#1889](https://github.com/feathersjs/feathers/issues/1889)) ([b062753](https://github.com/feathersjs/feathers/commit/b0627530d61babe15dd84369d3093ccae4b780ca))
|
|
206
279
|
|
|
207
280
|
## [4.5.2](https://github.com/feathersjs/feathers/compare/v4.5.1...v4.5.2) (2020-03-04)
|
|
208
281
|
|
|
209
|
-
|
|
210
282
|
### Bug Fixes
|
|
211
283
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
284
|
+
- **authentication:** Improve JWT strategy configuration error message ([#1844](https://github.com/feathersjs/feathers/issues/1844)) ([2c771db](https://github.com/feathersjs/feathers/commit/2c771dbb22d53d4f7de3c3f514e57afa1a186322))
|
|
217
285
|
|
|
218
286
|
## [4.5.1](https://github.com/feathersjs/feathers/compare/v4.5.0...v4.5.1) (2020-01-24)
|
|
219
287
|
|
|
220
288
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
221
289
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
290
|
# [4.5.0](https://github.com/feathersjs/feathers/compare/v4.4.3...v4.5.0) (2020-01-18)
|
|
227
291
|
|
|
228
|
-
|
|
229
292
|
### Bug Fixes
|
|
230
293
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
294
|
+
- Add `params.authentication` type, remove `hook.connection` type ([#1732](https://github.com/feathersjs/feathers/issues/1732)) ([d46b7b2](https://github.com/feathersjs/feathers/commit/d46b7b2abac8862c0e4dbfce20d71b8b8a96692f))
|
|
236
295
|
|
|
237
296
|
## [4.4.3](https://github.com/feathersjs/feathers/compare/v4.4.1...v4.4.3) (2019-12-06)
|
|
238
297
|
|
|
239
298
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
240
299
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
300
|
## [4.4.1](https://github.com/feathersjs/feathers/compare/v4.4.0...v4.4.1) (2019-11-27)
|
|
246
301
|
|
|
247
302
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
248
303
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
304
|
# [4.4.0](https://github.com/feathersjs/feathers/compare/v4.3.11...v4.4.0) (2019-11-27)
|
|
254
305
|
|
|
255
306
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
256
307
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
308
|
## [4.3.11](https://github.com/feathersjs/feathers/compare/v4.3.10...v4.3.11) (2019-11-11)
|
|
262
309
|
|
|
263
|
-
|
|
264
310
|
### Bug Fixes
|
|
265
311
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
312
|
+
- **authentication:** Retain object references in authenticate hook ([#1675](https://github.com/feathersjs/feathers/issues/1675)) ([e1939be](https://github.com/feathersjs/feathers/commit/e1939be19d4e79d3f5e2fe69ba894a11c627ae99))
|
|
271
313
|
|
|
272
314
|
## [4.3.10](https://github.com/feathersjs/feathers/compare/v4.3.9...v4.3.10) (2019-10-26)
|
|
273
315
|
|
|
274
316
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
275
317
|
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
318
|
## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26)
|
|
281
319
|
|
|
282
|
-
|
|
283
320
|
### Bug Fixes
|
|
284
321
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
322
|
+
- Add jsonwebtoken TypeScript type dependency ([317c80a](https://github.com/feathersjs/feathers/commit/317c80a9205e8853bb830a12c3aa1a19e95f9abc))
|
|
323
|
+
- Small type improvements ([#1624](https://github.com/feathersjs/feathers/issues/1624)) ([50162c6](https://github.com/feathersjs/feathers/commit/50162c6e562f0a47c6a280c4f01fff7c3afee293))
|
|
291
324
|
|
|
292
325
|
## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14)
|
|
293
326
|
|
|
294
327
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
295
328
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
329
|
## [4.3.5](https://github.com/feathersjs/feathers/compare/v4.3.4...v4.3.5) (2019-10-07)
|
|
301
330
|
|
|
302
|
-
|
|
303
331
|
### Bug Fixes
|
|
304
332
|
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
333
|
+
- Authentication type improvements and timeout fix ([#1605](https://github.com/feathersjs/feathers/issues/1605)) ([19854d3](https://github.com/feathersjs/feathers/commit/19854d3))
|
|
334
|
+
- 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))
|
|
311
335
|
|
|
312
336
|
## [4.3.4](https://github.com/feathersjs/feathers/compare/v4.3.3...v4.3.4) (2019-10-03)
|
|
313
337
|
|
|
314
338
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
315
339
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
340
|
## [4.3.3](https://github.com/feathersjs/feathers/compare/v4.3.2...v4.3.3) (2019-09-21)
|
|
321
341
|
|
|
322
|
-
|
|
323
342
|
### Bug Fixes
|
|
324
343
|
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
344
|
+
- check for undefined access token ([#1571](https://github.com/feathersjs/feathers/issues/1571)) ([976369d](https://github.com/feathersjs/feathers/commit/976369d))
|
|
345
|
+
- Small improvements in dependencies and code sturcture ([#1562](https://github.com/feathersjs/feathers/issues/1562)) ([42c13e2](https://github.com/feathersjs/feathers/commit/42c13e2))
|
|
331
346
|
|
|
332
347
|
## [4.3.2](https://github.com/feathersjs/feathers/compare/v4.3.1...v4.3.2) (2019-09-16)
|
|
333
348
|
|
|
334
349
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
335
350
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
351
|
## [4.3.1](https://github.com/feathersjs/feathers/compare/v4.3.0...v4.3.1) (2019-09-09)
|
|
341
352
|
|
|
342
|
-
|
|
343
353
|
### Bug Fixes
|
|
344
354
|
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
355
|
+
- Use long-timeout for JWT expiration timers ([#1552](https://github.com/feathersjs/feathers/issues/1552)) ([65637ec](https://github.com/feathersjs/feathers/commit/65637ec))
|
|
350
356
|
|
|
351
357
|
# [4.3.0](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.4...v4.3.0) (2019-08-27)
|
|
352
358
|
|
|
353
359
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
354
360
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
361
|
# [4.3.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.3...v4.3.0-pre.4) (2019-08-22)
|
|
360
362
|
|
|
361
|
-
|
|
362
363
|
### Bug Fixes
|
|
363
364
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
365
|
+
- Fix auth publisher mistake ([08bad61](https://github.com/feathersjs/feathers/commit/08bad61))
|
|
369
366
|
|
|
370
367
|
# [4.3.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.2...v4.3.0-pre.3) (2019-08-19)
|
|
371
368
|
|
|
372
|
-
|
|
373
369
|
### Bug Fixes
|
|
374
370
|
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
371
|
+
- Expire and remove authenticated real-time connections ([#1512](https://github.com/feathersjs/feathers/issues/1512)) ([2707c33](https://github.com/feathersjs/feathers/commit/2707c33))
|
|
372
|
+
- Update all dependencies ([7d53a00](https://github.com/feathersjs/feathers/commit/7d53a00))
|
|
378
373
|
|
|
379
374
|
### Features
|
|
380
375
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
376
|
+
- Let strategies handle the connection ([#1510](https://github.com/feathersjs/feathers/issues/1510)) ([4329feb](https://github.com/feathersjs/feathers/commit/4329feb))
|
|
386
377
|
|
|
387
378
|
# [4.3.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.1...v4.3.0-pre.2) (2019-08-02)
|
|
388
379
|
|
|
389
|
-
|
|
390
380
|
### Bug Fixes
|
|
391
381
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
382
|
+
- 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))
|
|
383
|
+
- Add method to reliably get default authentication service ([#1470](https://github.com/feathersjs/feathers/issues/1470)) ([e542cb3](https://github.com/feathersjs/feathers/commit/e542cb3))
|
|
398
384
|
|
|
399
385
|
# [4.3.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.5...v4.3.0-pre.1) (2019-07-11)
|
|
400
386
|
|
|
401
387
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
402
388
|
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
389
|
# [4.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.4...v4.0.0-pre.5) (2019-07-10)
|
|
408
390
|
|
|
409
391
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
410
392
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
393
|
# [4.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.3...v4.0.0-pre.4) (2019-07-05)
|
|
416
394
|
|
|
417
|
-
|
|
418
395
|
### Bug Fixes
|
|
419
396
|
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
397
|
+
- Updated typings for ServiceMethods ([#1409](https://github.com/feathersjs/feathers/issues/1409)) ([b5ee7e2](https://github.com/feathersjs/feathers/commit/b5ee7e2))
|
|
425
398
|
|
|
426
399
|
# [4.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.2...v4.0.0-pre.3) (2019-06-01)
|
|
427
400
|
|
|
428
|
-
|
|
429
401
|
### Bug Fixes
|
|
430
402
|
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
403
|
+
- 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))
|
|
404
|
+
- Set authenticated: true after successful authentication ([#1367](https://github.com/feathersjs/feathers/issues/1367)) ([9918cff](https://github.com/feathersjs/feathers/commit/9918cff))
|
|
405
|
+
- Typings fix and improvements. ([#1364](https://github.com/feathersjs/feathers/issues/1364)) ([515b916](https://github.com/feathersjs/feathers/commit/515b916))
|
|
406
|
+
- Update dependencies and fix tests ([#1373](https://github.com/feathersjs/feathers/issues/1373)) ([d743a7f](https://github.com/feathersjs/feathers/commit/d743a7f))
|
|
439
407
|
|
|
440
408
|
# [4.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.1...v4.0.0-pre.2) (2019-05-15)
|
|
441
409
|
|
|
442
|
-
|
|
443
410
|
### Bug Fixes
|
|
444
411
|
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
412
|
+
- Throw NotAuthenticated on token verification errors ([#1357](https://github.com/feathersjs/feathers/issues/1357)) ([e0120df](https://github.com/feathersjs/feathers/commit/e0120df))
|
|
450
413
|
|
|
451
414
|
# [4.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.0...v4.0.0-pre.1) (2019-05-08)
|
|
452
415
|
|
|
453
|
-
|
|
454
416
|
### Bug Fixes
|
|
455
417
|
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
418
|
+
- Always require strategy parameter in authentication ([#1327](https://github.com/feathersjs/feathers/issues/1327)) ([d4a8021](https://github.com/feathersjs/feathers/commit/d4a8021))
|
|
419
|
+
- Bring back params.authenticated ([#1317](https://github.com/feathersjs/feathers/issues/1317)) ([a0ffd5e](https://github.com/feathersjs/feathers/commit/a0ffd5e))
|
|
420
|
+
- Improve authentication parameter handling ([#1333](https://github.com/feathersjs/feathers/issues/1333)) ([6e77204](https://github.com/feathersjs/feathers/commit/6e77204))
|
|
421
|
+
- Merge httpStrategies and authStrategies option ([#1308](https://github.com/feathersjs/feathers/issues/1308)) ([afa4d55](https://github.com/feathersjs/feathers/commit/afa4d55))
|
|
422
|
+
- Rename jwtStrategies option to authStrategies ([#1305](https://github.com/feathersjs/feathers/issues/1305)) ([4aee151](https://github.com/feathersjs/feathers/commit/4aee151))
|
|
462
423
|
|
|
463
424
|
### Features
|
|
464
425
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
426
|
+
- Change and *JWT methods to *accessToken ([#1304](https://github.com/feathersjs/feathers/issues/1304)) ([5ac826b](https://github.com/feathersjs/feathers/commit/5ac826b))
|
|
470
427
|
|
|
471
428
|
# [4.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v3.2.0-pre.1...v4.0.0-pre.0) (2019-04-21)
|
|
472
429
|
|
|
473
|
-
|
|
474
430
|
### Bug Fixes
|
|
475
431
|
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
432
|
+
- 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))
|
|
433
|
+
- Authentication core improvements ([#1260](https://github.com/feathersjs/feathers/issues/1260)) ([c5dc7a2](https://github.com/feathersjs/feathers/commit/c5dc7a2))
|
|
434
|
+
- Improve JWT authentication option handling ([#1261](https://github.com/feathersjs/feathers/issues/1261)) ([31b956b](https://github.com/feathersjs/feathers/commit/31b956b))
|
|
435
|
+
- Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
|
|
436
|
+
- Only merge authenticated property on update ([8a564f7](https://github.com/feathersjs/feathers/commit/8a564f7))
|
|
437
|
+
- reduce authentication connection hook complexity and remove unnecessary checks ([fa94b2f](https://github.com/feathersjs/feathers/commit/fa94b2f))
|
|
438
|
+
- Update all dependencies to latest ([#1206](https://github.com/feathersjs/feathers/issues/1206)) ([e51e0f6](https://github.com/feathersjs/feathers/commit/e51e0f6))
|
|
439
|
+
- **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))
|
|
440
|
+
- Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
|
|
441
|
+
- **docs/new-features:** syntax highlighting ([#347](https://github.com/feathersjs/feathers/issues/347)) ([4ab7c95](https://github.com/feathersjs/feathers/commit/4ab7c95))
|
|
442
|
+
- **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))
|
|
443
|
+
- **package:** update debug to version 3.0.0 ([#555](https://github.com/feathersjs/feathers/issues/555)) ([f788804](https://github.com/feathersjs/feathers/commit/f788804))
|
|
444
|
+
- **package:** update jsonwebtoken to version 8.0.0 ([#567](https://github.com/feathersjs/feathers/issues/567)) ([6811626](https://github.com/feathersjs/feathers/commit/6811626))
|
|
445
|
+
- **package:** update ms to version 2.0.0 ([#509](https://github.com/feathersjs/feathers/issues/509)) ([7e4b0b6](https://github.com/feathersjs/feathers/commit/7e4b0b6))
|
|
446
|
+
- **package:** update passport to version 0.4.0 ([#558](https://github.com/feathersjs/feathers/issues/558)) ([dcb14a5](https://github.com/feathersjs/feathers/commit/dcb14a5))
|
|
492
447
|
|
|
493
448
|
### Features
|
|
494
449
|
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
450
|
+
- @feathersjs/authentication-oauth ([#1299](https://github.com/feathersjs/feathers/issues/1299)) ([656bae7](https://github.com/feathersjs/feathers/commit/656bae7))
|
|
451
|
+
- 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))
|
|
452
|
+
- Add TypeScript definitions ([#1275](https://github.com/feathersjs/feathers/issues/1275)) ([9dd6713](https://github.com/feathersjs/feathers/commit/9dd6713))
|
|
453
|
+
- Authentication v3 core server implementation ([#1205](https://github.com/feathersjs/feathers/issues/1205)) ([1bd7591](https://github.com/feathersjs/feathers/commit/1bd7591))
|
|
454
|
+
- Authentication v3 local authentication ([#1211](https://github.com/feathersjs/feathers/issues/1211)) ([0fa5f7c](https://github.com/feathersjs/feathers/commit/0fa5f7c))
|
|
455
|
+
- Remove (hook, next) signature and SKIP support ([#1269](https://github.com/feathersjs/feathers/issues/1269)) ([211c0f8](https://github.com/feathersjs/feathers/commit/211c0f8))
|
|
456
|
+
- Support params symbol to skip authenticate hook ([#1296](https://github.com/feathersjs/feathers/issues/1296)) ([d16cf4d](https://github.com/feathersjs/feathers/commit/d16cf4d))
|
|
503
457
|
|
|
504
458
|
### BREAKING CHANGES
|
|
505
459
|
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
460
|
+
- Update authentication strategies for @feathersjs/authentication v3
|
|
511
461
|
|
|
512
462
|
## [2.1.16](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.15...@feathersjs/authentication@2.1.16) (2019-01-26)
|
|
513
463
|
|
|
514
|
-
|
|
515
464
|
### Bug Fixes
|
|
516
465
|
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
466
|
+
- **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))
|
|
522
467
|
|
|
523
468
|
## [2.1.15](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.14...@feathersjs/authentication@2.1.15) (2019-01-02)
|
|
524
469
|
|
|
525
|
-
|
|
526
470
|
### Bug Fixes
|
|
527
471
|
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
472
|
+
- Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
|
|
533
473
|
|
|
534
474
|
<a name="2.1.14"></a>
|
|
535
|
-
## [2.1.14](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.13...@feathersjs/authentication@2.1.14) (2018-12-16)
|
|
536
475
|
|
|
476
|
+
## [2.1.14](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.13...@feathersjs/authentication@2.1.14) (2018-12-16)
|
|
537
477
|
|
|
538
478
|
### Bug Fixes
|
|
539
479
|
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
480
|
+
- 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))
|
|
545
481
|
|
|
546
482
|
<a name="2.1.13"></a>
|
|
483
|
+
|
|
547
484
|
## [2.1.13](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.12...@feathersjs/authentication@2.1.13) (2018-10-26)
|
|
548
485
|
|
|
549
486
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
550
487
|
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
488
|
<a name="2.1.12"></a>
|
|
556
|
-
## [2.1.12](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.11...@feathersjs/authentication@2.1.12) (2018-10-25)
|
|
557
489
|
|
|
490
|
+
## [2.1.12](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.11...@feathersjs/authentication@2.1.12) (2018-10-25)
|
|
558
491
|
|
|
559
492
|
### Bug Fixes
|
|
560
493
|
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
494
|
+
- Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
|
|
495
|
+
- Only merge authenticated property on update ([8a564f7](https://github.com/feathersjs/feathers/commit/8a564f7))
|
|
567
496
|
|
|
568
497
|
<a name="2.1.11"></a>
|
|
498
|
+
|
|
569
499
|
## [2.1.11](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.10...@feathersjs/authentication@2.1.11) (2018-09-21)
|
|
570
500
|
|
|
571
501
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
572
502
|
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
503
|
<a name="2.1.10"></a>
|
|
504
|
+
|
|
578
505
|
## [2.1.10](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.9...@feathersjs/authentication@2.1.10) (2018-09-17)
|
|
579
506
|
|
|
580
507
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
581
508
|
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
509
|
<a name="2.1.9"></a>
|
|
510
|
+
|
|
587
511
|
## [2.1.9](https://github.com/feathersjs/feathers/compare/@feathersjs/authentication@2.1.8...@feathersjs/authentication@2.1.9) (2018-09-02)
|
|
588
512
|
|
|
589
513
|
**Note:** Version bump only for package @feathersjs/authentication
|
|
590
514
|
|
|
591
515
|
<a name="2.1.8"></a>
|
|
516
|
+
|
|
592
517
|
## 2.1.8
|
|
593
518
|
|
|
594
519
|
- Migrate to Monorepo ([feathers#462](https://github.com/feathersjs/feathers/issues/462))
|
|
595
520
|
|
|
596
521
|
## [v2.1.7](https://github.com/feathersjs/authentication/tree/v2.1.7) (2018-06-29)
|
|
522
|
+
|
|
597
523
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.6...v2.1.7)
|
|
598
524
|
|
|
599
525
|
**Fixed bugs:**
|
|
@@ -615,6 +541,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
615
541
|
- Update sinon to the latest version 🚀 [\#681](https://github.com/feathersjs/authentication/pull/681) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
616
542
|
|
|
617
543
|
## [v2.1.6](https://github.com/feathersjs/authentication/tree/v2.1.6) (2018-06-01)
|
|
544
|
+
|
|
618
545
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.5...v2.1.6)
|
|
619
546
|
|
|
620
547
|
**Closed issues:**
|
|
@@ -636,6 +563,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
636
563
|
- add option to allowUnauthenticated [\#599](https://github.com/feathersjs/authentication/pull/599) ([MichaelErmer](https://github.com/MichaelErmer))
|
|
637
564
|
|
|
638
565
|
## [v2.1.5](https://github.com/feathersjs/authentication/tree/v2.1.5) (2018-04-16)
|
|
566
|
+
|
|
639
567
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.4...v2.1.5)
|
|
640
568
|
|
|
641
569
|
**Closed issues:**
|
|
@@ -648,6 +576,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
648
576
|
- Remove payload and user entity on logout. [\#665](https://github.com/feathersjs/authentication/pull/665) ([bertho-zero](https://github.com/bertho-zero))
|
|
649
577
|
|
|
650
578
|
## [v2.1.4](https://github.com/feathersjs/authentication/tree/v2.1.4) (2018-04-12)
|
|
579
|
+
|
|
651
580
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.3...v2.1.4)
|
|
652
581
|
|
|
653
582
|
**Closed issues:**
|
|
@@ -664,6 +593,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
664
593
|
- Update sinon to the latest version 🚀 [\#656](https://github.com/feathersjs/authentication/pull/656) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
665
594
|
|
|
666
595
|
## [v2.1.3](https://github.com/feathersjs/authentication/tree/v2.1.3) (2018-03-16)
|
|
596
|
+
|
|
667
597
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.2...v2.1.3)
|
|
668
598
|
|
|
669
599
|
**Closed issues:**
|
|
@@ -683,6 +613,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
683
613
|
- Update sinon-chai to the latest version 🚀 [\#644](https://github.com/feathersjs/authentication/pull/644) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
684
614
|
|
|
685
615
|
## [v2.1.2](https://github.com/feathersjs/authentication/tree/v2.1.2) (2018-02-14)
|
|
616
|
+
|
|
686
617
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.1...v2.1.2)
|
|
687
618
|
|
|
688
619
|
**Fixed bugs:**
|
|
@@ -699,7 +630,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
699
630
|
- cookie reused from server in SSR app [\#619](https://github.com/feathersjs/authentication/issues/619)
|
|
700
631
|
- Express middleware not setCookie [\#617](https://github.com/feathersjs/authentication/issues/617)
|
|
701
632
|
- Server to Server Authentication Question [\#612](https://github.com/feathersjs/authentication/issues/612)
|
|
702
|
-
- No way to share token between socket-rest-express
|
|
633
|
+
- No way to share token between socket-rest-express [\#607](https://github.com/feathersjs/authentication/issues/607)
|
|
703
634
|
- 404 when accessing route using customer authentication [\#579](https://github.com/feathersjs/authentication/issues/579)
|
|
704
635
|
- \[question\] is it possible to protect by role a create method? [\#564](https://github.com/feathersjs/authentication/issues/564)
|
|
705
636
|
- Authentication with server-side rendering [\#560](https://github.com/feathersjs/authentication/issues/560)
|
|
@@ -716,6 +647,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
716
647
|
- Options merged [\#611](https://github.com/feathersjs/authentication/pull/611) ([Makingweb](https://github.com/Makingweb))
|
|
717
648
|
|
|
718
649
|
## [v2.1.1](https://github.com/feathersjs/authentication/tree/v2.1.1) (2018-01-03)
|
|
650
|
+
|
|
719
651
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.1.0...v2.1.1)
|
|
720
652
|
|
|
721
653
|
**Closed issues:**
|
|
@@ -731,6 +663,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
731
663
|
- Update mongodb to the latest version 🚀 [\#618](https://github.com/feathersjs/authentication/pull/618) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
732
664
|
|
|
733
665
|
## [v2.1.0](https://github.com/feathersjs/authentication/tree/v2.1.0) (2017-12-06)
|
|
666
|
+
|
|
734
667
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.0.1...v2.1.0)
|
|
735
668
|
|
|
736
669
|
**Closed issues:**
|
|
@@ -744,6 +677,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
744
677
|
- Update feathers-memory to the latest version 🚀 [\#613](https://github.com/feathersjs/authentication/pull/613) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
745
678
|
|
|
746
679
|
## [v2.0.1](https://github.com/feathersjs/authentication/tree/v2.0.1) (2017-11-16)
|
|
680
|
+
|
|
747
681
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v2.0.0...v2.0.1)
|
|
748
682
|
|
|
749
683
|
**Merged pull requests:**
|
|
@@ -751,6 +685,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
751
685
|
- Add default export for better ES module \(TypeScript\) compatibility [\#605](https://github.com/feathersjs/authentication/pull/605) ([daffl](https://github.com/daffl))
|
|
752
686
|
|
|
753
687
|
## [v2.0.0](https://github.com/feathersjs/authentication/tree/v2.0.0) (2017-11-09)
|
|
688
|
+
|
|
754
689
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.3.1...v2.0.0)
|
|
755
690
|
|
|
756
691
|
**Closed issues:**
|
|
@@ -763,6 +698,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
763
698
|
- Update nsp to the latest version 🚀 [\#603](https://github.com/feathersjs/authentication/pull/603) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
764
699
|
|
|
765
700
|
## [v1.3.1](https://github.com/feathersjs/authentication/tree/v1.3.1) (2017-11-03)
|
|
701
|
+
|
|
766
702
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.4.1...v1.3.1)
|
|
767
703
|
|
|
768
704
|
**Merged pull requests:**
|
|
@@ -770,6 +706,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
770
706
|
- Only set the JWT UUID if it is not already set [\#600](https://github.com/feathersjs/authentication/pull/600) ([daffl](https://github.com/daffl))
|
|
771
707
|
|
|
772
708
|
## [v1.4.1](https://github.com/feathersjs/authentication/tree/v1.4.1) (2017-11-01)
|
|
709
|
+
|
|
773
710
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.4.0...v1.4.1)
|
|
774
711
|
|
|
775
712
|
**Merged pull requests:**
|
|
@@ -779,6 +716,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
779
716
|
- Update Codeclimate coverage token [\#595](https://github.com/feathersjs/authentication/pull/595) ([daffl](https://github.com/daffl))
|
|
780
717
|
|
|
781
718
|
## [v1.4.0](https://github.com/feathersjs/authentication/tree/v1.4.0) (2017-10-25)
|
|
719
|
+
|
|
782
720
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.3.0...v1.4.0)
|
|
783
721
|
|
|
784
722
|
**Closed issues:**
|
|
@@ -793,6 +731,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
793
731
|
- Update to new plugin infrastructure [\#591](https://github.com/feathersjs/authentication/pull/591) ([daffl](https://github.com/daffl))
|
|
794
732
|
|
|
795
733
|
## [v1.3.0](https://github.com/feathersjs/authentication/tree/v1.3.0) (2017-10-24)
|
|
734
|
+
|
|
796
735
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.13...v1.3.0)
|
|
797
736
|
|
|
798
737
|
**Merged pull requests:**
|
|
@@ -800,12 +739,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
800
739
|
- updating the codeclimate setup [\#589](https://github.com/feathersjs/authentication/pull/589) ([ekryski](https://github.com/ekryski))
|
|
801
740
|
|
|
802
741
|
## [v0.7.13](https://github.com/feathersjs/authentication/tree/v0.7.13) (2017-10-23)
|
|
742
|
+
|
|
803
743
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.7...v0.7.13)
|
|
804
744
|
|
|
805
745
|
**Closed issues:**
|
|
806
746
|
|
|
807
747
|
- Error authenticating! Error: Token provided to verifyJWT is missing or not a string ? [\#584](https://github.com/feathersjs/authentication/issues/584)
|
|
808
|
-
- Visual Studio Code
|
|
748
|
+
- Visual Studio Code Debug no authentication [\#583](https://github.com/feathersjs/authentication/issues/583)
|
|
809
749
|
- \[Feature Request\] Cloud DB's [\#581](https://github.com/feathersjs/authentication/issues/581)
|
|
810
750
|
- Request doesn't contain any headers when user service requested [\#578](https://github.com/feathersjs/authentication/issues/578)
|
|
811
751
|
- No way to pass Options to auth.express.authenticate. Needed for Google API refreshToken [\#576](https://github.com/feathersjs/authentication/issues/576)
|
|
@@ -846,13 +786,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
846
786
|
- Refresh token must have a user ID [\#419](https://github.com/feathersjs/authentication/pull/419) ([francisco-sanchez-molina](https://github.com/francisco-sanchez-molina))
|
|
847
787
|
|
|
848
788
|
## [v1.2.7](https://github.com/feathersjs/authentication/tree/v1.2.7) (2017-07-11)
|
|
789
|
+
|
|
849
790
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.6...v1.2.7)
|
|
850
791
|
|
|
851
792
|
**Closed issues:**
|
|
852
793
|
|
|
853
794
|
- Connection without password [\#541](https://github.com/feathersjs/authentication/issues/541)
|
|
854
795
|
- email in lower case ? [\#538](https://github.com/feathersjs/authentication/issues/538)
|
|
855
|
-
- Im unable to ping feathers server from react native.
|
|
796
|
+
- Im unable to ping feathers server from react native. [\#537](https://github.com/feathersjs/authentication/issues/537)
|
|
856
797
|
- whats the official way to open cors in feather ? [\#536](https://github.com/feathersjs/authentication/issues/536)
|
|
857
798
|
- Error options.service does not exist after initial auth setup [\#535](https://github.com/feathersjs/authentication/issues/535)
|
|
858
799
|
- LogoutTimer not being cleared correctly [\#532](https://github.com/feathersjs/authentication/issues/532)
|
|
@@ -863,6 +804,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
863
804
|
- fixed meta undefined error [\#542](https://github.com/feathersjs/authentication/pull/542) ([markacola](https://github.com/markacola))
|
|
864
805
|
|
|
865
806
|
## [v1.2.6](https://github.com/feathersjs/authentication/tree/v1.2.6) (2017-06-22)
|
|
807
|
+
|
|
866
808
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.5...v1.2.6)
|
|
867
809
|
|
|
868
810
|
**Closed issues:**
|
|
@@ -875,6 +817,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
875
817
|
- Update feathers-authentication-local to the latest version 🚀 [\#533](https://github.com/feathersjs/authentication/pull/533) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
876
818
|
|
|
877
819
|
## [v1.2.5](https://github.com/feathersjs/authentication/tree/v1.2.5) (2017-06-21)
|
|
820
|
+
|
|
878
821
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.4...v1.2.5)
|
|
879
822
|
|
|
880
823
|
**Closed issues:**
|
|
@@ -888,6 +831,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
888
831
|
- fixes several issues with update-entity w/ test cases [\#531](https://github.com/feathersjs/authentication/pull/531) ([jerfowler](https://github.com/jerfowler))
|
|
889
832
|
|
|
890
833
|
## [v1.2.4](https://github.com/feathersjs/authentication/tree/v1.2.4) (2017-06-08)
|
|
834
|
+
|
|
891
835
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.3...v1.2.4)
|
|
892
836
|
|
|
893
837
|
**Fixed bugs:**
|
|
@@ -915,6 +859,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
915
859
|
- Fix default authentication config keys [\#506](https://github.com/feathersjs/authentication/pull/506) ([ekryski](https://github.com/ekryski))
|
|
916
860
|
|
|
917
861
|
## [v1.2.3](https://github.com/feathersjs/authentication/tree/v1.2.3) (2017-05-10)
|
|
862
|
+
|
|
918
863
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.2...v1.2.3)
|
|
919
864
|
|
|
920
865
|
**Closed issues:**
|
|
@@ -940,6 +885,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
940
885
|
- Update dependencies to enable Greenkeeper 🌴 [\#482](https://github.com/feathersjs/authentication/pull/482) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
941
886
|
|
|
942
887
|
## [v1.2.2](https://github.com/feathersjs/authentication/tree/v1.2.2) (2017-04-12)
|
|
888
|
+
|
|
943
889
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.1...v1.2.2)
|
|
944
890
|
|
|
945
891
|
**Fixed bugs:**
|
|
@@ -961,6 +907,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
961
907
|
- 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))
|
|
962
908
|
|
|
963
909
|
## [v1.2.1](https://github.com/feathersjs/authentication/tree/v1.2.1) (2017-04-07)
|
|
910
|
+
|
|
964
911
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.2.0...v1.2.1)
|
|
965
912
|
|
|
966
913
|
**Fixed bugs:**
|
|
@@ -984,6 +931,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
984
931
|
- Allow the cookie to be set if action is not `remove` [\#474](https://github.com/feathersjs/authentication/pull/474) ([marshallswain](https://github.com/marshallswain))
|
|
985
932
|
|
|
986
933
|
## [v1.2.0](https://github.com/feathersjs/authentication/tree/v1.2.0) (2017-03-23)
|
|
934
|
+
|
|
987
935
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.1.1...v1.2.0)
|
|
988
936
|
|
|
989
937
|
**Fixed bugs:**
|
|
@@ -996,7 +944,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
996
944
|
|
|
997
945
|
- Token creation has side effect [\#454](https://github.com/feathersjs/authentication/issues/454)
|
|
998
946
|
- Question: When is userId set? [\#453](https://github.com/feathersjs/authentication/issues/453)
|
|
999
|
-
- How to authenticate SPA? More precisely how does the redirect works?
|
|
947
|
+
- How to authenticate SPA? More precisely how does the redirect works? [\#451](https://github.com/feathersjs/authentication/issues/451)
|
|
1000
948
|
- POST to auth/facebook for FacebookTokenStrategy 404? [\#447](https://github.com/feathersjs/authentication/issues/447)
|
|
1001
949
|
- feathers-authentication 1.1.1 `No auth token` [\#445](https://github.com/feathersjs/authentication/issues/445)
|
|
1002
950
|
- Another readme incorrect and maybe docs to [\#441](https://github.com/feathersjs/authentication/issues/441)
|
|
@@ -1019,6 +967,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1019
967
|
- Add support for Bearer scheme in remove method [\#403](https://github.com/feathersjs/authentication/pull/403) ([boybundit](https://github.com/boybundit))
|
|
1020
968
|
|
|
1021
969
|
## [v1.1.1](https://github.com/feathersjs/authentication/tree/v1.1.1) (2017-03-02)
|
|
970
|
+
|
|
1022
971
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.1.0...v1.1.1)
|
|
1023
972
|
|
|
1024
973
|
**Closed issues:**
|
|
@@ -1030,6 +979,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1030
979
|
- 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))
|
|
1031
980
|
|
|
1032
981
|
## [v1.1.0](https://github.com/feathersjs/authentication/tree/v1.1.0) (2017-03-01)
|
|
982
|
+
|
|
1033
983
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.2...v1.1.0)
|
|
1034
984
|
|
|
1035
985
|
**Fixed bugs:**
|
|
@@ -1058,10 +1008,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1058
1008
|
- feathers-authentication errors with any view error, and redirects to /auth/failure [\#381](https://github.com/feathersjs/authentication/issues/381)
|
|
1059
1009
|
- what does app.service\('authentication'\).remove\(...\) mean? [\#379](https://github.com/feathersjs/authentication/issues/379)
|
|
1060
1010
|
- Rest Endpoints. [\#375](https://github.com/feathersjs/authentication/issues/375)
|
|
1061
|
-
- cordova google-plus signUp with
|
|
1011
|
+
- cordova google-plus signUp with id_token [\#373](https://github.com/feathersjs/authentication/issues/373)
|
|
1062
1012
|
- How to reconnect socket with cookie after page refresh ? [\#372](https://github.com/feathersjs/authentication/issues/372)
|
|
1063
1013
|
- Error: Could not find stored JWT and no authentication strategy was given [\#367](https://github.com/feathersjs/authentication/issues/367)
|
|
1064
|
-
- "No auth token" using authenticate
|
|
1014
|
+
- "No auth token" using authenticate strategy: 'jwt' \(v.1.0.0-beta-2\) [\#366](https://github.com/feathersjs/authentication/issues/366)
|
|
1065
1015
|
- Navigating to /auth/\<provider\> twice redirects to /auth/failed [\#344](https://github.com/feathersjs/authentication/issues/344)
|
|
1066
1016
|
- Meteor auth migration guide [\#334](https://github.com/feathersjs/authentication/issues/334)
|
|
1067
1017
|
- Auth 1.0 [\#330](https://github.com/feathersjs/authentication/issues/330)
|
|
@@ -1089,6 +1039,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1089
1039
|
- Docs: Equalize usage of feathers-authenticate [\#378](https://github.com/feathersjs/authentication/pull/378) ([eikaramba](https://github.com/eikaramba))
|
|
1090
1040
|
|
|
1091
1041
|
## [v1.0.2](https://github.com/feathersjs/authentication/tree/v1.0.2) (2016-12-14)
|
|
1042
|
+
|
|
1092
1043
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.1...v1.0.2)
|
|
1093
1044
|
|
|
1094
1045
|
**Closed issues:**
|
|
@@ -1096,9 +1047,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1096
1047
|
- successRedirect not redirecting [\#364](https://github.com/feathersjs/authentication/issues/364)
|
|
1097
1048
|
|
|
1098
1049
|
## [v1.0.1](https://github.com/feathersjs/authentication/tree/v1.0.1) (2016-12-14)
|
|
1050
|
+
|
|
1099
1051
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.0...v1.0.1)
|
|
1100
1052
|
|
|
1101
1053
|
## [v1.0.0](https://github.com/feathersjs/authentication/tree/v1.0.0) (2016-12-14)
|
|
1054
|
+
|
|
1102
1055
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.12...v1.0.0)
|
|
1103
1056
|
|
|
1104
1057
|
**Fixed bugs:**
|
|
@@ -1109,19 +1062,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1109
1062
|
|
|
1110
1063
|
- auth.express.authenticate got undefined [\#363](https://github.com/feathersjs/authentication/issues/363)
|
|
1111
1064
|
- Non-standard header structure [\#361](https://github.com/feathersjs/authentication/issues/361)
|
|
1112
|
-
- localEndpoint without local strategy
|
|
1065
|
+
- localEndpoint without local strategy [\#359](https://github.com/feathersjs/authentication/issues/359)
|
|
1113
1066
|
- Using custom passport strategies [\#356](https://github.com/feathersjs/authentication/issues/356)
|
|
1114
1067
|
- Client-side app.on\('login'\) [\#355](https://github.com/feathersjs/authentication/issues/355)
|
|
1115
1068
|
- Payload limiting on `app.get\('user'\)`? [\#354](https://github.com/feathersjs/authentication/issues/354)
|
|
1116
|
-
- Authentication token is missing
|
|
1069
|
+
- Authentication token is missing [\#352](https://github.com/feathersjs/authentication/issues/352)
|
|
1117
1070
|
- \[1.0\] The entity on the socket should pull from the strategy options. [\#348](https://github.com/feathersjs/authentication/issues/348)
|
|
1118
1071
|
- \[1.0\] Only the first failure is returned on auth failure when chaining multiple strategies [\#346](https://github.com/feathersjs/authentication/issues/346)
|
|
1119
1072
|
- Build 0.7.11 does not contain current code on NPMJS [\#342](https://github.com/feathersjs/authentication/issues/342)
|
|
1120
|
-
-
|
|
1073
|
+
- feathers-authentication branch 0.8 did not work with payload \(tested on socket\) [\#264](https://github.com/feathersjs/authentication/issues/264)
|
|
1121
1074
|
- Add method for updating JWT [\#260](https://github.com/feathersjs/authentication/issues/260)
|
|
1122
1075
|
- 1.0 architecture considerations [\#226](https://github.com/feathersjs/authentication/issues/226)
|
|
1123
1076
|
- Features/RFC [\#213](https://github.com/feathersjs/authentication/issues/213)
|
|
1124
|
-
- Support
|
|
1077
|
+
- Support access_token based OAuth2 providers [\#169](https://github.com/feathersjs/authentication/issues/169)
|
|
1125
1078
|
- Support openID [\#154](https://github.com/feathersjs/authentication/issues/154)
|
|
1126
1079
|
- Disable cookie by default if not using OAuth [\#152](https://github.com/feathersjs/authentication/issues/152)
|
|
1127
1080
|
- Add token service tests [\#144](https://github.com/feathersjs/authentication/issues/144)
|
|
@@ -1152,6 +1105,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1152
1105
|
- 1.0 Pre-release [\#336](https://github.com/feathersjs/authentication/pull/336) ([ekryski](https://github.com/ekryski))
|
|
1153
1106
|
|
|
1154
1107
|
## [v0.7.12](https://github.com/feathersjs/authentication/tree/v0.7.12) (2016-11-11)
|
|
1108
|
+
|
|
1155
1109
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.11...v0.7.12)
|
|
1156
1110
|
|
|
1157
1111
|
**Closed issues:**
|
|
@@ -1199,6 +1153,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1199
1153
|
- 0.8 - OAuth fixes [\#304](https://github.com/feathersjs/authentication/pull/304) ([marshallswain](https://github.com/marshallswain))
|
|
1200
1154
|
|
|
1201
1155
|
## [v0.7.11](https://github.com/feathersjs/authentication/tree/v0.7.11) (2016-09-28)
|
|
1156
|
+
|
|
1202
1157
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.10...v0.7.11)
|
|
1203
1158
|
|
|
1204
1159
|
**Closed issues:**
|
|
@@ -1217,6 +1172,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1217
1172
|
- Allow multiple username fields for local auth [\#283](https://github.com/feathersjs/authentication/pull/283) ([sdbondi](https://github.com/sdbondi))
|
|
1218
1173
|
|
|
1219
1174
|
## [v0.7.10](https://github.com/feathersjs/authentication/tree/v0.7.10) (2016-08-31)
|
|
1175
|
+
|
|
1220
1176
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.9...v0.7.10)
|
|
1221
1177
|
|
|
1222
1178
|
**Fixed bugs:**
|
|
@@ -1229,7 +1185,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1229
1185
|
- Auth0 & featherjs authorization only [\#277](https://github.com/feathersjs/authentication/issues/277)
|
|
1230
1186
|
- Cannot read property 'scope' of undefined [\#273](https://github.com/feathersjs/authentication/issues/273)
|
|
1231
1187
|
- Socker.js | Custom successHandler [\#271](https://github.com/feathersjs/authentication/issues/271)
|
|
1232
|
-
- Use feathers-socketio? and rest&socket share session maybe?
|
|
1188
|
+
- Use feathers-socketio? and rest&socket share session maybe? [\#269](https://github.com/feathersjs/authentication/issues/269)
|
|
1233
1189
|
- Ability to invalidate old token/session when user login with another machine. [\#267](https://github.com/feathersjs/authentication/issues/267)
|
|
1234
1190
|
- 0.8 authentication before hooks - only ever getting a 401 Unauthorised [\#263](https://github.com/feathersjs/authentication/issues/263)
|
|
1235
1191
|
- REST Middleware breaks local auth [\#262](https://github.com/feathersjs/authentication/issues/262)
|
|
@@ -1259,6 +1215,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1259
1215
|
- Adds ability to limit queries unless authenticated and authorized [\#229](https://github.com/feathersjs/authentication/pull/229) ([codingfriend1](https://github.com/codingfriend1))
|
|
1260
1216
|
|
|
1261
1217
|
## [v0.7.9](https://github.com/feathersjs/authentication/tree/v0.7.9) (2016-06-20)
|
|
1218
|
+
|
|
1262
1219
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.8...v0.7.9)
|
|
1263
1220
|
|
|
1264
1221
|
**Fixed bugs:**
|
|
@@ -1276,6 +1233,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1276
1233
|
- jwt ssl warning [\#214](https://github.com/feathersjs/authentication/pull/214) ([aboutlo](https://github.com/aboutlo))
|
|
1277
1234
|
|
|
1278
1235
|
## [v0.7.8](https://github.com/feathersjs/authentication/tree/v0.7.8) (2016-06-09)
|
|
1236
|
+
|
|
1279
1237
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.7...v0.7.8)
|
|
1280
1238
|
|
|
1281
1239
|
**Closed issues:**
|
|
@@ -1300,6 +1258,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1300
1258
|
- 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))
|
|
1301
1259
|
|
|
1302
1260
|
## [v0.7.7](https://github.com/feathersjs/authentication/tree/v0.7.7) (2016-05-05)
|
|
1261
|
+
|
|
1303
1262
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.6...v0.7.7)
|
|
1304
1263
|
|
|
1305
1264
|
**Fixed bugs:**
|
|
@@ -1311,6 +1270,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1311
1270
|
- properly handle optional `\_json` property [\#197](https://github.com/feathersjs/authentication/pull/197) ([nyaaao](https://github.com/nyaaao))
|
|
1312
1271
|
|
|
1313
1272
|
## [v0.7.6](https://github.com/feathersjs/authentication/tree/v0.7.6) (2016-05-03)
|
|
1273
|
+
|
|
1314
1274
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.5...v0.7.6)
|
|
1315
1275
|
|
|
1316
1276
|
**Fixed bugs:**
|
|
@@ -1319,7 +1279,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1319
1279
|
|
|
1320
1280
|
**Closed issues:**
|
|
1321
1281
|
|
|
1322
|
-
- Authenticated user
|
|
1282
|
+
- Authenticated user [\#192](https://github.com/feathersjs/authentication/issues/192)
|
|
1323
1283
|
- REST token revoke [\#185](https://github.com/feathersjs/authentication/issues/185)
|
|
1324
1284
|
- TypeError: Cannot read property 'service' of undefined [\#173](https://github.com/feathersjs/authentication/issues/173)
|
|
1325
1285
|
- Optionally Include password in the params.query object passed to User.find\(\) [\#171](https://github.com/feathersjs/authentication/issues/171)
|
|
@@ -1333,6 +1293,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1333
1293
|
- fix\(oauth2\): Use patch to update user in oauthCallback [\#183](https://github.com/feathersjs/authentication/pull/183) ([beevelop](https://github.com/beevelop))
|
|
1334
1294
|
|
|
1335
1295
|
## [v0.7.5](https://github.com/feathersjs/authentication/tree/v0.7.5) (2016-04-23)
|
|
1296
|
+
|
|
1336
1297
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.4...v0.7.5)
|
|
1337
1298
|
|
|
1338
1299
|
**Fixed bugs:**
|
|
@@ -1345,6 +1306,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1345
1306
|
- Unable to authenticate requests when using vanilla Socket.IO [\#166](https://github.com/feathersjs/authentication/issues/166)
|
|
1346
1307
|
|
|
1347
1308
|
## [v0.7.4](https://github.com/feathersjs/authentication/tree/v0.7.4) (2016-04-18)
|
|
1309
|
+
|
|
1348
1310
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.3...v0.7.4)
|
|
1349
1311
|
|
|
1350
1312
|
**Fixed bugs:**
|
|
@@ -1362,9 +1324,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1362
1324
|
- Hook fixes [\#164](https://github.com/feathersjs/authentication/pull/164) ([ekryski](https://github.com/ekryski))
|
|
1363
1325
|
|
|
1364
1326
|
## [v0.7.3](https://github.com/feathersjs/authentication/tree/v0.7.3) (2016-04-16)
|
|
1327
|
+
|
|
1365
1328
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.2...v0.7.3)
|
|
1366
1329
|
|
|
1367
1330
|
## [v0.7.2](https://github.com/feathersjs/authentication/tree/v0.7.2) (2016-04-16)
|
|
1331
|
+
|
|
1368
1332
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.1...v0.7.2)
|
|
1369
1333
|
|
|
1370
1334
|
**Closed issues:**
|
|
@@ -1380,6 +1344,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1380
1344
|
- Steal Compatibility [\#156](https://github.com/feathersjs/authentication/pull/156) ([marshallswain](https://github.com/marshallswain))
|
|
1381
1345
|
|
|
1382
1346
|
## [v0.7.1](https://github.com/feathersjs/authentication/tree/v0.7.1) (2016-04-08)
|
|
1347
|
+
|
|
1383
1348
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.7.0...v0.7.1)
|
|
1384
1349
|
|
|
1385
1350
|
**Closed issues:**
|
|
@@ -1396,6 +1361,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1396
1361
|
- Fix copy paste typo in queryWithCurrentUser hook. [\#140](https://github.com/feathersjs/authentication/pull/140) ([juodumas](https://github.com/juodumas))
|
|
1397
1362
|
|
|
1398
1363
|
## [v0.7.0](https://github.com/feathersjs/authentication/tree/v0.7.0) (2016-03-30)
|
|
1364
|
+
|
|
1399
1365
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.6.0...v0.7.0)
|
|
1400
1366
|
|
|
1401
1367
|
**Fixed bugs:**
|
|
@@ -1426,6 +1392,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1426
1392
|
- 0.7 Release [\#139](https://github.com/feathersjs/authentication/pull/139) ([ekryski](https://github.com/ekryski))
|
|
1427
1393
|
|
|
1428
1394
|
## [v0.6.0](https://github.com/feathersjs/authentication/tree/v0.6.0) (2016-03-24)
|
|
1395
|
+
|
|
1429
1396
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.5.1...v0.6.0)
|
|
1430
1397
|
|
|
1431
1398
|
**Fixed bugs:**
|
|
@@ -1446,15 +1413,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1446
1413
|
**Merged pull requests:**
|
|
1447
1414
|
|
|
1448
1415
|
- Bcryptjs [\#137](https://github.com/feathersjs/authentication/pull/137) ([ekryski](https://github.com/ekryski))
|
|
1449
|
-
- Allow user.id to be 0.
|
|
1416
|
+
- Allow user.id to be 0. Fixes \#116 [\#117](https://github.com/feathersjs/authentication/pull/117) ([marshallswain](https://github.com/marshallswain))
|
|
1450
1417
|
- 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))
|
|
1451
1418
|
- v0.6 - Bugs fixes, new hooks, and hook tests [\#109](https://github.com/feathersjs/authentication/pull/109) ([ekryski](https://github.com/ekryski))
|
|
1452
1419
|
- primus client connect event is 'open' [\#106](https://github.com/feathersjs/authentication/pull/106) ([ahdinosaur](https://github.com/ahdinosaur))
|
|
1453
1420
|
|
|
1454
1421
|
## [v0.5.1](https://github.com/feathersjs/authentication/tree/v0.5.1) (2016-03-15)
|
|
1422
|
+
|
|
1455
1423
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.5.0...v0.5.1)
|
|
1456
1424
|
|
|
1457
1425
|
## [v0.5.0](https://github.com/feathersjs/authentication/tree/v0.5.0) (2016-03-14)
|
|
1426
|
+
|
|
1458
1427
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.4.1...v0.5.0)
|
|
1459
1428
|
|
|
1460
1429
|
**Fixed bugs:**
|
|
@@ -1480,6 +1449,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1480
1449
|
- Customize the JWT payload [\#80](https://github.com/feathersjs/authentication/pull/80) ([enten](https://github.com/enten))
|
|
1481
1450
|
|
|
1482
1451
|
## [v0.4.1](https://github.com/feathersjs/authentication/tree/v0.4.1) (2016-02-28)
|
|
1452
|
+
|
|
1483
1453
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.4.0...v0.4.1)
|
|
1484
1454
|
|
|
1485
1455
|
**Fixed bugs:**
|
|
@@ -1489,13 +1459,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1489
1459
|
**Closed issues:**
|
|
1490
1460
|
|
|
1491
1461
|
- Username response ? [\#84](https://github.com/feathersjs/authentication/issues/84)
|
|
1492
|
-
- User doesn't get populated after authentication with databases that don't use \_id
|
|
1462
|
+
- User doesn't get populated after authentication with databases that don't use \_id [\#71](https://github.com/feathersjs/authentication/issues/71)
|
|
1493
1463
|
- Support client usage in NodeJS [\#52](https://github.com/feathersjs/authentication/issues/52)
|
|
1494
1464
|
- Support async storage for React Native [\#51](https://github.com/feathersjs/authentication/issues/51)
|
|
1495
1465
|
- RequireAdmin on userService [\#36](https://github.com/feathersjs/authentication/issues/36)
|
|
1496
1466
|
- Create test for changing the `usernameField` [\#1](https://github.com/feathersjs/authentication/issues/1)
|
|
1497
1467
|
|
|
1498
1468
|
## [v0.4.0](https://github.com/feathersjs/authentication/tree/v0.4.0) (2016-02-27)
|
|
1469
|
+
|
|
1499
1470
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.5...v0.4.0)
|
|
1500
1471
|
|
|
1501
1472
|
**Closed issues:**
|
|
@@ -1507,6 +1478,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1507
1478
|
- Refactoring for storage service [\#76](https://github.com/feathersjs/authentication/pull/76) ([ekryski](https://github.com/ekryski))
|
|
1508
1479
|
|
|
1509
1480
|
## [v0.3.5](https://github.com/feathersjs/authentication/tree/v0.3.5) (2016-02-25)
|
|
1481
|
+
|
|
1510
1482
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.4...v0.3.5)
|
|
1511
1483
|
|
|
1512
1484
|
**Merged pull requests:**
|
|
@@ -1514,12 +1486,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1514
1486
|
- Adding support for OAuth2 token based auth strategies. Closes \#46. [\#77](https://github.com/feathersjs/authentication/pull/77) ([ekryski](https://github.com/ekryski))
|
|
1515
1487
|
|
|
1516
1488
|
## [v0.3.4](https://github.com/feathersjs/authentication/tree/v0.3.4) (2016-02-25)
|
|
1489
|
+
|
|
1517
1490
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.3...v0.3.4)
|
|
1518
1491
|
|
|
1519
1492
|
## [v0.3.3](https://github.com/feathersjs/authentication/tree/v0.3.3) (2016-02-25)
|
|
1493
|
+
|
|
1520
1494
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.2...v0.3.3)
|
|
1521
1495
|
|
|
1522
1496
|
## [v0.3.2](https://github.com/feathersjs/authentication/tree/v0.3.2) (2016-02-24)
|
|
1497
|
+
|
|
1523
1498
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.1...v0.3.2)
|
|
1524
1499
|
|
|
1525
1500
|
**Merged pull requests:**
|
|
@@ -1527,6 +1502,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1527
1502
|
- bumping feathers-errors version [\#79](https://github.com/feathersjs/authentication/pull/79) ([ekryski](https://github.com/ekryski))
|
|
1528
1503
|
|
|
1529
1504
|
## [v0.3.1](https://github.com/feathersjs/authentication/tree/v0.3.1) (2016-02-23)
|
|
1505
|
+
|
|
1530
1506
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.3.0...v0.3.1)
|
|
1531
1507
|
|
|
1532
1508
|
**Closed issues:**
|
|
@@ -1540,6 +1516,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1540
1516
|
- Fix toLowerCase hook [\#75](https://github.com/feathersjs/authentication/pull/75) ([enten](https://github.com/enten))
|
|
1541
1517
|
|
|
1542
1518
|
## [v0.3.0](https://github.com/feathersjs/authentication/tree/v0.3.0) (2016-02-19)
|
|
1519
|
+
|
|
1543
1520
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.4...v0.3.0)
|
|
1544
1521
|
|
|
1545
1522
|
**Fixed bugs:**
|
|
@@ -1557,6 +1534,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1557
1534
|
- Config options [\#70](https://github.com/feathersjs/authentication/pull/70) ([ekryski](https://github.com/ekryski))
|
|
1558
1535
|
|
|
1559
1536
|
## [v0.2.4](https://github.com/feathersjs/authentication/tree/v0.2.4) (2016-02-17)
|
|
1537
|
+
|
|
1560
1538
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.3...v0.2.4)
|
|
1561
1539
|
|
|
1562
1540
|
**Closed issues:**
|
|
@@ -1568,11 +1546,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1568
1546
|
- Add module exports Babel module and test CommonJS compatibility [\#68](https://github.com/feathersjs/authentication/pull/68) ([daffl](https://github.com/daffl))
|
|
1569
1547
|
|
|
1570
1548
|
## [v0.2.3](https://github.com/feathersjs/authentication/tree/v0.2.3) (2016-02-15)
|
|
1549
|
+
|
|
1571
1550
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.2...v0.2.3)
|
|
1572
1551
|
|
|
1573
1552
|
**Closed issues:**
|
|
1574
1553
|
|
|
1575
|
-
- How to forbid get and find on the userEndpoint?
|
|
1554
|
+
- How to forbid get and find on the userEndpoint? [\#66](https://github.com/feathersjs/authentication/issues/66)
|
|
1576
1555
|
- userEndpoint problem in sub-app [\#63](https://github.com/feathersjs/authentication/issues/63)
|
|
1577
1556
|
- How to modify successRedirect in local authentication? [\#60](https://github.com/feathersjs/authentication/issues/60)
|
|
1578
1557
|
|
|
@@ -1582,6 +1561,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1582
1561
|
- Fixing client query [\#65](https://github.com/feathersjs/authentication/pull/65) ([fastlorenzo](https://github.com/fastlorenzo))
|
|
1583
1562
|
|
|
1584
1563
|
## [v0.2.2](https://github.com/feathersjs/authentication/tree/v0.2.2) (2016-02-13)
|
|
1564
|
+
|
|
1585
1565
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.1...v0.2.2)
|
|
1586
1566
|
|
|
1587
1567
|
**Closed issues:**
|
|
@@ -1595,6 +1575,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1595
1575
|
- Fixing token endpoint [\#58](https://github.com/feathersjs/authentication/pull/58) ([marshallswain](https://github.com/marshallswain))
|
|
1596
1576
|
|
|
1597
1577
|
## [v0.2.1](https://github.com/feathersjs/authentication/tree/v0.2.1) (2016-02-12)
|
|
1578
|
+
|
|
1598
1579
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.2.0...v0.2.1)
|
|
1599
1580
|
|
|
1600
1581
|
**Closed issues:**
|
|
@@ -1603,6 +1584,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1603
1584
|
- node can not require\("feathers-authentication"\).default [\#53](https://github.com/feathersjs/authentication/issues/53)
|
|
1604
1585
|
|
|
1605
1586
|
## [v0.2.0](https://github.com/feathersjs/authentication/tree/v0.2.0) (2016-02-12)
|
|
1587
|
+
|
|
1606
1588
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.1.2...v0.2.0)
|
|
1607
1589
|
|
|
1608
1590
|
**Closed issues:**
|
|
@@ -1624,6 +1606,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1624
1606
|
- Validate if provider [\#39](https://github.com/feathersjs/authentication/pull/39) ([mastertinner](https://github.com/mastertinner))
|
|
1625
1607
|
|
|
1626
1608
|
## [v0.1.2](https://github.com/feathersjs/authentication/tree/v0.1.2) (2016-02-04)
|
|
1609
|
+
|
|
1627
1610
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.1.1...v0.1.2)
|
|
1628
1611
|
|
|
1629
1612
|
**Closed issues:**
|
|
@@ -1637,9 +1620,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1637
1620
|
- safety check for data [\#35](https://github.com/feathersjs/authentication/pull/35) ([deanmcpherson](https://github.com/deanmcpherson))
|
|
1638
1621
|
|
|
1639
1622
|
## [v0.1.1](https://github.com/feathersjs/authentication/tree/v0.1.1) (2016-01-30)
|
|
1623
|
+
|
|
1640
1624
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.1.0...v0.1.1)
|
|
1641
1625
|
|
|
1642
1626
|
## [v0.1.0](https://github.com/feathersjs/authentication/tree/v0.1.0) (2016-01-25)
|
|
1627
|
+
|
|
1643
1628
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.8...v0.1.0)
|
|
1644
1629
|
|
|
1645
1630
|
**Closed issues:**
|
|
@@ -1658,6 +1643,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1658
1643
|
- Adding nsp check [\#26](https://github.com/feathersjs/authentication/pull/26) ([marshallswain](https://github.com/marshallswain))
|
|
1659
1644
|
|
|
1660
1645
|
## [v0.0.8](https://github.com/feathersjs/authentication/tree/v0.0.8) (2016-01-16)
|
|
1646
|
+
|
|
1661
1647
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.7...v0.0.8)
|
|
1662
1648
|
|
|
1663
1649
|
**Merged pull requests:**
|
|
@@ -1665,11 +1651,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1665
1651
|
- Support services that use pagination. [\#23](https://github.com/feathersjs/authentication/pull/23) ([marshallswain](https://github.com/marshallswain))
|
|
1666
1652
|
|
|
1667
1653
|
## [v0.0.7](https://github.com/feathersjs/authentication/tree/v0.0.7) (2016-01-07)
|
|
1654
|
+
|
|
1668
1655
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.6...v0.0.7)
|
|
1669
1656
|
|
|
1670
1657
|
**Closed issues:**
|
|
1671
1658
|
|
|
1672
|
-
- Password isn't removed from responses when using a mongoose service for users endpoint
|
|
1659
|
+
- Password isn't removed from responses when using a mongoose service for users endpoint [\#19](https://github.com/feathersjs/authentication/issues/19)
|
|
1673
1660
|
- next called twice using socket.io and using an unauthenticated service [\#17](https://github.com/feathersjs/authentication/issues/17)
|
|
1674
1661
|
- Switch to a callback-based field configuration? [\#15](https://github.com/feathersjs/authentication/issues/15)
|
|
1675
1662
|
- Cannot authenticate [\#14](https://github.com/feathersjs/authentication/issues/14)
|
|
@@ -1678,12 +1665,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1678
1665
|
|
|
1679
1666
|
**Merged pull requests:**
|
|
1680
1667
|
|
|
1681
|
-
- Adding separate route for refreshing a login token.
|
|
1668
|
+
- Adding separate route for refreshing a login token. [\#21](https://github.com/feathersjs/authentication/pull/21) ([corymsmith](https://github.com/corymsmith))
|
|
1682
1669
|
- Converting user model to object when using mongoose service [\#20](https://github.com/feathersjs/authentication/pull/20) ([corymsmith](https://github.com/corymsmith))
|
|
1683
1670
|
- 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))
|
|
1684
1671
|
- Fixing usage of mongoose service [\#16](https://github.com/feathersjs/authentication/pull/16) ([corymsmith](https://github.com/corymsmith))
|
|
1685
1672
|
|
|
1686
1673
|
## [v0.0.6](https://github.com/feathersjs/authentication/tree/v0.0.6) (2015-11-22)
|
|
1674
|
+
|
|
1687
1675
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.5...v0.0.6)
|
|
1688
1676
|
|
|
1689
1677
|
**Closed issues:**
|
|
@@ -1692,12 +1680,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1692
1680
|
- Make sure we're returning proper error responses. [\#8](https://github.com/feathersjs/authentication/issues/8)
|
|
1693
1681
|
|
|
1694
1682
|
## [v0.0.5](https://github.com/feathersjs/authentication/tree/v0.0.5) (2015-11-19)
|
|
1683
|
+
|
|
1695
1684
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.4...v0.0.5)
|
|
1696
1685
|
|
|
1697
1686
|
## [v0.0.4](https://github.com/feathersjs/authentication/tree/v0.0.4) (2015-11-19)
|
|
1687
|
+
|
|
1698
1688
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v0.0.3...v0.0.4)
|
|
1699
1689
|
|
|
1700
1690
|
## [v0.0.3](https://github.com/feathersjs/authentication/tree/v0.0.3) (2015-11-18)
|
|
1691
|
+
|
|
1701
1692
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.6...v0.0.3)
|
|
1702
1693
|
|
|
1703
1694
|
**Merged pull requests:**
|
|
@@ -1705,15 +1696,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1705
1696
|
- allow runtime auth via socket.io [\#4](https://github.com/feathersjs/authentication/pull/4) ([randomnerd](https://github.com/randomnerd))
|
|
1706
1697
|
|
|
1707
1698
|
## [v1.0.6](https://github.com/feathersjs/authentication/tree/v1.0.6) (2015-11-02)
|
|
1699
|
+
|
|
1708
1700
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.5...v1.0.6)
|
|
1709
1701
|
|
|
1710
1702
|
## [v1.0.5](https://github.com/feathersjs/authentication/tree/v1.0.5) (2015-11-02)
|
|
1703
|
+
|
|
1711
1704
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.4...v1.0.5)
|
|
1712
1705
|
|
|
1713
1706
|
## [v1.0.4](https://github.com/feathersjs/authentication/tree/v1.0.4) (2015-11-02)
|
|
1707
|
+
|
|
1714
1708
|
[Full Changelog](https://github.com/feathersjs/authentication/compare/v1.0.3...v1.0.4)
|
|
1715
1709
|
|
|
1716
1710
|
## [v1.0.3](https://github.com/feathersjs/authentication/tree/v1.0.3) (2015-10-12)
|
|
1717
1711
|
|
|
1718
|
-
|
|
1719
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
|
1712
|
+
\* _This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)_
|