inversify 7.10.1 → 7.10.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 +19 -0
- package/README.md +1 -7
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# inversify
|
|
2
2
|
|
|
3
|
+
## 7.10.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated `BindToFluentSyntax.factory` to allow async factory builders
|
|
8
|
+
- Updated `Factory` to allow async functions
|
|
9
|
+
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @inversifyjs/container@1.14.0
|
|
12
|
+
- @inversifyjs/core@9.1.0
|
|
13
|
+
|
|
14
|
+
## 7.10.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @inversifyjs/container@1.13.2
|
|
20
|
+
- @inversifyjs/core@9.0.1
|
|
21
|
+
|
|
3
22
|
## 7.10.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
> [!NOTE]
|
|
2
|
-
> InversifyJS will be moving to the [monorepo](https://github.com/inversify/monorepo). Please, consider creating issues and pull requests there.
|
|
3
|
-
>
|
|
4
|
-
> Next releases will be published in the monorepo, so consider starring it to be notified.
|
|
5
|
-
|
|
6
1
|
<p align="center">
|
|
7
2
|
<a href="https://www.npmjs.com/package/inversify" target="__blank"><img src="https://img.shields.io/npm/v/inversify?color=0476bc&label=" alt="NPM version"></a>
|
|
8
3
|
<a href="https://www.npmjs.com/package/inversify" target="__blank"><img alt="NPM Downloads" src="https://img.shields.io/npm/dm/inversify?color=3890aa&label="></a>
|
|
@@ -14,8 +9,7 @@
|
|
|
14
9
|
<a href="https://discord.gg/jXcMagAPnm" target="__blank"><img alt="Discord Server" src="https://img.shields.io/discord/816766547879657532?style=social&logo=discord"></a>
|
|
15
10
|
</p>
|
|
16
11
|
|
|
17
|
-
|
|
18
|
-
A powerful and lightweight inversion of control container for JavaScript & Node.js apps powered by TypeScript.
|
|
12
|
+

|
|
19
13
|
|
|
20
14
|
## 📕 Documentation
|
|
21
15
|
Documentation is available at https://inversify.io
|
package/package.json
CHANGED
|
@@ -6,20 +6,20 @@
|
|
|
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/
|
|
10
|
-
"@inversifyjs/
|
|
9
|
+
"@inversifyjs/container": "1.14.0",
|
|
10
|
+
"@inversifyjs/core": "9.1.0"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@types/node": "
|
|
13
|
+
"@types/node": "24.7.2",
|
|
14
14
|
"@vitest/coverage-v8": "3.2.4",
|
|
15
|
-
"eslint": "9.
|
|
15
|
+
"eslint": "9.37.0",
|
|
16
16
|
"prettier": "3.6.2",
|
|
17
17
|
"reflect-metadata": "0.2.2",
|
|
18
18
|
"rimraf": "6.0.1",
|
|
19
|
-
"rollup": "4.52.
|
|
19
|
+
"rollup": "4.52.4",
|
|
20
20
|
"ts-loader": "9.5.4",
|
|
21
21
|
"tslib": "2.8.1",
|
|
22
|
-
"typescript": "5.9.
|
|
22
|
+
"typescript": "5.9.3",
|
|
23
23
|
"vitest": "3.2.4"
|
|
24
24
|
},
|
|
25
25
|
"homepage": "https://inversify.io",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"typescript"
|
|
35
35
|
],
|
|
36
36
|
"devEngines": {
|
|
37
|
-
"node": "^
|
|
37
|
+
"node": "^24.10.0",
|
|
38
38
|
"pnpm": "^10.13.1"
|
|
39
39
|
},
|
|
40
40
|
"license": "MIT",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"url": "git+https://github.com/inversify/monorepo.git"
|
|
56
56
|
},
|
|
57
57
|
"sideEffects": false,
|
|
58
|
-
"version": "7.10.
|
|
58
|
+
"version": "7.10.3",
|
|
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",
|