@feathersjs/feathers 4.5.8 → 4.5.12
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 +38 -0
- package/index.d.ts +2 -1
- package/lib/version.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,44 @@
|
|
|
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
|
+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [4.5.10](https://github.com/feathersjs/feathers/compare/v4.5.9...v4.5.10) (2020-11-08)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **typescript:** Add user property to the Params. ([#2090](https://github.com/feathersjs/feathers/issues/2090)) ([1e94265](https://github.com/feathersjs/feathers/commit/1e942651fbaaf07fc66c159225fbc992a0174bf4))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12)
|
|
7
45
|
|
|
8
46
|
**Note:** Version bump only for package @feathersjs/feathers
|
package/index.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ declare namespace createApplication {
|
|
|
42
42
|
provider?: string;
|
|
43
43
|
route?: {[key: string]: string};
|
|
44
44
|
headers?: {[key: string]: any};
|
|
45
|
+
user?: {[key: string]: any};
|
|
45
46
|
|
|
46
47
|
[key: string]: any; // (JL) not sure if we want this
|
|
47
48
|
}
|
|
@@ -54,7 +55,7 @@ declare namespace createApplication {
|
|
|
54
55
|
}
|
|
55
56
|
|
|
56
57
|
// tslint:disable-next-line void-return
|
|
57
|
-
type Hook<T = any, S = Service<T>> = (
|
|
58
|
+
type Hook<T = any, S = Service<T>> = (context: HookContext<T, S>) => (Promise<HookContext<T, S> | void> | HookContext<T, S> | void);
|
|
58
59
|
|
|
59
60
|
interface HookContext<T = any, S = Service<T>> {
|
|
60
61
|
/**
|
package/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = '4.5.
|
|
1
|
+
module.exports = '4.5.12';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feathersjs/feathers",
|
|
3
3
|
"description": "A framework for real-time applications and REST API with JavaScript and TypeScript",
|
|
4
|
-
"version": "4.5.
|
|
4
|
+
"version": "4.5.12",
|
|
5
5
|
"homepage": "http://feathersjs.com",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@feathersjs/commons": "^4.5.
|
|
58
|
-
"debug": "^4.
|
|
59
|
-
"events": "^3.
|
|
57
|
+
"@feathersjs/commons": "^4.5.12",
|
|
58
|
+
"debug": "^4.3.3",
|
|
59
|
+
"events": "^3.3.0",
|
|
60
60
|
"uberproto": "^2.0.6"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"mocha": "^
|
|
63
|
+
"mocha": "^9.1.3"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "8697ecc85808437e9aab63e5d2327679340c5401"
|
|
66
66
|
}
|