inversify 7.5.1 → 7.5.3
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 +11 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
12
12
|
|
|
13
13
|
### Removed
|
|
14
14
|
|
|
15
|
+
## [7.5.3]
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Updated `ServiceIdentifier` removing `Function` in favor of a new `AbstractNewable` type. ServiceIdentifier now uses AbstractNewable instead of Function to better represent abstract classes. This provides better type safety and semantics.
|
|
19
|
+
|
|
20
|
+
## [7.5.2]
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- Fixed `Container.snapshot` so snapshot bindings are not updated after a snapshot is taken.
|
|
24
|
+
- Fixed a memory leak affecting child containers.
|
|
25
|
+
|
|
15
26
|
## [7.5.1]
|
|
16
27
|
|
|
17
28
|
### Changed
|
package/package.json
CHANGED
|
@@ -5,34 +5,34 @@
|
|
|
5
5
|
},
|
|
6
6
|
"description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@inversifyjs/common": "1.5.
|
|
9
|
-
"@inversifyjs/container": "1.
|
|
10
|
-
"@inversifyjs/core": "5.2
|
|
8
|
+
"@inversifyjs/common": "1.5.1",
|
|
9
|
+
"@inversifyjs/container": "1.10.2",
|
|
10
|
+
"@inversifyjs/core": "5.3.2"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@eslint/js": "9.
|
|
13
|
+
"@eslint/js": "9.29.0",
|
|
14
14
|
"@rollup/plugin-terser": "0.4.4",
|
|
15
|
-
"@rollup/plugin-typescript": "12.1.
|
|
15
|
+
"@rollup/plugin-typescript": "12.1.3",
|
|
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.
|
|
20
|
-
"@typescript-eslint/parser": "8.
|
|
19
|
+
"@typescript-eslint/eslint-plugin": "8.35.0",
|
|
20
|
+
"@typescript-eslint/parser": "8.35.0",
|
|
21
21
|
"chai": "4.5.0",
|
|
22
|
-
"eslint": "9.
|
|
23
|
-
"eslint-config-prettier": "10.1.
|
|
24
|
-
"eslint-plugin-prettier": "5.
|
|
22
|
+
"eslint": "9.29.0",
|
|
23
|
+
"eslint-config-prettier": "10.1.5",
|
|
24
|
+
"eslint-plugin-prettier": "5.5.0",
|
|
25
25
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
26
|
-
"mocha": "11.1
|
|
26
|
+
"mocha": "11.7.1",
|
|
27
27
|
"nyc": "17.1.0",
|
|
28
|
-
"prettier": "3.
|
|
28
|
+
"prettier": "3.6.1",
|
|
29
29
|
"rimraf": "6.0.1",
|
|
30
30
|
"rollup-plugin-dts": "6.2.1",
|
|
31
|
-
"sinon": "
|
|
31
|
+
"sinon": "21.0.0",
|
|
32
32
|
"ts-loader": "9.5.2",
|
|
33
33
|
"ts-node": "10.9.2",
|
|
34
34
|
"typescript": "5.8.3",
|
|
35
|
-
"typescript-eslint": "8.
|
|
35
|
+
"typescript-eslint": "8.35.0"
|
|
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.5.
|
|
80
|
+
"version": "7.5.3"
|
|
81
81
|
}
|