inversify 7.7.1-beta.0 → 7.7.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 +12 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
## [7.7.1]
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Fixed a bug involving circular dependencies when resolving services in some edge cases.
|
|
17
|
+
- Fixed a bug involving circular dependencies when bindings are bound in some edge cases.
|
|
18
|
+
|
|
7
19
|
## [7.7.1-beta.0]
|
|
8
20
|
|
|
9
21
|
### Changed
|
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": "7.0.
|
|
9
|
+
"@inversifyjs/container": "1.12.3",
|
|
10
|
+
"@inversifyjs/core": "7.0.1"
|
|
11
11
|
},
|
|
12
12
|
"devEngines": {
|
|
13
13
|
"packageManager": {
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "https://github.com/inversify/InversifyJS.git"
|
|
79
79
|
},
|
|
80
80
|
"sideEffects": false,
|
|
81
|
-
"version": "7.7.1
|
|
81
|
+
"version": "7.7.1",
|
|
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",
|