inversify 7.10.7 → 7.11.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 +20 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # inversify
2
2
 
3
+ ## 7.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Added `Container.unbindAllSync`
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @inversifyjs/core@9.2.0
13
+ - @inversifyjs/container@1.15.0
14
+
15
+ ## 7.10.8
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated `BindToFluentSyntax.toResolvedValue` to allow non multiple array `ServiceIdentifier` `injectOptions`
20
+ - Updated dependencies
21
+ - @inversifyjs/container@1.14.5
22
+
3
23
  ## 7.10.7
4
24
 
5
25
  ### Patch Changes
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.14.4",
10
- "@inversifyjs/core": "9.1.2"
9
+ "@inversifyjs/container": "1.15.0",
10
+ "@inversifyjs/core": "9.2.0"
11
11
  },
12
12
  "devDependencies": {
13
13
  "@types/node": "24.10.4",
@@ -16,7 +16,7 @@
16
16
  "prettier": "3.7.4",
17
17
  "reflect-metadata": "0.2.2",
18
18
  "rimraf": "6.1.2",
19
- "rollup": "4.53.5",
19
+ "rollup": "4.55.1",
20
20
  "ts-loader": "9.5.4",
21
21
  "tslib": "2.8.1",
22
22
  "typescript": "5.9.3",
@@ -55,7 +55,7 @@
55
55
  "url": "git+https://github.com/inversify/monorepo.git"
56
56
  },
57
57
  "sideEffects": true,
58
- "version": "7.10.7",
58
+ "version": "7.11.0",
59
59
  "scripts": {
60
60
  "build": "pnpm run build:cjs && pnpm run build:esm",
61
61
  "build:cjs": "tsc --build tsconfig.cjs.json && pnpm exec foundation-ts-package-cjs ./lib/cjs",