inversify 7.8.0 → 7.9.0

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 +11 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -10,6 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
 
11
11
  ### Changed
12
12
 
13
+ ## [7.9.0]
14
+
15
+ ### Changed
16
+
17
+ - Updated `decorate` to allow method parameter decoration.
18
+
19
+ ## [7.8.1]
20
+
21
+ ### Changed
22
+ - Fixed `injectFromHierarchy` avoiding crash when traversing `Object` metadata.
23
+
13
24
  ## [7.8.0]
14
25
 
15
26
  ### Added
package/package.json CHANGED
@@ -6,8 +6,8 @@
6
6
  "description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
7
7
  "dependencies": {
8
8
  "@inversifyjs/common": "1.5.2",
9
- "@inversifyjs/container": "1.12.4",
10
- "@inversifyjs/core": "7.1.0"
9
+ "@inversifyjs/container": "1.12.6",
10
+ "@inversifyjs/core": "7.2.0"
11
11
  },
12
12
  "devEngines": {
13
13
  "packageManager": {
@@ -29,8 +29,8 @@
29
29
  "@types/mocha": "10.0.10",
30
30
  "@types/node": "22.17.2",
31
31
  "@types/sinon": "17.0.4",
32
- "@typescript-eslint/eslint-plugin": "8.39.1",
33
- "@typescript-eslint/parser": "8.39.1",
32
+ "@typescript-eslint/eslint-plugin": "8.40.0",
33
+ "@typescript-eslint/parser": "8.40.0",
34
34
  "chai": "4.5.0",
35
35
  "eslint": "9.33.0",
36
36
  "eslint-config-prettier": "10.1.8",
@@ -40,14 +40,14 @@
40
40
  "nyc": "17.1.0",
41
41
  "prettier": "3.6.2",
42
42
  "rimraf": "6.0.1",
43
- "rollup": "4.46.2",
44
- "rollup-plugin-dts": "6.2.1",
43
+ "rollup": "4.46.4",
44
+ "rollup-plugin-dts": "6.2.3",
45
45
  "sinon": "21.0.0",
46
46
  "ts-loader": "9.5.2",
47
47
  "tslib": "2.8.1",
48
48
  "ts-node": "10.9.2",
49
49
  "typescript": "5.9.2",
50
- "typescript-eslint": "8.39.1"
50
+ "typescript-eslint": "8.40.0"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "reflect-metadata": "~0.2.2"
@@ -78,7 +78,7 @@
78
78
  "url": "https://github.com/inversify/InversifyJS.git"
79
79
  },
80
80
  "sideEffects": false,
81
- "version": "7.8.0",
81
+ "version": "7.9.0",
82
82
  "scripts": {
83
83
  "build": "pnpm run build:cjs && pnpm run build:esm",
84
84
  "build:cjs": "tsc --build tsconfig.cjs.json && node ./scripts/writeCommonJsPackageJson.mjs ./lib/cjs",