@feathersjs/feathers 5.0.0-pre.3 → 5.0.0-pre.31
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 +240 -208
- package/LICENSE +1 -1
- package/{readme.md → README.md} +2 -5
- package/lib/application.d.ts +20 -15
- package/lib/application.js +88 -44
- package/lib/application.js.map +1 -1
- package/lib/declarations.d.ts +162 -67
- package/lib/events.d.ts +2 -2
- package/lib/events.js +5 -6
- package/lib/events.js.map +1 -1
- package/lib/hooks.d.ts +38 -0
- package/lib/hooks.js +157 -0
- package/lib/hooks.js.map +1 -0
- package/lib/index.d.ts +2 -2
- package/lib/index.js +8 -4
- package/lib/index.js.map +1 -1
- package/lib/service.d.ts +1 -0
- package/lib/service.js +17 -8
- package/lib/service.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/version.js.map +1 -1
- package/package.json +17 -16
- package/src/application.ts +166 -99
- package/src/declarations.ts +231 -138
- package/src/events.ts +15 -15
- package/src/hooks.ts +215 -0
- package/src/index.ts +13 -12
- package/src/service.ts +34 -38
- package/src/version.ts +1 -1
- package/lib/dependencies.d.ts +0 -4
- package/lib/dependencies.js +0 -18
- package/lib/dependencies.js.map +0 -1
- package/lib/hooks/index.d.ts +0 -14
- package/lib/hooks/index.js +0 -84
- package/lib/hooks/index.js.map +0 -1
- package/lib/hooks/legacy.d.ts +0 -7
- package/lib/hooks/legacy.js +0 -114
- package/lib/hooks/legacy.js.map +0 -1
- package/src/dependencies.ts +0 -5
- package/src/hooks/index.ts +0 -109
- package/src/hooks/legacy.ts +0 -138
package/CHANGELOG.md
CHANGED
|
@@ -3,472 +3,447 @@
|
|
|
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-pre.
|
|
6
|
+
# [5.0.0-pre.31](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.30...v5.0.0-pre.31) (2022-10-12)
|
|
7
7
|
|
|
8
|
+
### Features
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
- **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))
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
# [5.0.0-pre.30](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.29...v5.0.0-pre.30) (2022-10-07)
|
|
12
13
|
|
|
14
|
+
### Bug Fixes
|
|
13
15
|
|
|
14
|
-
|
|
16
|
+
- **core:** Ensure setup and teardown can be overriden and maintain hook functionality ([#2779](https://github.com/feathersjs/feathers/issues/2779)) ([ab580cb](https://github.com/feathersjs/feathers/commit/ab580cbcaa68d19144d86798c13bf564f9d424a6))
|
|
15
17
|
|
|
16
|
-
|
|
17
|
-
* **dependencies:** Remove direct debug dependency ([#2296](https://github.com/feathersjs/feathers/issues/2296)) ([501d416](https://github.com/feathersjs/feathers/commit/501d4164d30c6a126906dc640cdfdc82207ba34a))
|
|
18
|
+
### Features
|
|
18
19
|
|
|
20
|
+
- **core:** Allow to unregister services at runtime ([#2756](https://github.com/feathersjs/feathers/issues/2756)) ([d16601f](https://github.com/feathersjs/feathers/commit/d16601f2277dca5357866ffdefba2a611f6dc7fa))
|
|
19
21
|
|
|
22
|
+
# [5.0.0-pre.29](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.28...v5.0.0-pre.29) (2022-09-16)
|
|
20
23
|
|
|
24
|
+
### Features
|
|
21
25
|
|
|
26
|
+
- **cli:** Adding ClientService to CLI ([#2750](https://github.com/feathersjs/feathers/issues/2750)) ([1d45427](https://github.com/feathersjs/feathers/commit/1d45427988521ac028755cbe128685fcdf34f636))
|
|
22
27
|
|
|
23
|
-
# [5.0.0-pre.
|
|
28
|
+
# [5.0.0-pre.28](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.27...v5.0.0-pre.28) (2022-08-03)
|
|
24
29
|
|
|
25
|
-
|
|
30
|
+
### Bug Fixes
|
|
26
31
|
|
|
32
|
+
- **cli:** Improve generated application and client ([#2701](https://github.com/feathersjs/feathers/issues/2701)) ([bd55ffb](https://github.com/feathersjs/feathers/commit/bd55ffb812e89bf215f4515e7f137656ea888c3f))
|
|
33
|
+
- **core:** Get hooks to work reliably with custom methods ([#2714](https://github.com/feathersjs/feathers/issues/2714)) ([8d7e04a](https://github.com/feathersjs/feathers/commit/8d7e04acd0f0e2af9f4c13efee652d296dd3bc51))
|
|
27
34
|
|
|
35
|
+
# [5.0.0-pre.27](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.26...v5.0.0-pre.27) (2022-07-13)
|
|
28
36
|
|
|
37
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
29
38
|
|
|
39
|
+
# [5.0.0-pre.26](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.25...v5.0.0-pre.26) (2022-06-22)
|
|
30
40
|
|
|
31
|
-
|
|
41
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
32
42
|
|
|
43
|
+
# [5.0.0-pre.25](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.24...v5.0.0-pre.25) (2022-06-22)
|
|
33
44
|
|
|
34
|
-
|
|
45
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
35
46
|
|
|
36
|
-
|
|
37
|
-
* **feathers:** Always enable hooks on default service methods ([#2275](https://github.com/feathersjs/feathers/issues/2275)) ([827cc9b](https://github.com/feathersjs/feathers/commit/827cc9b752eecdaf63605d7dffd86f531b7e4af3))
|
|
47
|
+
# [5.0.0-pre.24](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.23...v5.0.0-pre.24) (2022-06-21)
|
|
38
48
|
|
|
49
|
+
### Features
|
|
39
50
|
|
|
51
|
+
- **authentication-local:** Add passwordHash property resolver ([#2660](https://github.com/feathersjs/feathers/issues/2660)) ([b41279b](https://github.com/feathersjs/feathers/commit/b41279b55eea3771a6fa4983a37be2413287bbc6))
|
|
52
|
+
- **cli:** Add typed client to a generated app ([#2669](https://github.com/feathersjs/feathers/issues/2669)) ([5b801b5](https://github.com/feathersjs/feathers/commit/5b801b5017ddc3eaa95622b539f51d605916bc86))
|
|
40
53
|
|
|
54
|
+
# [5.0.0-pre.23](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.22...v5.0.0-pre.23) (2022-06-06)
|
|
41
55
|
|
|
56
|
+
### Features
|
|
42
57
|
|
|
43
|
-
|
|
58
|
+
- **client:** Improve client side custom method support ([#2654](https://github.com/feathersjs/feathers/issues/2654)) ([c138acf](https://github.com/feathersjs/feathers/commit/c138acf50affbe6b66177d084d3c7a3e9220f09f))
|
|
59
|
+
- **core:** Rename async hooks to around hooks, allow usual registration format ([#2652](https://github.com/feathersjs/feathers/issues/2652)) ([2a485a0](https://github.com/feathersjs/feathers/commit/2a485a07929184261f27437fc0fdfe5a44694834))
|
|
44
60
|
|
|
61
|
+
# [5.0.0-pre.22](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.21...v5.0.0-pre.22) (2022-05-24)
|
|
45
62
|
|
|
46
63
|
### Bug Fixes
|
|
47
64
|
|
|
48
|
-
|
|
49
|
-
* Update Grant usage and other dependencies ([#2264](https://github.com/feathersjs/feathers/issues/2264)) ([7b0f8fa](https://github.com/feathersjs/feathers/commit/7b0f8fad252419ed0ad0bf259cdf3104d322ab60))
|
|
65
|
+
- **schema:** Allows resolveData with different resolvers based on method ([#2644](https://github.com/feathersjs/feathers/issues/2644)) ([be71fa2](https://github.com/feathersjs/feathers/commit/be71fa2fe260e05b7dcc0d5f439e33f2e9ec2434))
|
|
50
66
|
|
|
67
|
+
# [5.0.0-pre.21](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.20...v5.0.0-pre.21) (2022-05-23)
|
|
51
68
|
|
|
52
|
-
###
|
|
53
|
-
|
|
54
|
-
* **core:** Public custom service methods ([#2270](https://github.com/feathersjs/feathers/issues/2270)) ([e65abfb](https://github.com/feathersjs/feathers/commit/e65abfb5388df6c19a11c565cf1076a29f32668d))
|
|
55
|
-
* Application service types default to any ([#1566](https://github.com/feathersjs/feathers/issues/1566)) ([d93ba9a](https://github.com/feathersjs/feathers/commit/d93ba9a17edd20d3397bb00f4f6e82e804e42ed6))
|
|
56
|
-
* Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
|
|
57
|
-
* **core:** Remove Uberproto ([#2178](https://github.com/feathersjs/feathers/issues/2178)) ([ddf8821](https://github.com/feathersjs/feathers/commit/ddf8821f53317e6a378657f7d66acb03a037ee47))
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### BREAKING CHANGES
|
|
69
|
+
### Bug Fixes
|
|
61
70
|
|
|
62
|
-
|
|
63
|
-
`service.mixin()` is no longer available.
|
|
71
|
+
- **core:** Do not throw missing method error for regular hook methods ([#2636](https://github.com/feathersjs/feathers/issues/2636)) ([afe9a3b](https://github.com/feathersjs/feathers/commit/afe9a3b3d49897eff045ee237ca2937a6b975291))
|
|
64
72
|
|
|
73
|
+
# [5.0.0-pre.20](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.19...v5.0.0-pre.20) (2022-05-04)
|
|
65
74
|
|
|
75
|
+
### Bug Fixes
|
|
66
76
|
|
|
77
|
+
- **dependencies:** Lock monorepo package version numbers ([#2623](https://github.com/feathersjs/feathers/issues/2623)) ([5640c10](https://github.com/feathersjs/feathers/commit/5640c1020cc139994e695d658c08bad3494db507))
|
|
67
78
|
|
|
79
|
+
# [5.0.0-pre.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)
|
|
68
80
|
|
|
69
|
-
|
|
81
|
+
### Features
|
|
70
82
|
|
|
83
|
+
- **typescript:** Improve adapter typings ([#2605](https://github.com/feathersjs/feathers/issues/2605)) ([3b2ca0a](https://github.com/feathersjs/feathers/commit/3b2ca0a6a8e03e8390272c4d7e930b4bffdaacf5))
|
|
84
|
+
- **typescript:** Improve params and query typeability ([#2600](https://github.com/feathersjs/feathers/issues/2600)) ([df28b76](https://github.com/feathersjs/feathers/commit/df28b7619161f1df5e700326f52cca1a92dc5d28))
|
|
71
85
|
|
|
86
|
+
# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)
|
|
72
87
|
|
|
73
|
-
|
|
88
|
+
### Bug Fixes
|
|
74
89
|
|
|
90
|
+
- **core:** Ensure that dynamically registered services are always set up ([#2593](https://github.com/feathersjs/feathers/issues/2593)) ([27cc7d0](https://github.com/feathersjs/feathers/commit/27cc7d08321861cd69e6b66e1fdfa43c50664820))
|
|
75
91
|
|
|
76
92
|
### Features
|
|
77
93
|
|
|
78
|
-
|
|
79
|
-
|
|
94
|
+
- **authentication:** Add setup method for auth strategies ([#1611](https://github.com/feathersjs/feathers/issues/1611)) ([a3c3581](https://github.com/feathersjs/feathers/commit/a3c35814dccdbbf6de96f04f60b226ce206c6dbe))
|
|
95
|
+
- **core:** Add app.setup and app.teardown hook support ([#2585](https://github.com/feathersjs/feathers/issues/2585)) ([ae4ebee](https://github.com/feathersjs/feathers/commit/ae4ebee5d39957651473007c4d3adb210160e040))
|
|
96
|
+
- **core:** Add app.teardown functionality ([#2570](https://github.com/feathersjs/feathers/issues/2570)) ([fcdf524](https://github.com/feathersjs/feathers/commit/fcdf524ae1995bb59265d39f12e98b7794bed023))
|
|
97
|
+
- **core:** Finalize app.teardown() functionality ([#2584](https://github.com/feathersjs/feathers/issues/2584)) ([1a166f3](https://github.com/feathersjs/feathers/commit/1a166f3ded811ecacf0ae8cb67880bc9fa2eeafa))
|
|
98
|
+
- **transport-commons:** add `context.http.response` ([#2524](https://github.com/feathersjs/feathers/issues/2524)) ([5bc9d44](https://github.com/feathersjs/feathers/commit/5bc9d447043c2e2b742c73ed28ecf3b3264dd9e5))
|
|
80
99
|
|
|
100
|
+
# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
|
|
81
101
|
|
|
102
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
82
103
|
|
|
104
|
+
# [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
|
|
83
105
|
|
|
106
|
+
### Features
|
|
84
107
|
|
|
85
|
-
|
|
108
|
+
- **express, koa:** make transports similar ([#2486](https://github.com/feathersjs/feathers/issues/2486)) ([26aa937](https://github.com/feathersjs/feathers/commit/26aa937c114fb8596dfefc599b1f53cead69c159))
|
|
86
109
|
|
|
110
|
+
# [5.0.0-pre.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
|
|
87
111
|
|
|
88
|
-
###
|
|
112
|
+
### Bug Fixes
|
|
89
113
|
|
|
90
|
-
|
|
91
|
-
* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))
|
|
114
|
+
- **typescript:** Overall typing improvements ([#2478](https://github.com/feathersjs/feathers/issues/2478)) ([b8eb804](https://github.com/feathersjs/feathers/commit/b8eb804158556d9651a8607e3c3fda15e0bfd110))
|
|
92
115
|
|
|
116
|
+
### Features
|
|
93
117
|
|
|
118
|
+
- **core:** add `context.http` and move `statusCode` there ([#2496](https://github.com/feathersjs/feathers/issues/2496)) ([b701bf7](https://github.com/feathersjs/feathers/commit/b701bf77fb83048aa1dffa492b3d77dd53f7b72b))
|
|
119
|
+
- **core:** Improve legacy hooks integration ([08c8b40](https://github.com/feathersjs/feathers/commit/08c8b40999bf3889c61a4d4fad97a2c4f78bafc9))
|
|
120
|
+
- **transport-commons:** Ability to register routes with custom params ([#2482](https://github.com/feathersjs/feathers/issues/2482)) ([497990a](https://github.com/feathersjs/feathers/commit/497990ae4a980e5a52a1f0f932db12cd0e6e254a))
|
|
94
121
|
|
|
95
|
-
|
|
122
|
+
# [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13)
|
|
96
123
|
|
|
97
124
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
98
125
|
|
|
126
|
+
# [5.0.0-pre.13](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.12...v5.0.0-pre.13) (2021-10-13)
|
|
99
127
|
|
|
128
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
100
129
|
|
|
130
|
+
# [5.0.0-pre.12](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.11...v5.0.0-pre.12) (2021-10-12)
|
|
101
131
|
|
|
132
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
102
133
|
|
|
103
|
-
|
|
104
|
-
|
|
134
|
+
# [5.0.0-pre.11](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.10...v5.0.0-pre.11) (2021-10-06)
|
|
105
135
|
|
|
106
136
|
### Bug Fixes
|
|
107
137
|
|
|
108
|
-
|
|
138
|
+
- **core:** Allow to return a new hook context in basic hooks ([#2462](https://github.com/feathersjs/feathers/issues/2462)) ([422b6fc](https://github.com/feathersjs/feathers/commit/422b6fc11cf9e42f4234f0823a0b06a4df50982d))
|
|
109
139
|
|
|
140
|
+
# [5.0.0-pre.10](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.9...v5.0.0-pre.10) (2021-09-19)
|
|
110
141
|
|
|
142
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
111
143
|
|
|
144
|
+
# [5.0.0-pre.9](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.8...v5.0.0-pre.9) (2021-08-09)
|
|
112
145
|
|
|
146
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
113
147
|
|
|
114
|
-
|
|
148
|
+
# [5.0.0-pre.8](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.7...v5.0.0-pre.8) (2021-08-09)
|
|
115
149
|
|
|
116
150
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
117
151
|
|
|
152
|
+
# [5.0.0-pre.7](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.6...v5.0.0-pre.7) (2021-08-09)
|
|
118
153
|
|
|
154
|
+
### Bug Fixes
|
|
119
155
|
|
|
156
|
+
- **core:** Clean up readme ([eb3b4f2](https://github.com/feathersjs/feathers/commit/eb3b4f248c0816c92a2300cceed18a6f2518508a))
|
|
157
|
+
- **core:** Set version back to development ([b328767](https://github.com/feathersjs/feathers/commit/b3287676cd773e164fd646ba4cffbf81983a9157))
|
|
120
158
|
|
|
121
|
-
|
|
122
|
-
## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12)
|
|
159
|
+
# [5.0.0-pre.6](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.5...v5.0.0-pre.6) (2021-08-08)
|
|
123
160
|
|
|
124
161
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
125
162
|
|
|
163
|
+
# [5.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.4...v5.0.0-pre.5) (2021-06-23)
|
|
126
164
|
|
|
165
|
+
### Bug Fixes
|
|
127
166
|
|
|
167
|
+
- **core:** Add list of protected methods that can not be used for custom methods ([#2390](https://github.com/feathersjs/feathers/issues/2390)) ([6584a21](https://github.com/feathersjs/feathers/commit/6584a216e5a7d5f2a45822be6bfcb91c35cc2252))
|
|
128
168
|
|
|
169
|
+
# [5.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.3...v5.0.0-pre.4) (2021-05-13)
|
|
129
170
|
|
|
130
|
-
|
|
171
|
+
### Bug Fixes
|
|
131
172
|
|
|
173
|
+
- **typescript:** Move Paginated type back for better compatibility ([#2350](https://github.com/feathersjs/feathers/issues/2350)) ([2917d05](https://github.com/feathersjs/feathers/commit/2917d05fffb4716d3c4cdaa5ac6a1aee0972e8a6))
|
|
132
174
|
|
|
133
|
-
|
|
175
|
+
# [5.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.2...v5.0.0-pre.3) (2021-04-21)
|
|
134
176
|
|
|
135
|
-
|
|
177
|
+
### Bug Fixes
|
|
136
178
|
|
|
179
|
+
- **typescript:** Improve TypeScript backwards compatibility ([#2310](https://github.com/feathersjs/feathers/issues/2310)) ([f33be73](https://github.com/feathersjs/feathers/commit/f33be73fc46a533efb15df9aab0658e3240d3897))
|
|
137
180
|
|
|
181
|
+
### Features
|
|
138
182
|
|
|
183
|
+
- **deno:** Feathers core build for Deno ([#2299](https://github.com/feathersjs/feathers/issues/2299)) ([dece8fb](https://github.com/feathersjs/feathers/commit/dece8fbc0e7601f1505ce8bbb1e4e69cc26e8f98))
|
|
184
|
+
- **dependencies:** Remove direct debug dependency ([#2296](https://github.com/feathersjs/feathers/issues/2296)) ([501d416](https://github.com/feathersjs/feathers/commit/501d4164d30c6a126906dc640cdfdc82207ba34a))
|
|
139
185
|
|
|
186
|
+
# [5.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.1...v5.0.0-pre.2) (2021-04-06)
|
|
140
187
|
|
|
141
|
-
|
|
188
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
142
189
|
|
|
190
|
+
# [5.0.0-beta.1](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-04-03)
|
|
143
191
|
|
|
144
192
|
### Bug Fixes
|
|
145
193
|
|
|
146
|
-
|
|
194
|
+
- **dependencies:** Fix transport-commons dependency and update other dependencies ([#2284](https://github.com/feathersjs/feathers/issues/2284)) ([05b03b2](https://github.com/feathersjs/feathers/commit/05b03b27b40604d956047e3021d8053c3a137616))
|
|
195
|
+
- **feathers:** Always enable hooks on default service methods ([#2275](https://github.com/feathersjs/feathers/issues/2275)) ([827cc9b](https://github.com/feathersjs/feathers/commit/827cc9b752eecdaf63605d7dffd86f531b7e4af3))
|
|
147
196
|
|
|
197
|
+
# [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
198
|
|
|
199
|
+
### Bug Fixes
|
|
149
200
|
|
|
201
|
+
- Resolve some type problems ([#2260](https://github.com/feathersjs/feathers/issues/2260)) ([a3d75fa](https://github.com/feathersjs/feathers/commit/a3d75fa29490e8a19412a12bc993ee7bb573068f))
|
|
202
|
+
- Update Grant usage and other dependencies ([#2264](https://github.com/feathersjs/feathers/issues/2264)) ([7b0f8fa](https://github.com/feathersjs/feathers/commit/7b0f8fad252419ed0ad0bf259cdf3104d322ab60))
|
|
150
203
|
|
|
204
|
+
### Features
|
|
151
205
|
|
|
152
|
-
|
|
206
|
+
- **core:** Public custom service methods ([#2270](https://github.com/feathersjs/feathers/issues/2270)) ([e65abfb](https://github.com/feathersjs/feathers/commit/e65abfb5388df6c19a11c565cf1076a29f32668d))
|
|
207
|
+
- Application service types default to any ([#1566](https://github.com/feathersjs/feathers/issues/1566)) ([d93ba9a](https://github.com/feathersjs/feathers/commit/d93ba9a17edd20d3397bb00f4f6e82e804e42ed6))
|
|
208
|
+
- Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
|
|
209
|
+
- **core:** Remove Uberproto ([#2178](https://github.com/feathersjs/feathers/issues/2178)) ([ddf8821](https://github.com/feathersjs/feathers/commit/ddf8821f53317e6a378657f7d66acb03a037ee47))
|
|
153
210
|
|
|
211
|
+
### BREAKING CHANGES
|
|
154
212
|
|
|
155
|
-
|
|
213
|
+
- **core:** Services no longer extend Uberproto objects and
|
|
214
|
+
`service.mixin()` is no longer available.
|
|
156
215
|
|
|
157
|
-
|
|
216
|
+
# [5.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.5.11...v5.0.0-pre.1) (2020-12-17)
|
|
158
217
|
|
|
218
|
+
# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
|
|
159
219
|
|
|
220
|
+
### Features
|
|
160
221
|
|
|
222
|
+
- **core:** Migrate @feathersjs/feathers to TypeScript ([#1963](https://github.com/feathersjs/feathers/issues/1963)) ([7812529](https://github.com/feathersjs/feathers/commit/7812529ff0f1008e21211f1d01efbc49795dbe55))
|
|
223
|
+
- **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))
|
|
161
224
|
|
|
225
|
+
# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
|
|
162
226
|
|
|
163
|
-
|
|
227
|
+
### Features
|
|
164
228
|
|
|
229
|
+
- **core:** Migrate @feathersjs/feathers to TypeScript ([#1963](https://github.com/feathersjs/feathers/issues/1963)) ([7812529](https://github.com/feathersjs/feathers/commit/7812529ff0f1008e21211f1d01efbc49795dbe55))
|
|
230
|
+
- **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))
|
|
165
231
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
* **typescript:** Make HookMap and HookObject generics. ([#1815](https://github.com/feathersjs/feathers/issues/1815)) ([d10145d](https://github.com/feathersjs/feathers/commit/d10145d91a09aef7bce5af80805a3c0fa9d94f26))
|
|
232
|
+
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
|
|
169
233
|
|
|
234
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
170
235
|
|
|
236
|
+
## [4.5.10](https://github.com/feathersjs/feathers/compare/v4.5.9...v4.5.10) (2020-11-08)
|
|
171
237
|
|
|
238
|
+
### Bug Fixes
|
|
172
239
|
|
|
240
|
+
- **typescript:** Add user property to the Params. ([#2090](https://github.com/feathersjs/feathers/issues/2090)) ([1e94265](https://github.com/feathersjs/feathers/commit/1e942651fbaaf07fc66c159225fbc992a0174bf4))
|
|
173
241
|
|
|
174
|
-
## [4.5.
|
|
242
|
+
## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09)
|
|
175
243
|
|
|
176
244
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
177
245
|
|
|
246
|
+
## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12)
|
|
178
247
|
|
|
248
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
179
249
|
|
|
250
|
+
## [4.5.7](https://github.com/feathersjs/feathers/compare/v4.5.6...v4.5.7) (2020-07-24)
|
|
180
251
|
|
|
252
|
+
### Bug Fixes
|
|
181
253
|
|
|
182
|
-
# [
|
|
254
|
+
- **typescript:** Revert add overload types for `find` service methods ([#1972](https://github.com/feathersjs/feathers/issues/1972))" ([#2025](https://github.com/feathersjs/feathers/issues/2025)) ([a9501ac](https://github.com/feathersjs/feathers/commit/a9501acb4d3ef58dfb87d62c57a9bf76569da281))
|
|
183
255
|
|
|
256
|
+
## [4.5.5](https://github.com/feathersjs/feathers/compare/v4.5.4...v4.5.5) (2020-07-11)
|
|
184
257
|
|
|
185
258
|
### Bug Fixes
|
|
186
259
|
|
|
187
|
-
|
|
188
|
-
|
|
260
|
+
- **typescript:** add overload types for `find` service methods ([#1972](https://github.com/feathersjs/feathers/issues/1972)) ([ef55af0](https://github.com/feathersjs/feathers/commit/ef55af088d05d9d36aba9d9f8d6c2c908a4f20dd))
|
|
189
261
|
|
|
262
|
+
## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)
|
|
190
263
|
|
|
264
|
+
### Bug Fixes
|
|
191
265
|
|
|
266
|
+
- **typescript:** Use stricter type for HookContext 'method' prop ([#1896](https://github.com/feathersjs/feathers/issues/1896)) ([24a41b7](https://github.com/feathersjs/feathers/commit/24a41b74486ddadccad18f3ae63afdac5bd373c7))
|
|
192
267
|
|
|
193
|
-
## [4.
|
|
268
|
+
## [4.5.2](https://github.com/feathersjs/feathers/compare/v4.5.1...v4.5.2) (2020-03-04)
|
|
194
269
|
|
|
195
|
-
|
|
270
|
+
### Bug Fixes
|
|
196
271
|
|
|
272
|
+
- **typescript:** Make HookMap and HookObject generics. ([#1815](https://github.com/feathersjs/feathers/issues/1815)) ([d10145d](https://github.com/feathersjs/feathers/commit/d10145d91a09aef7bce5af80805a3c0fa9d94f26))
|
|
197
273
|
|
|
274
|
+
## [4.5.1](https://github.com/feathersjs/feathers/compare/v4.5.0...v4.5.1) (2020-01-24)
|
|
198
275
|
|
|
276
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
199
277
|
|
|
278
|
+
# [4.5.0](https://github.com/feathersjs/feathers/compare/v4.4.3...v4.5.0) (2020-01-18)
|
|
200
279
|
|
|
201
|
-
|
|
280
|
+
### Bug Fixes
|
|
202
281
|
|
|
203
|
-
|
|
282
|
+
- Add `params.authentication` type, remove `hook.connection` type ([#1732](https://github.com/feathersjs/feathers/issues/1732)) ([d46b7b2](https://github.com/feathersjs/feathers/commit/d46b7b2abac8862c0e4dbfce20d71b8b8a96692f))
|
|
204
283
|
|
|
284
|
+
## [4.4.3](https://github.com/feathersjs/feathers/compare/v4.4.1...v4.4.3) (2019-12-06)
|
|
205
285
|
|
|
286
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
206
287
|
|
|
288
|
+
## [4.4.1](https://github.com/feathersjs/feathers/compare/v4.4.0...v4.4.1) (2019-11-27)
|
|
207
289
|
|
|
290
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
208
291
|
|
|
209
292
|
# [4.4.0](https://github.com/feathersjs/feathers/compare/v4.3.11...v4.4.0) (2019-11-27)
|
|
210
293
|
|
|
211
|
-
|
|
212
294
|
### Bug Fixes
|
|
213
295
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
296
|
+
- **core:** Improve hook missing parameter message by adding the service name ([#1703](https://github.com/feathersjs/feathers/issues/1703)) ([2331c2a](https://github.com/feathersjs/feathers/commit/2331c2a3dd70d432db7d62a76ed805d359cbbba5))
|
|
297
|
+
- **typescript:** Allow specific service typings for `Hook` and `HookContext` ([#1688](https://github.com/feathersjs/feathers/issues/1688)) ([f5d0ddd](https://github.com/feathersjs/feathers/commit/f5d0ddd9724bf5778355535d2103d59daaad6294))
|
|
220
298
|
|
|
221
299
|
## [4.3.11](https://github.com/feathersjs/feathers/compare/v4.3.10...v4.3.11) (2019-11-11)
|
|
222
300
|
|
|
223
301
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
224
302
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
303
|
## [4.3.10](https://github.com/feathersjs/feathers/compare/v4.3.9...v4.3.10) (2019-10-26)
|
|
230
304
|
|
|
231
305
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
232
306
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
307
|
## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26)
|
|
238
308
|
|
|
239
|
-
|
|
240
309
|
### Bug Fixes
|
|
241
310
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
311
|
+
- Small type improvements ([#1624](https://github.com/feathersjs/feathers/issues/1624)) ([50162c6](https://github.com/feathersjs/feathers/commit/50162c6e562f0a47c6a280c4f01fff7c3afee293))
|
|
247
312
|
|
|
248
313
|
## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14)
|
|
249
314
|
|
|
250
|
-
|
|
251
315
|
### Bug Fixes
|
|
252
316
|
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
317
|
+
- improve Service and AdapterService types ([#1567](https://github.com/feathersjs/feathers/issues/1567)) ([baad6a2](https://github.com/feathersjs/feathers/commit/baad6a26f0f543b712ccb40359b3933ad3a21392))
|
|
258
318
|
|
|
259
319
|
## [4.3.4](https://github.com/feathersjs/feathers/compare/v4.3.3...v4.3.4) (2019-10-03)
|
|
260
320
|
|
|
261
|
-
|
|
262
321
|
### Bug Fixes
|
|
263
322
|
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
323
|
+
- Reset version number after every publish ([#1596](https://github.com/feathersjs/feathers/issues/1596)) ([f24f82f](https://github.com/feathersjs/feathers/commit/f24f82f))
|
|
269
324
|
|
|
270
325
|
## [4.3.3](https://github.com/feathersjs/feathers/compare/v4.3.2...v4.3.3) (2019-09-21)
|
|
271
326
|
|
|
272
|
-
|
|
273
327
|
### Bug Fixes
|
|
274
328
|
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
329
|
+
- Small improvements in dependencies and code sturcture ([#1562](https://github.com/feathersjs/feathers/issues/1562)) ([42c13e2](https://github.com/feathersjs/feathers/commit/42c13e2))
|
|
280
330
|
|
|
281
331
|
## [4.3.2](https://github.com/feathersjs/feathers/compare/v4.3.1...v4.3.2) (2019-09-16)
|
|
282
332
|
|
|
283
333
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
284
334
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
335
|
## [4.3.1](https://github.com/feathersjs/feathers/compare/v4.3.0...v4.3.1) (2019-09-09)
|
|
290
336
|
|
|
291
337
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
292
338
|
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
339
|
# [4.3.0](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.4...v4.3.0) (2019-08-27)
|
|
298
340
|
|
|
299
341
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
300
342
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
343
|
# [4.3.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.3...v4.3.0-pre.4) (2019-08-22)
|
|
306
344
|
|
|
307
345
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
308
346
|
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
347
|
# [4.3.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.2...v4.3.0-pre.3) (2019-08-19)
|
|
314
348
|
|
|
315
349
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
316
350
|
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
351
|
# [4.3.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.1...v4.3.0-pre.2) (2019-08-02)
|
|
322
352
|
|
|
323
|
-
|
|
324
353
|
### Bug Fixes
|
|
325
354
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
355
|
+
- Improve Params typing ([#1474](https://github.com/feathersjs/feathers/issues/1474)) ([54a3aa7](https://github.com/feathersjs/feathers/commit/54a3aa7))
|
|
331
356
|
|
|
332
357
|
# [4.3.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.5...v4.3.0-pre.1) (2019-07-11)
|
|
333
358
|
|
|
334
359
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
335
360
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
361
|
# [4.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.4...v4.0.0-pre.5) (2019-07-10)
|
|
341
362
|
|
|
342
363
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
343
364
|
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
365
|
# [4.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.3...v4.0.0-pre.4) (2019-07-05)
|
|
349
366
|
|
|
350
|
-
|
|
351
367
|
### Bug Fixes
|
|
352
368
|
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
369
|
+
- Clean up hooks code ([#1407](https://github.com/feathersjs/feathers/issues/1407)) ([f25c88b](https://github.com/feathersjs/feathers/commit/f25c88b))
|
|
370
|
+
- Fix @feathersjs/feathers typings http import ([abbc07b](https://github.com/feathersjs/feathers/commit/abbc07b))
|
|
371
|
+
- Updated typings for ServiceMethods ([#1409](https://github.com/feathersjs/feathers/issues/1409)) ([b5ee7e2](https://github.com/feathersjs/feathers/commit/b5ee7e2))
|
|
360
372
|
|
|
361
373
|
# [4.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.2...v4.0.0-pre.3) (2019-06-01)
|
|
362
374
|
|
|
363
|
-
|
|
364
375
|
### Bug Fixes
|
|
365
376
|
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
377
|
+
- Typings fix and improvements. ([#1364](https://github.com/feathersjs/feathers/issues/1364)) ([515b916](https://github.com/feathersjs/feathers/commit/515b916))
|
|
378
|
+
- Update dependencies and fix tests ([#1373](https://github.com/feathersjs/feathers/issues/1373)) ([d743a7f](https://github.com/feathersjs/feathers/commit/d743a7f))
|
|
372
379
|
|
|
373
380
|
# [4.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.1...v4.0.0-pre.2) (2019-05-15)
|
|
374
381
|
|
|
375
|
-
|
|
376
382
|
### Bug Fixes
|
|
377
383
|
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
384
|
+
- **typescript:** finally should be optional ([#1350](https://github.com/feathersjs/feathers/issues/1350)) ([f439a9e](https://github.com/feathersjs/feathers/commit/f439a9e))
|
|
385
|
+
- Fix versioning tests. Closes [#1346](https://github.com/feathersjs/feathers/issues/1346) ([dd519f6](https://github.com/feathersjs/feathers/commit/dd519f6))
|
|
386
|
+
- Use `export =` in TypeScript definitions ([#1285](https://github.com/feathersjs/feathers/issues/1285)) ([12d0f4b](https://github.com/feathersjs/feathers/commit/12d0f4b))
|
|
385
387
|
|
|
386
388
|
# [4.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.0...v4.0.0-pre.1) (2019-05-08)
|
|
387
389
|
|
|
388
|
-
|
|
389
390
|
### Bug Fixes
|
|
390
391
|
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
392
|
+
- Update version number check ([53575c5](https://github.com/feathersjs/feathers/commit/53575c5))
|
|
393
|
+
- Updated HooksObject typings ([#1300](https://github.com/feathersjs/feathers/issues/1300)) ([b28058c](https://github.com/feathersjs/feathers/commit/b28058c))
|
|
397
394
|
|
|
398
395
|
# [4.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v3.2.0-pre.1...v4.0.0-pre.0) (2019-04-21)
|
|
399
396
|
|
|
400
|
-
|
|
401
397
|
### Bug Fixes
|
|
402
398
|
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
399
|
+
- Do not inherit app object from Object prototype ([#1153](https://github.com/feathersjs/feathers/issues/1153)) ([ed8c2e4](https://github.com/feathersjs/feathers/commit/ed8c2e4))
|
|
400
|
+
- Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
|
|
401
|
+
- Normalize params to object even when it is falsy ([#1012](https://github.com/feathersjs/feathers/issues/1012)) ([af97818](https://github.com/feathersjs/feathers/commit/af97818))
|
|
402
|
+
- Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
|
|
403
|
+
- Update all dependencies to latest ([#1206](https://github.com/feathersjs/feathers/issues/1206)) ([e51e0f6](https://github.com/feathersjs/feathers/commit/e51e0f6))
|
|
409
404
|
|
|
410
405
|
### Features
|
|
411
406
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
407
|
+
- Add TypeScript definitions ([#1275](https://github.com/feathersjs/feathers/issues/1275)) ([9dd6713](https://github.com/feathersjs/feathers/commit/9dd6713))
|
|
408
|
+
- Allow registering a service at the root level ([#1115](https://github.com/feathersjs/feathers/issues/1115)) ([c73d322](https://github.com/feathersjs/feathers/commit/c73d322))
|
|
409
|
+
- Allow to skip sending service events ([#1270](https://github.com/feathersjs/feathers/issues/1270)) ([b487bbd](https://github.com/feathersjs/feathers/commit/b487bbd))
|
|
410
|
+
- Remove (hook, next) signature and SKIP support ([#1269](https://github.com/feathersjs/feathers/issues/1269)) ([211c0f8](https://github.com/feathersjs/feathers/commit/211c0f8))
|
|
420
411
|
|
|
421
412
|
## [3.3.1](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.3.0...@feathersjs/feathers@3.3.1) (2019-01-02)
|
|
422
413
|
|
|
423
|
-
|
|
424
414
|
### Bug Fixes
|
|
425
415
|
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
416
|
+
- Do not inherit app object from Object prototype ([#1153](https://github.com/feathersjs/feathers/issues/1153)) ([ed8c2e4](https://github.com/feathersjs/feathers/commit/ed8c2e4))
|
|
417
|
+
- Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
|
|
432
418
|
|
|
433
419
|
<a name="3.3.0"></a>
|
|
434
|
-
# [3.3.0](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.2.3...@feathersjs/feathers@3.3.0) (2018-12-16)
|
|
435
420
|
|
|
421
|
+
# [3.3.0](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.2.3...@feathersjs/feathers@3.3.0) (2018-12-16)
|
|
436
422
|
|
|
437
423
|
### Bug Fixes
|
|
438
424
|
|
|
439
|
-
|
|
440
|
-
|
|
425
|
+
- Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
|
|
441
426
|
|
|
442
427
|
### Features
|
|
443
428
|
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
429
|
+
- Allow registering a service at the root level ([#1115](https://github.com/feathersjs/feathers/issues/1115)) ([c73d322](https://github.com/feathersjs/feathers/commit/c73d322))
|
|
449
430
|
|
|
450
431
|
<a name="3.2.3"></a>
|
|
451
|
-
## [3.2.3](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.2.2...@feathersjs/feathers@3.2.3) (2018-09-21)
|
|
452
432
|
|
|
433
|
+
## [3.2.3](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.2.2...@feathersjs/feathers@3.2.3) (2018-09-21)
|
|
453
434
|
|
|
454
435
|
### Bug Fixes
|
|
455
436
|
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
437
|
+
- Normalize params to object even when it is falsy ([#1012](https://github.com/feathersjs/feathers/issues/1012)) ([af97818](https://github.com/feathersjs/feathers/commit/af97818))
|
|
461
438
|
|
|
462
439
|
<a name="3.2.2"></a>
|
|
440
|
+
|
|
463
441
|
## [3.2.2](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.2.1...@feathersjs/feathers@3.2.2) (2018-09-17)
|
|
464
442
|
|
|
465
443
|
**Note:** Version bump only for package @feathersjs/feathers
|
|
466
444
|
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
445
|
<a name="3.2.1"></a>
|
|
446
|
+
|
|
472
447
|
## [3.2.1](https://github.com/feathersjs/feathers/compare/@feathersjs/express@1.2.4...@feathersjs/feather@3.2.1) (2018-09-02)
|
|
473
448
|
|
|
474
449
|
**Note:** Version bump only for package @feathersjs/express
|
|
@@ -476,6 +451,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
476
451
|
- Migrate to Monorepo ([feathers#462](https://github.com/feathersjs/feathers/issues/462))
|
|
477
452
|
|
|
478
453
|
## [v3.2.0](https://github.com/feathersjs/feathers/tree/v3.2.0-pre.1) (2018-08-19)
|
|
454
|
+
|
|
479
455
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.1.7...v3.2.0-pre.1)
|
|
480
456
|
|
|
481
457
|
**Merged pull requests:**
|
|
@@ -485,6 +461,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
485
461
|
- Allow adding hooks to other service methods [\#924](https://github.com/feathersjs/feathers/pull/924) ([bertho-zero](https://github.com/bertho-zero))
|
|
486
462
|
|
|
487
463
|
## [v3.1.7](https://github.com/feathersjs/feathers/tree/v3.1.7) (2018-06-16)
|
|
464
|
+
|
|
488
465
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.1.6...v3.1.7)
|
|
489
466
|
|
|
490
467
|
**Merged pull requests:**
|
|
@@ -492,6 +469,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
492
469
|
- Update to latest Uberproto and other dependencies [\#889](https://github.com/feathersjs/feathers/pull/889) ([daffl](https://github.com/daffl))
|
|
493
470
|
|
|
494
471
|
## [v3.1.6](https://github.com/feathersjs/feathers/tree/v3.1.6) (2018-06-03)
|
|
472
|
+
|
|
495
473
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.1.5...v3.1.6)
|
|
496
474
|
|
|
497
475
|
**Merged pull requests:**
|
|
@@ -502,6 +480,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
502
480
|
- Add Greenkeeper badge 🌴 [\#867](https://github.com/feathersjs/feathers/pull/867) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
503
481
|
|
|
504
482
|
## [v3.1.5](https://github.com/feathersjs/feathers/tree/v3.1.5) (2018-05-04)
|
|
483
|
+
|
|
505
484
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.1.4...v3.1.5)
|
|
506
485
|
|
|
507
486
|
**Merged pull requests:**
|
|
@@ -509,6 +488,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
509
488
|
- Allow methods to return a null result [\#865](https://github.com/feathersjs/feathers/pull/865) ([bertho-zero](https://github.com/bertho-zero))
|
|
510
489
|
|
|
511
490
|
## [v3.1.4](https://github.com/feathersjs/feathers/tree/v3.1.4) (2018-03-26)
|
|
491
|
+
|
|
512
492
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.1.3...v3.1.4)
|
|
513
493
|
|
|
514
494
|
**Merged pull requests:**
|
|
@@ -516,6 +496,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
516
496
|
- Make sure error hooks always have the original context information [\#842](https://github.com/feathersjs/feathers/pull/842) ([daffl](https://github.com/daffl))
|
|
517
497
|
|
|
518
498
|
## [v3.1.3](https://github.com/feathersjs/feathers/tree/v3.1.3) (2018-02-16)
|
|
499
|
+
|
|
519
500
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.1.2...v3.1.3)
|
|
520
501
|
|
|
521
502
|
**Merged pull requests:**
|
|
@@ -523,6 +504,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
523
504
|
- Update events to the latest version 🚀 [\#810](https://github.com/feathersjs/feathers/pull/810) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
524
505
|
|
|
525
506
|
## [v3.1.2](https://github.com/feathersjs/feathers/tree/v3.1.2) (2018-02-10)
|
|
507
|
+
|
|
526
508
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.1.1...v3.1.2)
|
|
527
509
|
|
|
528
510
|
**Merged pull requests:**
|
|
@@ -530,6 +512,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
530
512
|
- Handle errors in error hooks properly [\#819](https://github.com/feathersjs/feathers/pull/819) ([daffl](https://github.com/daffl))
|
|
531
513
|
|
|
532
514
|
## [v3.1.1](https://github.com/feathersjs/feathers/tree/v3.1.1) (2018-02-08)
|
|
515
|
+
|
|
533
516
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.1.0...v3.1.1)
|
|
534
517
|
|
|
535
518
|
**Merged pull requests:**
|
|
@@ -538,6 +521,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
538
521
|
- Add Russian Telegram community [\#814](https://github.com/feathersjs/feathers/pull/814) ([vodniciarv](https://github.com/vodniciarv))
|
|
539
522
|
|
|
540
523
|
## [v3.1.0](https://github.com/feathersjs/feathers/tree/v3.1.0) (2018-01-26)
|
|
524
|
+
|
|
541
525
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.5...v3.1.0)
|
|
542
526
|
|
|
543
527
|
**Merged pull requests:**
|
|
@@ -546,6 +530,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
546
530
|
- Add ability to skip all following hooks [\#792](https://github.com/feathersjs/feathers/pull/792) ([sylvainlap](https://github.com/sylvainlap))
|
|
547
531
|
|
|
548
532
|
## [v3.0.5](https://github.com/feathersjs/feathers/tree/v3.0.5) (2018-01-04)
|
|
533
|
+
|
|
549
534
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.2.4...v3.0.5)
|
|
550
535
|
|
|
551
536
|
**Merged pull requests:**
|
|
@@ -553,9 +538,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
553
538
|
- Add backers & sponsors from Open Collective [\#504](https://github.com/feathersjs/feathers/pull/504) ([piamancini](https://github.com/piamancini))
|
|
554
539
|
|
|
555
540
|
## [v2.2.4](https://github.com/feathersjs/feathers/tree/v2.2.4) (2018-01-04)
|
|
541
|
+
|
|
556
542
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.4...v2.2.4)
|
|
557
543
|
|
|
558
544
|
## [v3.0.4](https://github.com/feathersjs/feathers/tree/v3.0.4) (2018-01-03)
|
|
545
|
+
|
|
559
546
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.3...v3.0.4)
|
|
560
547
|
|
|
561
548
|
**Merged pull requests:**
|
|
@@ -563,6 +550,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
563
550
|
- Update Readme to correspond with latest release [\#772](https://github.com/feathersjs/feathers/pull/772) ([daffl](https://github.com/daffl))
|
|
564
551
|
|
|
565
552
|
## [v3.0.3](https://github.com/feathersjs/feathers/tree/v3.0.3) (2018-01-02)
|
|
553
|
+
|
|
566
554
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.2...v3.0.3)
|
|
567
555
|
|
|
568
556
|
**Merged pull requests:**
|
|
@@ -571,6 +559,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
571
559
|
- Update semistandard to the latest version 🚀 [\#768](https://github.com/feathersjs/feathers/pull/768) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
572
560
|
|
|
573
561
|
## [v3.0.2](https://github.com/feathersjs/feathers/tree/v3.0.2) (2017-12-05)
|
|
562
|
+
|
|
574
563
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.1...v3.0.2)
|
|
575
564
|
|
|
576
565
|
**Merged pull requests:**
|
|
@@ -578,6 +567,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
578
567
|
- Updated to handle array emit for service results. [\#743](https://github.com/feathersjs/feathers/pull/743) ([superlazycoder](https://github.com/superlazycoder))
|
|
579
568
|
|
|
580
569
|
## [v3.0.1](https://github.com/feathersjs/feathers/tree/v3.0.1) (2017-11-16)
|
|
570
|
+
|
|
581
571
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.0...v3.0.1)
|
|
582
572
|
|
|
583
573
|
**Merged pull requests:**
|
|
@@ -589,6 +579,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
589
579
|
- Rename expressify to express [\#719](https://github.com/feathersjs/feathers/pull/719) ([bertho-zero](https://github.com/bertho-zero))
|
|
590
580
|
|
|
591
581
|
## [v3.0.0](https://github.com/feathersjs/feathers/tree/v3.0.0) (2017-11-01)
|
|
582
|
+
|
|
592
583
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.0-pre.3...v3.0.0)
|
|
593
584
|
|
|
594
585
|
**Merged pull requests:**
|
|
@@ -597,6 +588,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
597
588
|
- Feathers v3 core \(Buzzard\) [\#697](https://github.com/feathersjs/feathers/pull/697) ([daffl](https://github.com/daffl))
|
|
598
589
|
|
|
599
590
|
## [v3.0.0-pre.3](https://github.com/feathersjs/feathers/tree/v3.0.0-pre.3) (2017-10-25)
|
|
591
|
+
|
|
600
592
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.0-pre.2...v3.0.0-pre.3)
|
|
601
593
|
|
|
602
594
|
**Merged pull requests:**
|
|
@@ -606,6 +598,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
606
598
|
- Add more inline documentation [\#703](https://github.com/feathersjs/feathers/pull/703) ([daffl](https://github.com/daffl))
|
|
607
599
|
|
|
608
600
|
## [v3.0.0-pre.2](https://github.com/feathersjs/feathers/tree/v3.0.0-pre.2) (2017-10-20)
|
|
601
|
+
|
|
609
602
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.2.3...v3.0.0-pre.2)
|
|
610
603
|
|
|
611
604
|
**Merged pull requests:**
|
|
@@ -614,6 +607,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
614
607
|
- Also pass app object as parameter to configure callbacks [\#698](https://github.com/feathersjs/feathers/pull/698) ([daffl](https://github.com/daffl))
|
|
615
608
|
|
|
616
609
|
## [v2.2.3](https://github.com/feathersjs/feathers/tree/v2.2.3) (2017-10-20)
|
|
610
|
+
|
|
617
611
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.2.2...v2.2.3)
|
|
618
612
|
|
|
619
613
|
**Merged pull requests:**
|
|
@@ -625,6 +619,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
625
619
|
- Update mocha to the latest version 🚀 [\#685](https://github.com/feathersjs/feathers/pull/685) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
626
620
|
|
|
627
621
|
## [v2.2.2](https://github.com/feathersjs/feathers/tree/v2.2.2) (2017-09-30)
|
|
622
|
+
|
|
628
623
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.2.1...v2.2.2)
|
|
629
624
|
|
|
630
625
|
**Merged pull requests:**
|
|
@@ -632,6 +627,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
632
627
|
- Update to latest secure dependencies [\#684](https://github.com/feathersjs/feathers/pull/684) ([daffl](https://github.com/daffl))
|
|
633
628
|
|
|
634
629
|
## [v2.2.1](https://github.com/feathersjs/feathers/tree/v2.2.1) (2017-09-25)
|
|
630
|
+
|
|
635
631
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.2.0...v2.2.1)
|
|
636
632
|
|
|
637
633
|
**Merged pull requests:**
|
|
@@ -640,6 +636,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
640
636
|
- Update readme.md [\#668](https://github.com/feathersjs/feathers/pull/668) ([damosse31](https://github.com/damosse31))
|
|
641
637
|
|
|
642
638
|
## [v2.2.0](https://github.com/feathersjs/feathers/tree/v2.2.0) (2017-09-01)
|
|
639
|
+
|
|
643
640
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v3.0.0-pre.1...v2.2.0)
|
|
644
641
|
|
|
645
642
|
**Merged pull requests:**
|
|
@@ -649,6 +646,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
649
646
|
- Examples url is tinny \(broken\) [\#634](https://github.com/feathersjs/feathers/pull/634) ([rayfoss](https://github.com/rayfoss))
|
|
650
647
|
|
|
651
648
|
## [v3.0.0-pre.1](https://github.com/feathersjs/feathers/tree/v3.0.0-pre.1) (2017-07-19)
|
|
649
|
+
|
|
652
650
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.1.7...v3.0.0-pre.1)
|
|
653
651
|
|
|
654
652
|
**Merged pull requests:**
|
|
@@ -656,9 +654,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
656
654
|
- Add a missing configure\(\) method in typescript definition [\#624](https://github.com/feathersjs/feathers/pull/624) ([jansel369](https://github.com/jansel369))
|
|
657
655
|
|
|
658
656
|
## [v2.1.7](https://github.com/feathersjs/feathers/tree/v2.1.7) (2017-07-16)
|
|
657
|
+
|
|
659
658
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.1.6...v2.1.7)
|
|
660
659
|
|
|
661
660
|
## [v2.1.6](https://github.com/feathersjs/feathers/tree/v2.1.6) (2017-07-16)
|
|
661
|
+
|
|
662
662
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.1.4...v2.1.6)
|
|
663
663
|
|
|
664
664
|
**Merged pull requests:**
|
|
@@ -672,6 +672,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
672
672
|
- Update index.d.ts [\#603](https://github.com/feathersjs/feathers/pull/603) ([j2L4e](https://github.com/j2L4e))
|
|
673
673
|
|
|
674
674
|
## [v2.1.4](https://github.com/feathersjs/feathers/tree/v2.1.4) (2017-06-26)
|
|
675
|
+
|
|
675
676
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.1.3...v2.1.4)
|
|
676
677
|
|
|
677
678
|
**Merged pull requests:**
|
|
@@ -683,6 +684,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
683
684
|
- Revert update to security links [\#590](https://github.com/feathersjs/feathers/pull/590) ([alaycock](https://github.com/alaycock))
|
|
684
685
|
|
|
685
686
|
## [v2.1.3](https://github.com/feathersjs/feathers/tree/v2.1.3) (2017-05-29)
|
|
687
|
+
|
|
686
688
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.1.2...v2.1.3)
|
|
687
689
|
|
|
688
690
|
**Merged pull requests:**
|
|
@@ -691,6 +693,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
691
693
|
- Update feathers-socketio to the latest version 🚀 [\#576](https://github.com/feathersjs/feathers/pull/576) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
|
|
692
694
|
|
|
693
695
|
## [v2.1.2](https://github.com/feathersjs/feathers/tree/v2.1.2) (2017-05-09)
|
|
696
|
+
|
|
694
697
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.1.1...v2.1.2)
|
|
695
698
|
|
|
696
699
|
**Merged pull requests:**
|
|
@@ -701,6 +704,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
701
704
|
- Fix pagination type definition. [\#527](https://github.com/feathersjs/feathers/pull/527) ([asdacap](https://github.com/asdacap))
|
|
702
705
|
|
|
703
706
|
## [v2.1.1](https://github.com/feathersjs/feathers/tree/v2.1.1) (2017-03-03)
|
|
707
|
+
|
|
704
708
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.1.0...v2.1.1)
|
|
705
709
|
|
|
706
710
|
**Merged pull requests:**
|
|
@@ -708,6 +712,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
708
712
|
- No Pagination in Typescript \#520 [\#522](https://github.com/feathersjs/feathers/pull/522) ([superbarne](https://github.com/superbarne))
|
|
709
713
|
|
|
710
714
|
## [v2.1.0](https://github.com/feathersjs/feathers/tree/v2.1.0) (2017-03-01)
|
|
715
|
+
|
|
711
716
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.0.3...v2.1.0)
|
|
712
717
|
|
|
713
718
|
**Merged pull requests:**
|
|
@@ -717,6 +722,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
717
722
|
- debug@2.4.0 breaks build 🚨 [\#476](https://github.com/feathersjs/feathers/pull/476) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
|
|
718
723
|
|
|
719
724
|
## [v2.0.3](https://github.com/feathersjs/feathers/tree/v2.0.3) (2016-12-10)
|
|
725
|
+
|
|
720
726
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.0.2...v2.0.3)
|
|
721
727
|
|
|
722
728
|
**Merged pull requests:**
|
|
@@ -732,6 +738,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
732
738
|
- adding code coverage config, badges and LTS section [\#427](https://github.com/feathersjs/feathers/pull/427) ([ekryski](https://github.com/ekryski))
|
|
733
739
|
|
|
734
740
|
## [v2.0.2](https://github.com/feathersjs/feathers/tree/v2.0.2) (2016-09-15)
|
|
741
|
+
|
|
735
742
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.0.1...v2.0.2)
|
|
736
743
|
|
|
737
744
|
**Merged pull requests:**
|
|
@@ -745,6 +752,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
745
752
|
- Set rejectUnauthorized explicitly [\#321](https://github.com/feathersjs/feathers/pull/321) ([daffl](https://github.com/daffl))
|
|
746
753
|
|
|
747
754
|
## [v2.0.1](https://github.com/feathersjs/feathers/tree/v2.0.1) (2016-04-28)
|
|
755
|
+
|
|
748
756
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.0.0...v2.0.1)
|
|
749
757
|
|
|
750
758
|
**Merged pull requests:**
|
|
@@ -757,6 +765,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
757
765
|
- New site [\#252](https://github.com/feathersjs/feathers/pull/252) ([ekryski](https://github.com/ekryski))
|
|
758
766
|
|
|
759
767
|
## [v2.0.0](https://github.com/feathersjs/feathers/tree/v2.0.0) (2016-02-22)
|
|
768
|
+
|
|
760
769
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.0.0-pre.4...v2.0.0)
|
|
761
770
|
|
|
762
771
|
**Merged pull requests:**
|
|
@@ -767,6 +776,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
767
776
|
- Appending `nsp check` to test script. [\#205](https://github.com/feathersjs/feathers/pull/205) ([marshallswain](https://github.com/marshallswain))
|
|
768
777
|
|
|
769
778
|
## [v2.0.0-pre.4](https://github.com/feathersjs/feathers/tree/v2.0.0-pre.4) (2016-01-16)
|
|
779
|
+
|
|
770
780
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.0.0-pre.3...v2.0.0-pre.4)
|
|
771
781
|
|
|
772
782
|
**Merged pull requests:**
|
|
@@ -774,6 +784,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
774
784
|
- Fixing .npmignore entries [\#203](https://github.com/feathersjs/feathers/pull/203) ([corymsmith](https://github.com/corymsmith))
|
|
775
785
|
|
|
776
786
|
## [v2.0.0-pre.3](https://github.com/feathersjs/feathers/tree/v2.0.0-pre.3) (2016-01-16)
|
|
787
|
+
|
|
777
788
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.0.0-pre.2...v2.0.0-pre.3)
|
|
778
789
|
|
|
779
790
|
**Merged pull requests:**
|
|
@@ -783,6 +794,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
783
794
|
- Update feathers-commons to version 0.5.0 🚀 [\#198](https://github.com/feathersjs/feathers/pull/198) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
|
|
784
795
|
|
|
785
796
|
## [v2.0.0-pre.2](https://github.com/feathersjs/feathers/tree/v2.0.0-pre.2) (2016-01-10)
|
|
797
|
+
|
|
786
798
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v2.0.0-pre.1...v2.0.0-pre.2)
|
|
787
799
|
|
|
788
800
|
**Merged pull requests:**
|
|
@@ -791,6 +803,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
791
803
|
- Remove Lodash [\#192](https://github.com/feathersjs/feathers/pull/192) ([daffl](https://github.com/daffl))
|
|
792
804
|
|
|
793
805
|
## [v2.0.0-pre.1](https://github.com/feathersjs/feathers/tree/v2.0.0-pre.1) (2016-01-05)
|
|
806
|
+
|
|
794
807
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v1.3.0...v2.0.0-pre.1)
|
|
795
808
|
|
|
796
809
|
**Merged pull requests:**
|
|
@@ -798,9 +811,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
798
811
|
- Migration to ES6 and API providers in separate modules [\#188](https://github.com/feathersjs/feathers/pull/188) ([daffl](https://github.com/daffl))
|
|
799
812
|
|
|
800
813
|
## [v1.3.0](https://github.com/feathersjs/feathers/tree/v1.3.0) (2015-12-16)
|
|
814
|
+
|
|
801
815
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v1.2.1...v1.3.0)
|
|
802
816
|
|
|
803
817
|
## [v1.2.1](https://github.com/feathersjs/feathers/tree/v1.2.1) (2015-12-12)
|
|
818
|
+
|
|
804
819
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v1.2.0...v1.2.1)
|
|
805
820
|
|
|
806
821
|
**Merged pull requests:**
|
|
@@ -810,6 +825,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
810
825
|
- Adding tests to make sure that dispatcher context is set properly. [\#172](https://github.com/feathersjs/feathers/pull/172) ([daffl](https://github.com/daffl))
|
|
811
826
|
|
|
812
827
|
## [v1.2.0](https://github.com/feathersjs/feathers/tree/v1.2.0) (2015-11-07)
|
|
828
|
+
|
|
813
829
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v1.1.1...v1.2.0)
|
|
814
830
|
|
|
815
831
|
**Merged pull requests:**
|
|
@@ -819,6 +835,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
819
835
|
- Debug should be for socket.io instead of primus [\#147](https://github.com/feathersjs/feathers/pull/147) ([marshallswain](https://github.com/marshallswain))
|
|
820
836
|
|
|
821
837
|
## [v1.1.1](https://github.com/feathersjs/feathers/tree/v1.1.1) (2015-09-22)
|
|
838
|
+
|
|
822
839
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/v1.1.0...v1.1.1)
|
|
823
840
|
|
|
824
841
|
**Merged pull requests:**
|
|
@@ -826,6 +843,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
826
843
|
- Fix 404 not being properly thrown by REST provider [\#146](https://github.com/feathersjs/feathers/pull/146) ([loris](https://github.com/loris))
|
|
827
844
|
|
|
828
845
|
## [v1.1.0](https://github.com/feathersjs/feathers/tree/v1.1.0) (2015-07-22)
|
|
846
|
+
|
|
829
847
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/1.1.0-pre.0...v1.1.0)
|
|
830
848
|
|
|
831
849
|
**Merged pull requests:**
|
|
@@ -835,6 +853,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
835
853
|
- Allow to register remote services [\#136](https://github.com/feathersjs/feathers/pull/136) ([daffl](https://github.com/daffl))
|
|
836
854
|
|
|
837
855
|
## [1.1.0-pre.0](https://github.com/feathersjs/feathers/tree/1.1.0-pre.0) (2015-04-10)
|
|
856
|
+
|
|
838
857
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/1.0.2...1.1.0-pre.0)
|
|
839
858
|
|
|
840
859
|
**Merged pull requests:**
|
|
@@ -853,6 +872,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
853
872
|
- Support for registering services dynamically [\#107](https://github.com/feathersjs/feathers/pull/107) ([marshallswain](https://github.com/marshallswain))
|
|
854
873
|
|
|
855
874
|
## [1.0.2](https://github.com/feathersjs/feathers/tree/1.0.2) (2015-02-04)
|
|
875
|
+
|
|
856
876
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/1.0.1...1.0.2)
|
|
857
877
|
|
|
858
878
|
**Merged pull requests:**
|
|
@@ -861,6 +881,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
861
881
|
- Make sure that mixins are specific to each new app [\#104](https://github.com/feathersjs/feathers/pull/104) ([daffl](https://github.com/daffl))
|
|
862
882
|
|
|
863
883
|
## [1.0.1](https://github.com/feathersjs/feathers/tree/1.0.1) (2014-12-31)
|
|
884
|
+
|
|
864
885
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/1.0.0...1.0.1)
|
|
865
886
|
|
|
866
887
|
**Merged pull requests:**
|
|
@@ -868,6 +889,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
868
889
|
- Rename Uberproto .create to avoid conflicts with service method [\#100](https://github.com/feathersjs/feathers/pull/100) ([daffl](https://github.com/daffl))
|
|
869
890
|
|
|
870
891
|
## [1.0.0](https://github.com/feathersjs/feathers/tree/1.0.0) (2014-10-03)
|
|
892
|
+
|
|
871
893
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/1.0.0-pre.5...1.0.0)
|
|
872
894
|
|
|
873
895
|
**Merged pull requests:**
|
|
@@ -887,6 +909,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
887
909
|
- Upgrade to Express 4 [\#55](https://github.com/feathersjs/feathers/pull/55) ([daffl](https://github.com/daffl))
|
|
888
910
|
|
|
889
911
|
## [1.0.0-pre.5](https://github.com/feathersjs/feathers/tree/1.0.0-pre.5) (2014-06-13)
|
|
912
|
+
|
|
890
913
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/1.0.0-pre.1...1.0.0-pre.5)
|
|
891
914
|
|
|
892
915
|
**Merged pull requests:**
|
|
@@ -894,9 +917,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
894
917
|
- requiring feathers-errors in core [\#81](https://github.com/feathersjs/feathers/pull/81) ([ekryski](https://github.com/ekryski))
|
|
895
918
|
|
|
896
919
|
## [1.0.0-pre.1](https://github.com/feathersjs/feathers/tree/1.0.0-pre.1) (2014-06-04)
|
|
920
|
+
|
|
897
921
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.4.0...1.0.0-pre.1)
|
|
898
922
|
|
|
899
923
|
## [0.4.0](https://github.com/feathersjs/feathers/tree/0.4.0) (2014-04-08)
|
|
924
|
+
|
|
900
925
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.3.2...0.4.0)
|
|
901
926
|
|
|
902
927
|
**Merged pull requests:**
|
|
@@ -908,6 +933,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
908
933
|
- Added patch support [\#47](https://github.com/feathersjs/feathers/pull/47) ([mlaug](https://github.com/mlaug))
|
|
909
934
|
|
|
910
935
|
## [0.3.2](https://github.com/feathersjs/feathers/tree/0.3.2) (2014-03-28)
|
|
936
|
+
|
|
911
937
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.3.1...0.3.2)
|
|
912
938
|
|
|
913
939
|
**Merged pull requests:**
|
|
@@ -916,13 +942,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
916
942
|
- Upgrading dependencies and switching to Lodash [\#42](https://github.com/feathersjs/feathers/pull/42) ([daffl](https://github.com/daffl))
|
|
917
943
|
|
|
918
944
|
## [0.3.1](https://github.com/feathersjs/feathers/tree/0.3.1) (2014-02-19)
|
|
945
|
+
|
|
919
946
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.3.0...0.3.1)
|
|
920
947
|
|
|
921
948
|
**Merged pull requests:**
|
|
922
949
|
|
|
923
|
-
- Updating REST provider
|
|
950
|
+
- Updating REST provider [\#35](https://github.com/feathersjs/feathers/pull/35) ([daffl](https://github.com/daffl))
|
|
924
951
|
|
|
925
952
|
## [0.3.0](https://github.com/feathersjs/feathers/tree/0.3.0) (2014-01-06)
|
|
953
|
+
|
|
926
954
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.2.0...0.3.0)
|
|
927
955
|
|
|
928
956
|
**Merged pull requests:**
|
|
@@ -932,6 +960,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
932
960
|
- Remove middleware: connect.bodyParser\(\) [\#27](https://github.com/feathersjs/feathers/pull/27) ([sbruchmann](https://github.com/sbruchmann))
|
|
933
961
|
|
|
934
962
|
## [0.2.0](https://github.com/feathersjs/feathers/tree/0.2.0) (2013-09-27)
|
|
963
|
+
|
|
935
964
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.1.0...0.2.0)
|
|
936
965
|
|
|
937
966
|
**Merged pull requests:**
|
|
@@ -940,12 +969,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
940
969
|
- Allows setting service params in middleware [\#17](https://github.com/feathersjs/feathers/pull/17) ([daffl](https://github.com/daffl))
|
|
941
970
|
|
|
942
971
|
## [0.1.0](https://github.com/feathersjs/feathers/tree/0.1.0) (2013-08-27)
|
|
972
|
+
|
|
943
973
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.0.5...0.1.0)
|
|
944
974
|
|
|
945
975
|
## [0.0.5](https://github.com/feathersjs/feathers/tree/0.0.5) (2013-08-27)
|
|
976
|
+
|
|
946
977
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.0.4...0.0.5)
|
|
947
978
|
|
|
948
979
|
## [0.0.4](https://github.com/feathersjs/feathers/tree/0.0.4) (2013-08-27)
|
|
980
|
+
|
|
949
981
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.0.3...0.0.4)
|
|
950
982
|
|
|
951
983
|
**Merged pull requests:**
|
|
@@ -953,6 +985,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
953
985
|
- Major refactoring and simplification [\#16](https://github.com/feathersjs/feathers/pull/16) ([daffl](https://github.com/daffl))
|
|
954
986
|
|
|
955
987
|
## [0.0.3](https://github.com/feathersjs/feathers/tree/0.0.3) (2013-08-26)
|
|
988
|
+
|
|
956
989
|
[Full Changelog](https://github.com/feathersjs/feathers/compare/0.0.2...0.0.3)
|
|
957
990
|
|
|
958
991
|
**Merged pull requests:**
|
|
@@ -960,10 +993,9 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
960
993
|
- Improved Mixin organization, updated tests and examples. [\#15](https://github.com/feathersjs/feathers/pull/15) ([daffl](https://github.com/daffl))
|
|
961
994
|
|
|
962
995
|
## [0.0.2](https://github.com/feathersjs/feathers/tree/0.0.2) (2013-07-13)
|
|
996
|
+
|
|
963
997
|
**Merged pull requests:**
|
|
964
998
|
|
|
965
999
|
- Added a couple examples. Started to add a mongo adapter. [\#2](https://github.com/feathersjs/feathers/pull/2) ([ekryski](https://github.com/ekryski))
|
|
966
1000
|
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
|
1001
|
+
\* _This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)_
|