inversify 6.1.0 → 6.1.2-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 +10 -0
- package/package.json +12 -12
- package/renovate.json +22 -0
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
12
12
|
|
|
13
13
|
### Fixed
|
|
14
14
|
|
|
15
|
+
## [6.1.2-beta.0]
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Updated fetch metadata flows with better error descriptions
|
|
19
|
+
|
|
20
|
+
## [6.1.1]
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Bumped `@inversifyjs/common` and `@inversifyjs/core` fixing wrong dev engines constraints.
|
|
24
|
+
|
|
15
25
|
## [6.1.0]
|
|
16
26
|
|
|
17
27
|
### Changed
|
package/package.json
CHANGED
|
@@ -5,22 +5,22 @@
|
|
|
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.3.
|
|
9
|
-
"@inversifyjs/core": "1.3.
|
|
8
|
+
"@inversifyjs/common": "1.3.2",
|
|
9
|
+
"@inversifyjs/core": "1.3.3"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@eslint/js": "9.
|
|
13
|
-
"@types/chai": "4.3.
|
|
12
|
+
"@eslint/js": "9.14.0",
|
|
13
|
+
"@types/chai": "4.3.20",
|
|
14
14
|
"@types/mocha": "10.0.9",
|
|
15
15
|
"@types/sinon": "17.0.3",
|
|
16
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
17
|
-
"@typescript-eslint/parser": "8.
|
|
18
|
-
"chai": "4.
|
|
19
|
-
"eslint": "9.
|
|
16
|
+
"@typescript-eslint/eslint-plugin": "8.13.0",
|
|
17
|
+
"@typescript-eslint/parser": "8.13.0",
|
|
18
|
+
"chai": "4.5.0",
|
|
19
|
+
"eslint": "9.14.0",
|
|
20
20
|
"eslint-config-prettier": "9.1.0",
|
|
21
21
|
"eslint-plugin-prettier": "5.2.1",
|
|
22
22
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
23
|
-
"mocha": "10.
|
|
23
|
+
"mocha": "10.8.2",
|
|
24
24
|
"nyc": "17.1.0",
|
|
25
25
|
"prettier": "3.3.3",
|
|
26
26
|
"publish-please": "5.5.2",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"sinon": "19.0.2",
|
|
30
30
|
"ts-node": "10.9.2",
|
|
31
31
|
"typescript": "5.6.3",
|
|
32
|
-
"typescript-eslint": "8.
|
|
32
|
+
"typescript-eslint": "8.13.0",
|
|
33
33
|
"updates": "16.4.0"
|
|
34
34
|
},
|
|
35
35
|
"engines": {},
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"postupdate": "git diff-files --quiet package-lock.json || npm test",
|
|
66
66
|
"prepublish": "npm run build && publish-please guard",
|
|
67
67
|
"publish-please": "publish-please",
|
|
68
|
-
"test": "nyc --reporter=lcov --require ts-node/register mocha test/**/*.test.ts --reporter spec --retries 3 --require 'node_modules/reflect-metadata/Reflect.js' --exit",
|
|
68
|
+
"test": "nyc --reporter=lcov --require ts-node/register mocha ./test/*.test.ts test/**/*.test.ts --reporter spec --retries 3 --require 'node_modules/reflect-metadata/Reflect.js' --exit",
|
|
69
69
|
"update": "updates --update --minor && npm install"
|
|
70
70
|
},
|
|
71
71
|
"sideEffects": false,
|
|
72
72
|
"types": "lib/inversify.d.ts",
|
|
73
|
-
"version": "6.1.0"
|
|
73
|
+
"version": "6.1.2-beta.0"
|
|
74
74
|
}
|
package/renovate.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
|
+
"automerge": false,
|
|
4
|
+
"extends": [
|
|
5
|
+
"config:base",
|
|
6
|
+
":disableRateLimiting",
|
|
7
|
+
":semanticCommitScopeDisabled"
|
|
8
|
+
],
|
|
9
|
+
"ignoreDeps": [],
|
|
10
|
+
"packageRules": [
|
|
11
|
+
{
|
|
12
|
+
"groupName": "auto merge on patch or minor",
|
|
13
|
+
"automerge": true,
|
|
14
|
+
"matchUpdateTypes": ["patch", "minor"],
|
|
15
|
+
"excludePackageNames": ["turbo", "typescript"]
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"rangeStrategy": "bump",
|
|
19
|
+
"rebaseWhen": "conflicted",
|
|
20
|
+
"semanticCommits": "enabled",
|
|
21
|
+
"schedule": ["at any time"]
|
|
22
|
+
}
|