inversify 6.1.1 → 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 CHANGED
@@ -12,6 +12,11 @@ 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
+
15
20
  ## [6.1.1]
16
21
 
17
22
  ### Fixed
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.3.2",
9
- "@inversifyjs/core": "1.3.2"
9
+ "@inversifyjs/core": "1.3.3"
10
10
  },
11
11
  "devDependencies": {
12
- "@eslint/js": "9.13.0",
13
- "@types/chai": "4.3.6",
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.12.2",
17
- "@typescript-eslint/parser": "8.12.2",
18
- "chai": "4.3.8",
19
- "eslint": "9.13.0",
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.7.3",
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.12.2",
32
+ "typescript-eslint": "8.13.0",
33
33
  "updates": "16.4.0"
34
34
  },
35
35
  "engines": {},
@@ -70,5 +70,5 @@
70
70
  },
71
71
  "sideEffects": false,
72
72
  "types": "lib/inversify.d.ts",
73
- "version": "6.1.1"
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
+ }