inversify 6.1.0 → 6.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +4 -4
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.1]
16
+
17
+ ### Fixed
18
+ - Bumped `@inversifyjs/common` and `@inversifyjs/core` fixing wrong dev engines constraints.
19
+
15
20
  ## [6.1.0]
16
21
 
17
22
  ### Changed
package/package.json CHANGED
@@ -5,8 +5,8 @@
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.0",
9
- "@inversifyjs/core": "1.3.0"
8
+ "@inversifyjs/common": "1.3.2",
9
+ "@inversifyjs/core": "1.3.2"
10
10
  },
11
11
  "devDependencies": {
12
12
  "@eslint/js": "9.13.0",
@@ -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.1"
74
74
  }