@feathersjs/express 5.0.0-pre.16 → 5.0.0-pre.17
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 +11 -0
- package/LICENSE +1 -1
- package/README.md +1 -2
- package/lib/declarations.d.ts +1 -1
- package/package.json +16 -16
- package/src/declarations.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **express:** Fix application typings to work with typed configuration ([#2539](https://github.com/feathersjs/feathers/issues/2539)) ([b9dfaee](https://github.com/feathersjs/feathers/commit/b9dfaee834b13864c1ed4f2f6a244eb5bb70395b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
|
|
7
18
|
|
|
8
19
|
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# @feathersjs/express
|
|
2
2
|
|
|
3
3
|
[](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
|
|
4
|
-
[](https://david-dm.org/feathersjs/feathers?path=packages/express)
|
|
5
4
|
[](https://www.npmjs.com/package/@feathersjs/express)
|
|
6
5
|
|
|
7
6
|
> Feathers Express framework bindings and REST provider
|
|
@@ -18,6 +17,6 @@ Refer to the [Feathers Express API documentation](https://docs.feathersjs.com/ap
|
|
|
18
17
|
|
|
19
18
|
## License
|
|
20
19
|
|
|
21
|
-
Copyright (c)
|
|
20
|
+
Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
|
|
22
21
|
|
|
23
22
|
Licensed under the [MIT license](LICENSE).
|
package/lib/declarations.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export interface ExpressOverrides<Services> {
|
|
|
15
15
|
listen(callback?: () => void): Promise<http.Server>;
|
|
16
16
|
use: ExpressUseHandler<this, Services>;
|
|
17
17
|
}
|
|
18
|
-
export declare type Application<Services = any, Settings = any> = Omit<Express, 'listen' | 'use'> & FeathersApplication<Services, Settings> & ExpressOverrides<Services>;
|
|
18
|
+
export declare type Application<Services = any, Settings = any> = Omit<Express, 'listen' | 'use' | 'get' | 'set'> & FeathersApplication<Services, Settings> & ExpressOverrides<Services>;
|
|
19
19
|
declare module '@feathersjs/feathers/lib/declarations' {
|
|
20
20
|
interface ServiceOptions {
|
|
21
21
|
express?: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feathersjs/express",
|
|
3
3
|
"description": "Feathers Express framework bindings and REST provider",
|
|
4
|
-
"version": "5.0.0-pre.
|
|
4
|
+
"version": "5.0.0-pre.17",
|
|
5
5
|
"homepage": "https://feathersjs.com",
|
|
6
6
|
"main": "lib/",
|
|
7
7
|
"keywords": [
|
|
@@ -49,27 +49,27 @@
|
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@feathersjs/authentication": "^5.0.0-pre.
|
|
53
|
-
"@feathersjs/commons": "^5.0.0-pre.
|
|
54
|
-
"@feathersjs/errors": "^5.0.0-pre.
|
|
55
|
-
"@feathersjs/feathers": "^5.0.0-pre.
|
|
56
|
-
"@feathersjs/transport-commons": "^5.0.0-pre.
|
|
52
|
+
"@feathersjs/authentication": "^5.0.0-pre.17",
|
|
53
|
+
"@feathersjs/commons": "^5.0.0-pre.17",
|
|
54
|
+
"@feathersjs/errors": "^5.0.0-pre.17",
|
|
55
|
+
"@feathersjs/feathers": "^5.0.0-pre.17",
|
|
56
|
+
"@feathersjs/transport-commons": "^5.0.0-pre.17",
|
|
57
57
|
"@types/express": "^4.17.13",
|
|
58
|
-
"@types/express-serve-static-core": "^4.17.
|
|
58
|
+
"@types/express-serve-static-core": "^4.17.28",
|
|
59
59
|
"express": "^4.17.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@feathersjs/authentication-local": "^5.0.0-pre.
|
|
63
|
-
"@feathersjs/tests": "^5.0.0-pre.
|
|
62
|
+
"@feathersjs/authentication-local": "^5.0.0-pre.17",
|
|
63
|
+
"@feathersjs/tests": "^5.0.0-pre.17",
|
|
64
64
|
"@types/lodash": "^4.14.178",
|
|
65
|
-
"@types/mocha": "^9.
|
|
66
|
-
"@types/node": "^17.0.
|
|
67
|
-
"axios": "^0.
|
|
65
|
+
"@types/mocha": "^9.1.0",
|
|
66
|
+
"@types/node": "^17.0.15",
|
|
67
|
+
"axios": "^0.25.0",
|
|
68
68
|
"lodash": "^4.17.21",
|
|
69
|
-
"mocha": "^9.
|
|
70
|
-
"shx": "^0.3.
|
|
69
|
+
"mocha": "^9.2.0",
|
|
70
|
+
"shx": "^0.3.4",
|
|
71
71
|
"ts-node": "^10.4.0",
|
|
72
|
-
"typescript": "^4.5.
|
|
72
|
+
"typescript": "^4.5.5"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "d828748e57b40abfaa15710663afed417de14a1d"
|
|
75
75
|
}
|
package/src/declarations.ts
CHANGED
|
@@ -27,7 +27,7 @@ export interface ExpressOverrides<Services> {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export type Application<Services = any, Settings = any> =
|
|
30
|
-
Omit<Express, 'listen'|'use'> &
|
|
30
|
+
Omit<Express, 'listen'|'use'|'get'|'set'> &
|
|
31
31
|
FeathersApplication<Services, Settings> &
|
|
32
32
|
ExpressOverrides<Services>;
|
|
33
33
|
|