From bddc333fdbaaa1da44675b89fecab2ef953453cd Mon Sep 17 00:00:00 2001 From: notaphplover Date: Sun, 26 Jan 2025 19:25:54 +0100 Subject: [PATCH] chore: bump version (#1716) --- CHANGELOG.md | 5 +++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aae5c657..71a1614b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project from 5.0.0 forward will be documented in thi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [7.0.0-alpha.2] + +### Changed +- Updated `Container` with a plan cache. `Container.get`, `Container.getAll`, `Container.getAllAsync` and `Container.getAsync` performance has been improved. + ## [7.0.0-alpha.1] ### Changed diff --git a/package-lock.json b/package-lock.json index 12e55f80..2d7f3726 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "inversify", - "version": "7.0.0-alpha.1", + "version": "7.0.0-alpha.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "inversify", - "version": "7.0.0-alpha.1", + "version": "7.0.0-alpha.2", "license": "MIT", "dependencies": { "@inversifyjs/common": "1.5.0", diff --git a/package.json b/package.json index 4ce29b35..a86708b5 100644 --- a/package.json +++ b/package.json @@ -77,5 +77,5 @@ "test:cjs": "nyc --reporter=lcov mocha lib/cjs/test/*.test.js lib/cjs/test/**/*.test.js --reporter spec" }, "sideEffects": false, - "version": "7.0.0-alpha.1" + "version": "7.0.0-alpha.2" }