@feathersjs/feathers 5.0.37 → 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 CHANGED
@@ -3,6 +3,14 @@
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
+
6
14
  ## [5.0.37](https://github.com/feathersjs/feathers/compare/v5.0.36...v5.0.37) (2025-11-10)
7
15
 
8
16
  **Note:** Version bump only for package @feathersjs/feathers
package/lib/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "5.0.37";
1
+ declare const _default: "5.0.39";
2
2
  export default _default;
package/lib/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '5.0.37';
3
+ exports.default = '5.0.39';
4
4
  //# sourceMappingURL=version.js.map
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.37",
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.37",
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": "^24.10.0",
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": "1d38e4a21e9ed5da31d524e5015f039b75668ec0"
73
+ "gitHead": "e4c0dac68b00615c7bc4724871375a14863a2447"
74
74
  }
@@ -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.37'
1
+ export default '5.0.39'