inversify 7.10.6 → 7.10.8

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 +17 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # inversify
2
2
 
3
+ ## 7.10.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated `BindToFluentSyntax.toResolvedValue` to allow non multiple array `ServiceIdentifier` `injectOptions`
8
+ - Updated dependencies
9
+ - @inversifyjs/container@1.14.5
10
+
11
+ ## 7.10.7
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated circular dependency detection to handle V8 issues on nearly exhausted call stack scenarios
16
+ - Updated dependencies
17
+ - @inversifyjs/core@9.1.2
18
+ - @inversifyjs/container@1.14.4
19
+
3
20
  ## 7.10.6
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -6,21 +6,21 @@
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.3",
10
- "@inversifyjs/core": "9.1.1"
9
+ "@inversifyjs/container": "1.14.5",
10
+ "@inversifyjs/core": "9.1.2"
11
11
  },
12
12
  "devDependencies": {
13
- "@types/node": "24.10.1",
14
- "@vitest/coverage-v8": "4.0.10",
15
- "eslint": "9.39.1",
13
+ "@types/node": "24.10.4",
14
+ "@vitest/coverage-v8": "4.0.16",
15
+ "eslint": "9.39.2",
16
16
  "prettier": "3.7.4",
17
17
  "reflect-metadata": "0.2.2",
18
18
  "rimraf": "6.1.2",
19
- "rollup": "4.53.3",
19
+ "rollup": "4.53.5",
20
20
  "ts-loader": "9.5.4",
21
21
  "tslib": "2.8.1",
22
22
  "typescript": "5.9.3",
23
- "vitest": "4.0.10"
23
+ "vitest": "4.0.16"
24
24
  },
25
25
  "homepage": "https://inversify.io",
26
26
  "keywords": [
@@ -55,7 +55,7 @@
55
55
  "url": "git+https://github.com/inversify/monorepo.git"
56
56
  },
57
57
  "sideEffects": true,
58
- "version": "7.10.6",
58
+ "version": "7.10.8",
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",