diff --git a/.changeset/goofy-planes-tease.md b/.changeset/goofy-planes-tease.md deleted file mode 100644 index 1ae1b57..0000000 --- a/.changeset/goofy-planes-tease.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@aws/lambda-invoke-store": minor ---- - -Invoke Store is now accessible via `InvokeStore.getInstanceAsync()` instead of direct instantiation - -- Lazy loads `node:async_hooks` to improve startup performance -- Selects dynamic implementation based on Lambda environment: - - Single-context implementation for standard Lambda executions - - Multi-context implementation (using AsyncLocalStorage) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92eaf31..445a6b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # @aws/lambda-invoke-store +## 0.2.0 + +### Minor Changes + +- Invoke Store is now accessible via `InvokeStore.getInstanceAsync()` instead of direct instantiation ([d14bda46410ff5e46777795f8ed4c6e8fcc90e7b](https://github.com/awslabs/aws-lambda-invoke-store/commit/d14bda46410ff5e46777795f8ed4c6e8fcc90e7b)) + - Lazy loads `node:async_hooks` to improve startup performance + - Selects dynamic implementation based on Lambda environment: + - Single-context implementation for standard Lambda executions + - Multi-context implementation (using AsyncLocalStorage) + ## 0.1.1 ### Patch Changes diff --git a/package.json b/package.json index 902b16d..e7acb90 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aws/lambda-invoke-store", - "version": "0.1.1", + "version": "0.2.0", "description": "Invoke scoped data storage for AWS Lambda Node.js Runtime Environment", "homepage": "https://github.com/awslabs/aws-lambda-invoke-store", "main": "./dist-cjs/invoke-store.js",