@feathersjs/feathers 4.5.15 → 4.5.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 CHANGED
@@ -3,6 +3,25 @@
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.17](https://github.com/feathersjs/feathers/compare/v4.5.16...v4.5.17) (2023-07-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** Ensure .service does not access Object properties ([#3240](https://github.com/feathersjs/feathers/issues/3240)) ([7969334](https://github.com/feathersjs/feathers/commit/7969334ae9d3cfb4ae0e63564a99a18454482cb0))
12
+
13
+
14
+
15
+
16
+
17
+ ## [4.5.16](https://github.com/feathersjs/feathers/compare/v4.5.15...v4.5.16) (2023-02-24)
18
+
19
+ **Note:** Version bump only for package @feathersjs/feathers
20
+
21
+
22
+
23
+
24
+
6
25
  ## [4.5.15](https://github.com/feathersjs/feathers/compare/v4.5.14...v4.5.15) (2022-05-17)
7
26
 
8
27
  **Note:** Version bump only for package @feathersjs/feathers
@@ -67,7 +67,7 @@ const application = {
67
67
  }
68
68
 
69
69
  const location = stripSlashes(path) || '/';
70
- const current = this.services[location];
70
+ const current = this.services.hasOwnProperty(location) ? this.services[location] : undefined
71
71
 
72
72
  if (typeof current === 'undefined' && typeof this.defaultService === 'function') {
73
73
  return this.use(location, this.defaultService(location))
package/lib/version.js CHANGED
@@ -1 +1 @@
1
- module.exports = '4.5.15';
1
+ module.exports = '4.5.17';
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.15",
4
+ "version": "4.5.17",
5
5
  "homepage": "http://feathersjs.com",
6
6
  "repository": {
7
7
  "type": "git",
@@ -54,7 +54,7 @@
54
54
  "access": "public"
55
55
  },
56
56
  "dependencies": {
57
- "@feathersjs/commons": "^4.5.15",
57
+ "@feathersjs/commons": "^4.5.16",
58
58
  "debug": "^4.3.3",
59
59
  "events": "^3.3.0",
60
60
  "uberproto": "^2.0.6"
@@ -62,5 +62,5 @@
62
62
  "devDependencies": {
63
63
  "mocha": "^9.1.3"
64
64
  },
65
- "gitHead": "d0e9600002975296ab8de926acd317d0a73fce5c"
65
+ "gitHead": "022a407dab1e813d23b283d145dfff9a870541ee"
66
66
  }