@feathersjs/feathers 5.0.36 → 5.0.39
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 +12 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +4 -4
- package/src/declarations.ts +1 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.39](https://github.com/feathersjs/feathers/compare/v5.0.38...v5.0.39) (2026-01-31)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
9
|
+
|
|
10
|
+
## [5.0.38](https://github.com/feathersjs/feathers/compare/v5.0.37...v5.0.38) (2026-01-31)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
13
|
+
|
|
14
|
+
## [5.0.37](https://github.com/feathersjs/feathers/compare/v5.0.36...v5.0.37) (2025-11-10)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @feathersjs/feathers
|
|
17
|
+
|
|
6
18
|
## [5.0.36](https://github.com/feathersjs/feathers/compare/v5.0.35...v5.0.36) (2025-11-08)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "5.0.
|
|
1
|
+
declare const _default: "5.0.39";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
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": "5.0.
|
|
4
|
+
"version": "5.0.39",
|
|
5
5
|
"homepage": "http://feathersjs.com",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -58,17 +58,17 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@feathersjs/commons": "^5.0.
|
|
61
|
+
"@feathersjs/commons": "^5.0.39",
|
|
62
62
|
"@feathersjs/hooks": "^0.9.0",
|
|
63
63
|
"events": "^3.3.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@types/mocha": "^10.0.10",
|
|
67
|
-
"@types/node": "^
|
|
67
|
+
"@types/node": "^25.1.0",
|
|
68
68
|
"mocha": "^11.7.5",
|
|
69
69
|
"shx": "^0.4.0",
|
|
70
70
|
"ts-node": "^10.9.2",
|
|
71
71
|
"typescript": "^5.9.3"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "e4c0dac68b00615c7bc4724871375a14863a2447"
|
|
74
74
|
}
|
package/src/declarations.ts
CHANGED
|
@@ -318,8 +318,7 @@ export interface FeathersApplication<Services = any, Settings = any> {
|
|
|
318
318
|
// This needs to be an interface instead of a type
|
|
319
319
|
// so that the declaration can be extended by other modules
|
|
320
320
|
export interface Application<Services = any, Settings = any>
|
|
321
|
-
extends FeathersApplication<Services, Settings>,
|
|
322
|
-
EventEmitter {}
|
|
321
|
+
extends FeathersApplication<Services, Settings>, EventEmitter {}
|
|
323
322
|
|
|
324
323
|
export type Id = number | string
|
|
325
324
|
export type NullableId = Id | null
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '5.0.
|
|
1
|
+
export default '5.0.39'
|