inversify 7.5.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.
- package/CHANGELOG.md +7 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,13 @@ 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
|
+
|
|
15
22
|
## [7.5.0]
|
|
16
23
|
|
|
17
24
|
### Changed
|
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.0",
|
|
9
|
-
"@inversifyjs/container": "1.9.
|
|
10
|
-
"@inversifyjs/core": "5.
|
|
9
|
+
"@inversifyjs/container": "1.9.1",
|
|
10
|
+
"@inversifyjs/core": "5.2.0"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@eslint/js": "9.
|
|
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.
|
|
20
|
-
"@typescript-eslint/parser": "8.
|
|
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
|
-
"eslint-config-prettier": "10.1.
|
|
22
|
+
"eslint": "9.24.0",
|
|
23
|
+
"eslint-config-prettier": "10.1.2",
|
|
24
24
|
"eslint-plugin-prettier": "5.2.6",
|
|
25
25
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
26
26
|
"mocha": "11.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.
|
|
35
|
-
"typescript-eslint": "8.
|
|
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.5.
|
|
80
|
+
"version": "7.5.1"
|
|
81
81
|
}
|