inversify 6.2.0-beta.1 → 6.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -12,6 +12,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
 
13
13
  ### Fixed
14
14
 
15
+ ## [6.2.0]
16
+
17
+ ### Added
18
+ - Added `interfaces.GetAllOptions`.
19
+
20
+ ### Changed
21
+ - Updated `container.getAll` with `options` optional param.
22
+ - Updated `container.getAllAsync` with `options` optional param.
23
+ - Updated `interfaces.NextArgs` with optional `isOptional` param.
24
+ - Updated `container` with `tryGet`.
25
+ - Updated `container` with `tryGetAsync`.
26
+ - Updated `container` with `tryGetTagged`.
27
+ - Updated `container` with `tryGetTaggedAsync`.
28
+ - Updated `container` with `tryGetNamed`.
29
+ - Updated `container` with `tryGetNamedAsync`.
30
+ - Updated `container` with `tryGetAll`.
31
+ - Updated `container` with `tryGetAllAsync`.
32
+ - Updated `container` with `tryGetAllTagged`.
33
+ - Updated `container` with `tryGetAllTaggedAsync`.
34
+ - Updated `container` with `tryGetAllNamed`.
35
+ - Updated `container` with `tryGetAllNamedAsync`.
36
+
15
37
  ## [6.2.0-beta.1]
16
38
 
17
39
  ### Added
package/package.json CHANGED
@@ -15,8 +15,8 @@
15
15
  "@types/chai": "4.3.20",
16
16
  "@types/mocha": "10.0.10",
17
17
  "@types/sinon": "17.0.3",
18
- "@typescript-eslint/eslint-plugin": "8.17.0",
19
- "@typescript-eslint/parser": "8.17.0",
18
+ "@typescript-eslint/eslint-plugin": "8.18.0",
19
+ "@typescript-eslint/parser": "8.18.0",
20
20
  "chai": "4.5.0",
21
21
  "eslint": "9.16.0",
22
22
  "eslint-config-prettier": "9.1.0",
@@ -31,7 +31,7 @@
31
31
  "ts-loader": "9.5.1",
32
32
  "ts-node": "10.9.2",
33
33
  "typescript": "5.7.2",
34
- "typescript-eslint": "8.17.0"
34
+ "typescript-eslint": "8.18.0"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "reflect-metadata": "~0.2.2"
@@ -76,5 +76,5 @@
76
76
  "test:cjs": "nyc --reporter=lcov mocha lib/cjs/test/*.test.js lib/cjs/test/**/*.test.js --reporter spec --require 'node_modules/reflect-metadata/Reflect.js'"
77
77
  },
78
78
  "sideEffects": false,
79
- "version": "6.2.0-beta.1"
79
+ "version": "6.2.0"
80
80
  }