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