inversify 7.0.0-alpha.1 → 7.0.0-alpha.2

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 +8 -8
package/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project from 5.0.0 forward will be documented in thi
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [7.0.0-alpha.2]
8
+
9
+ ### Changed
10
+ - Updated `Container` with a plan cache. `Container.get`, `Container.getAll`, `Container.getAllAsync` and `Container.getAsync` performance has been improved.
11
+
7
12
  ## [7.0.0-alpha.1]
8
13
 
9
14
  ### Changed
package/package.json CHANGED
@@ -6,11 +6,11 @@
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.5.0",
9
- "@inversifyjs/container": "1.4.0",
10
- "@inversifyjs/core": "3.3.0"
9
+ "@inversifyjs/container": "1.4.2",
10
+ "@inversifyjs/core": "3.4.0"
11
11
  },
12
12
  "devDependencies": {
13
- "@eslint/js": "9.18.0",
13
+ "@eslint/js": "9.19.0",
14
14
  "@rollup/plugin-terser": "0.4.4",
15
15
  "@rollup/plugin-typescript": "12.1.2",
16
16
  "@types/chai": "4.3.20",
@@ -19,11 +19,11 @@
19
19
  "@typescript-eslint/eslint-plugin": "8.21.0",
20
20
  "@typescript-eslint/parser": "8.21.0",
21
21
  "chai": "4.5.0",
22
- "eslint": "9.18.0",
22
+ "eslint": "9.19.0",
23
23
  "eslint-config-prettier": "10.0.1",
24
24
  "eslint-plugin-prettier": "5.2.3",
25
25
  "eslint-plugin-simple-import-sort": "12.1.1",
26
- "mocha": "11.0.1",
26
+ "mocha": "11.1.0",
27
27
  "nyc": "17.1.0",
28
28
  "prettier": "3.4.2",
29
29
  "rimraf": "6.0.1",
@@ -73,9 +73,9 @@
73
73
  "lint": "eslint ./src",
74
74
  "prebuild": "npm run build:clean",
75
75
  "prepublish": "npm run build",
76
- "test": "nyc --reporter=lcov --require ts-node/register mocha src/test/*.test.ts src/test/**/*.test.ts --reporter spec --require 'node_modules/reflect-metadata/Reflect.js' --exit",
77
- "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'"
76
+ "test": "nyc --reporter=lcov --require ts-node/register mocha src/test/*.test.ts src/test/**/*.test.ts --reporter spec --exit",
77
+ "test:cjs": "nyc --reporter=lcov mocha lib/cjs/test/*.test.js lib/cjs/test/**/*.test.js --reporter spec"
78
78
  },
79
79
  "sideEffects": false,
80
- "version": "7.0.0-alpha.1"
80
+ "version": "7.0.0-alpha.2"
81
81
  }