inversify 6.1.5-beta.2 → 6.1.5

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 +10 -0
  2. package/package.json +1 -1
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.5]
16
+
17
+ ### Changed
18
+ - Updated library to import `reflect-metadata`. Importing `reflect-metadata` before bootstraping a module in the userland is no longer required.
19
+
20
+ ### Fixed
21
+ - Updated ESM build to provide proper types regardless of the ts resolution module strategy in the userland.
22
+ - Fixed container to properly resolve async `.toService` bindings.
23
+ - Fixed `.toService` binding to properly disable caching any values.
24
+
15
25
  ## [6.1.5-beta.2]
16
26
 
17
27
  ### Fixed
package/package.json CHANGED
@@ -75,5 +75,5 @@
75
75
  "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"
76
76
  },
77
77
  "sideEffects": false,
78
- "version": "6.1.5-beta.2"
78
+ "version": "6.1.5"
79
79
  }