inversify 7.4.0 → 7.5.1

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 +13 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -12,6 +12,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
 
13
13
  ### Removed
14
14
 
15
+ ## [7.5.1]
16
+
17
+ ### Changed
18
+ - Updated `Container.get` like methods to properly set bindings when autobind mode is set:
19
+ - `@injectable` scopes properly handled.
20
+ - Autobind mode no longer creates duplicated bindings.
21
+
22
+ ## [7.5.0]
23
+
24
+ ### Changed
25
+ - Updated `Container` with `unloadSync`.
26
+ - Updated `Container` with `loadSync`.
27
+
15
28
  ## [7.4.0]
16
29
 
17
30
  ### Changed
package/package.json CHANGED
@@ -6,22 +6,22 @@
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.0",
9
- "@inversifyjs/container": "1.8.0",
10
- "@inversifyjs/core": "5.1.0"
9
+ "@inversifyjs/container": "1.9.1",
10
+ "@inversifyjs/core": "5.2.0"
11
11
  },
12
12
  "devDependencies": {
13
- "@eslint/js": "9.23.0",
13
+ "@eslint/js": "9.24.0",
14
14
  "@rollup/plugin-terser": "0.4.4",
15
15
  "@rollup/plugin-typescript": "12.1.2",
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.29.0",
20
- "@typescript-eslint/parser": "8.29.0",
19
+ "@typescript-eslint/eslint-plugin": "8.30.1",
20
+ "@typescript-eslint/parser": "8.30.1",
21
21
  "chai": "4.5.0",
22
- "eslint": "9.23.0",
23
- "eslint-config-prettier": "10.1.1",
24
- "eslint-plugin-prettier": "5.2.5",
22
+ "eslint": "9.24.0",
23
+ "eslint-config-prettier": "10.1.2",
24
+ "eslint-plugin-prettier": "5.2.6",
25
25
  "eslint-plugin-simple-import-sort": "12.1.1",
26
26
  "mocha": "11.1.0",
27
27
  "nyc": "17.1.0",
@@ -31,8 +31,8 @@
31
31
  "sinon": "20.0.0",
32
32
  "ts-loader": "9.5.2",
33
33
  "ts-node": "10.9.2",
34
- "typescript": "5.8.2",
35
- "typescript-eslint": "8.29.0"
34
+ "typescript": "5.8.3",
35
+ "typescript-eslint": "8.30.1"
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.4.0"
80
+ "version": "7.5.1"
81
81
  }