inversify 7.5.2 → 7.5.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
 
13
13
  ### Removed
14
14
 
15
+ ## [7.5.3]
16
+
17
+ ### Changed
18
+ - Updated `ServiceIdentifier` removing `Function` in favor of a new `AbstractNewable` type. ServiceIdentifier now uses AbstractNewable instead of Function to better represent abstract classes. This provides better type safety and semantics.
19
+
15
20
  ## [7.5.2]
16
21
 
17
22
  ### Changed
package/package.json CHANGED
@@ -5,34 +5,34 @@
5
5
  },
6
6
  "description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
7
7
  "dependencies": {
8
- "@inversifyjs/common": "1.5.0",
9
- "@inversifyjs/container": "1.10.1",
10
- "@inversifyjs/core": "5.3.1"
8
+ "@inversifyjs/common": "1.5.1",
9
+ "@inversifyjs/container": "1.10.2",
10
+ "@inversifyjs/core": "5.3.2"
11
11
  },
12
12
  "devDependencies": {
13
- "@eslint/js": "9.28.0",
13
+ "@eslint/js": "9.29.0",
14
14
  "@rollup/plugin-terser": "0.4.4",
15
- "@rollup/plugin-typescript": "12.1.2",
15
+ "@rollup/plugin-typescript": "12.1.3",
16
16
  "@types/chai": "4.3.20",
17
17
  "@types/mocha": "10.0.10",
18
18
  "@types/sinon": "17.0.4",
19
- "@typescript-eslint/eslint-plugin": "8.33.0",
20
- "@typescript-eslint/parser": "8.33.0",
19
+ "@typescript-eslint/eslint-plugin": "8.35.0",
20
+ "@typescript-eslint/parser": "8.35.0",
21
21
  "chai": "4.5.0",
22
- "eslint": "9.28.0",
22
+ "eslint": "9.29.0",
23
23
  "eslint-config-prettier": "10.1.5",
24
- "eslint-plugin-prettier": "5.4.1",
24
+ "eslint-plugin-prettier": "5.5.0",
25
25
  "eslint-plugin-simple-import-sort": "12.1.1",
26
- "mocha": "11.5.0",
26
+ "mocha": "11.7.1",
27
27
  "nyc": "17.1.0",
28
- "prettier": "3.5.3",
28
+ "prettier": "3.6.1",
29
29
  "rimraf": "6.0.1",
30
30
  "rollup-plugin-dts": "6.2.1",
31
- "sinon": "20.0.0",
31
+ "sinon": "21.0.0",
32
32
  "ts-loader": "9.5.2",
33
33
  "ts-node": "10.9.2",
34
34
  "typescript": "5.8.3",
35
- "typescript-eslint": "8.33.0"
35
+ "typescript-eslint": "8.35.0"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "reflect-metadata": "~0.2.2"
@@ -77,5 +77,5 @@
77
77
  "test:cjs": "nyc --reporter=lcov mocha lib/cjs/test/*.test.js lib/cjs/test/**/*.test.js --reporter spec"
78
78
  },
79
79
  "sideEffects": false,
80
- "version": "7.5.2"
80
+ "version": "7.5.3"
81
81
  }