inversify 7.7.0 → 7.7.1-beta.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.
- package/CHANGELOG.md +3 -5
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -4,13 +4,11 @@ All notable changes to this project from 5.0.0 forward will be documented in thi
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [
|
|
8
|
-
|
|
9
|
-
### Added
|
|
7
|
+
## [7.7.1-beta.0]
|
|
10
8
|
|
|
11
9
|
### Changed
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
- Fixed a bug causing `Container.bind` and `Container.unbind` to avoid throwing planning errors.
|
|
11
|
+
- Fixed a bug causing wrong cached plans involving bindings with ancestor related constraints.
|
|
14
12
|
|
|
15
13
|
## [7.7.0]
|
|
16
14
|
|
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.
|
|
10
|
-
"@inversifyjs/core": "
|
|
9
|
+
"@inversifyjs/container": "1.12.2",
|
|
10
|
+
"@inversifyjs/core": "7.0.0"
|
|
11
11
|
},
|
|
12
12
|
"devEngines": {
|
|
13
13
|
"packageManager": {
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@eslint/js": "9.
|
|
25
|
+
"@eslint/js": "9.33.0",
|
|
26
26
|
"@rollup/plugin-terser": "0.4.4",
|
|
27
27
|
"@rollup/plugin-typescript": "12.1.4",
|
|
28
28
|
"@types/chai": "4.3.20",
|
|
29
29
|
"@types/mocha": "10.0.10",
|
|
30
|
-
"@types/node": "22.17.
|
|
30
|
+
"@types/node": "22.17.1",
|
|
31
31
|
"@types/sinon": "17.0.4",
|
|
32
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
33
|
-
"@typescript-eslint/parser": "8.
|
|
32
|
+
"@typescript-eslint/eslint-plugin": "8.39.0",
|
|
33
|
+
"@typescript-eslint/parser": "8.39.0",
|
|
34
34
|
"chai": "4.5.0",
|
|
35
|
-
"eslint": "9.
|
|
35
|
+
"eslint": "9.33.0",
|
|
36
36
|
"eslint-config-prettier": "10.1.8",
|
|
37
|
-
"eslint-plugin-prettier": "5.5.
|
|
37
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
38
38
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
39
39
|
"mocha": "11.7.1",
|
|
40
40
|
"nyc": "17.1.0",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"ts-loader": "9.5.2",
|
|
47
47
|
"tslib": "2.8.1",
|
|
48
48
|
"ts-node": "10.9.2",
|
|
49
|
-
"typescript": "5.
|
|
50
|
-
"typescript-eslint": "8.
|
|
49
|
+
"typescript": "5.9.2",
|
|
50
|
+
"typescript-eslint": "8.39.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.7.0",
|
|
81
|
+
"version": "7.7.1-beta.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",
|