Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

### Bug Fixes

- **metrics** revert changes when raise warning with overridden default dimensions ([#4226](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4226)) ([c9d6aa0](https://github.com/aws-powertools/powertools-lambda-typescript/commit/c9d6aa09acc666d09ed13ebef331502f4119dacc))
- **metrics** emit warning when default dimensions are overwritten ([#4222](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4222)) ([a933a6a](https://github.com/aws-powertools/powertools-lambda-typescript/commit/a933a6af6135b79b855353bbaf265ab0a3be60da))
- **parser** set zod peer range to 4.x ([#4196](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4196)) ([7a65fcf](https://github.com/aws-powertools/powertools-lambda-typescript/commit/7a65fcf9759ac1a1f072ef5442ee8b0767705a92))

### Improvements

- **metrics** replace EnvironmentVariablesService with cached #envConfig ([#4188](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4188)) ([919063b](https://github.com/aws-powertools/powertools-lambda-typescript/commit/919063bc10f15b55f84c183208274836ae1d367e))
- **metrics** add runtime validations when adding dimensions ([#4181](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4181)) ([4226058](https://github.com/aws-powertools/powertools-lambda-typescript/commit/42260585eb84de373c6ae5daaf5d541dd5f78ec1))
- **parameters** replace EnvironmentVariablesService class with helper functions in Parameters ([#4168](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4168)) ([ce4e618](https://github.com/aws-powertools/powertools-lambda-typescript/commit/ce4e6181ffed20153f3743707fdd31f68f392e0c))
- **event-handler** replace EnvironmentVariablesService class with helper functions in Event Handler ([#4225](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4225)) ([d17818e](https://github.com/aws-powertools/powertools-lambda-typescript/commit/d17818e1b8b17a8307e61966ab857f9c05c49670))

### Features

- **event-handler** add route management system for ApiGw event handler ([#4211](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4211)) ([c2cbb64](https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2cbb642ca3a4cc57ad0e80d9f1239e8f67d56e3))
- **event-handler** add base router class ([#3972](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3972)) ([3d4998c](https://github.com/aws-powertools/powertools-lambda-typescript/commit/3d4998cda6c1b8c1bea47d5c6a9fe760b6e957fb))


## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

### Improvements
Expand Down
4 changes: 4 additions & 0 deletions examples/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

**Note:** Version bump only for this package

## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

**Note:** Version bump only for this package
Expand Down
14 changes: 7 additions & 7 deletions examples/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "powertools-sample-app",
"version": "2.24.0",
"version": "2.24.1",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
Expand Down Expand Up @@ -38,12 +38,12 @@
"vitest": "^3.0.5"
},
"dependencies": {
"@aws-lambda-powertools/batch": "^2.24.0",
"@aws-lambda-powertools/idempotency": "^2.24.0",
"@aws-lambda-powertools/logger": "^2.24.0",
"@aws-lambda-powertools/metrics": "^2.24.0",
"@aws-lambda-powertools/parameters": "^2.24.0",
"@aws-lambda-powertools/tracer": "^2.24.0",
"@aws-lambda-powertools/batch": "^2.24.1",
"@aws-lambda-powertools/idempotency": "^2.24.1",
"@aws-lambda-powertools/logger": "^2.24.1",
"@aws-lambda-powertools/metrics": "^2.24.1",
"@aws-lambda-powertools/parameters": "^2.24.1",
"@aws-lambda-powertools/tracer": "^2.24.1",
"@aws-sdk/client-ssm": "^3.849.0",
"@aws-sdk/lib-dynamodb": "^3.850.0",
"@middy/core": "^4.7.0",
Expand Down
4 changes: 4 additions & 0 deletions examples/snippets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

**Note:** Version bump only for this package

## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

**Note:** Version bump only for this package
Expand Down
20 changes: 10 additions & 10 deletions examples/snippets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code-snippets",
"version": "2.24.0",
"version": "2.24.1",
"description": "A collection code snippets for the Powertools for AWS Lambda (TypeScript) docs",
"author": {
"name": "Amazon Web Services",
Expand All @@ -24,15 +24,15 @@
},
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript#readme",
"devDependencies": {
"@aws-lambda-powertools/batch": "^2.24.0",
"@aws-lambda-powertools/event-handler": "^2.24.0",
"@aws-lambda-powertools/idempotency": "^2.24.0",
"@aws-lambda-powertools/jmespath": "^2.24.0",
"@aws-lambda-powertools/logger": "^2.24.0",
"@aws-lambda-powertools/metrics": "^2.24.0",
"@aws-lambda-powertools/parameters": "^2.24.0",
"@aws-lambda-powertools/parser": "^2.24.0",
"@aws-lambda-powertools/tracer": "^2.24.0",
"@aws-lambda-powertools/batch": "^2.24.1",
"@aws-lambda-powertools/event-handler": "^2.24.1",
"@aws-lambda-powertools/idempotency": "^2.24.1",
"@aws-lambda-powertools/jmespath": "^2.24.1",
"@aws-lambda-powertools/logger": "^2.24.1",
"@aws-lambda-powertools/metrics": "^2.24.1",
"@aws-lambda-powertools/parameters": "^2.24.1",
"@aws-lambda-powertools/parser": "^2.24.1",
"@aws-lambda-powertools/tracer": "^2.24.1",
"@aws-sdk/client-appconfigdata": "^3.848.0",
"@aws-sdk/client-dynamodb": "^3.848.0",
"@aws-sdk/client-secrets-manager": "^3.848.0",
Expand Down
4 changes: 4 additions & 0 deletions layers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

**Note:** Version bump only for this package

## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

**Note:** Version bump only for this package
Expand Down
2 changes: 1 addition & 1 deletion layers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "layers",
"version": "2.24.0",
"version": "2.24.1",
"bin": {
"layer": "bin/layers.js"
},
Expand Down
30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions packages/batch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

**Note:** Version bump only for this package

## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

### Maintenance
Expand Down
2 changes: 1 addition & 1 deletion packages/batch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda-powertools/batch",
"version": "2.24.0",
"version": "2.24.1",
"description": "The batch processing package for the Powertools for AWS Lambda (TypeScript) library.",
"author": {
"name": "Amazon Web Services",
Expand Down
4 changes: 4 additions & 0 deletions packages/commons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

**Note:** Version bump only for this package

## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

**Note:** Version bump only for this package
Expand Down
2 changes: 1 addition & 1 deletion packages/commons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda-powertools/commons",
"version": "2.24.0",
"version": "2.24.1",
"description": "A shared utility package for Powertools for AWS Lambda (TypeScript) libraries",
"author": {
"name": "Amazon Web Services",
Expand Down
10 changes: 10 additions & 0 deletions packages/event-handler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

### Improvements

- replace EnvironmentVariablesService class with helper functions in Event Handler ([#4225](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4225)) ([d17818e](https://github.com/aws-powertools/powertools-lambda-typescript/commit/d17818e1b8b17a8307e61966ab857f9c05c49670))

### Features

- add route management system for ApiGw event handler ([#4211](https://github.com/aws-powertools/powertools-lambda-typescript/issues/4211)) ([c2cbb64](https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2cbb642ca3a4cc57ad0e80d9f1239e8f67d56e3))
- add base router class ([#3972](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3972)) ([3d4998c](https://github.com/aws-powertools/powertools-lambda-typescript/commit/3d4998cda6c1b8c1bea47d5c6a9fe760b6e957fb))
## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

**Note:** Version bump only for this package
Expand Down
4 changes: 2 additions & 2 deletions packages/event-handler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda-powertools/event-handler",
"version": "2.24.0",
"version": "2.24.1",
"description": "Lightweight routing to reduce boilerplate for API Gateway REST/HTTP API, ALB, Lambda Function URLs, and AppSync.",
"author": {
"name": "Amazon Web Services",
Expand Down Expand Up @@ -101,7 +101,7 @@
"url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues"
},
"dependencies": {
"@aws-lambda-powertools/commons": "2.24.0"
"@aws-lambda-powertools/commons": "2.24.1"
},
"keywords": [
"aws",
Expand Down
4 changes: 4 additions & 0 deletions packages/idempotency/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

**Note:** Version bump only for this package

## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

**Note:** Version bump only for this package
Expand Down
6 changes: 3 additions & 3 deletions packages/idempotency/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda-powertools/idempotency",
"version": "2.24.0",
"version": "2.24.1",
"description": "The idempotency package for the Powertools for AWS Lambda (TypeScript) library. It provides options to make your Lambda functions idempotent and safe to retry.",
"author": {
"name": "Amazon Web Services",
Expand Down Expand Up @@ -114,8 +114,8 @@
"url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues"
},
"dependencies": {
"@aws-lambda-powertools/commons": "2.24.0",
"@aws-lambda-powertools/jmespath": "2.24.0"
"@aws-lambda-powertools/commons": "2.24.1",
"@aws-lambda-powertools/jmespath": "2.24.1"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": ">=3.x",
Expand Down
4 changes: 4 additions & 0 deletions packages/jmespath/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

**Note:** Version bump only for this package

## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

**Note:** Version bump only for this package
Expand Down
4 changes: 2 additions & 2 deletions packages/jmespath/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda-powertools/jmespath",
"version": "2.24.0",
"version": "2.24.1",
"description": "A type safe and modern jmespath module to parse and extract data from JSON documents using JMESPath",
"author": {
"name": "Amazon Web Services",
Expand Down Expand Up @@ -71,7 +71,7 @@
"lib"
],
"dependencies": {
"@aws-lambda-powertools/commons": "2.24.0"
"@aws-lambda-powertools/commons": "2.24.1"
},
"repository": {
"type": "git",
Expand Down
4 changes: 4 additions & 0 deletions packages/kafka/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.24.1](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.24.0...v2.24.1) (2025-07-29)

**Note:** Version bump only for this package

## [2.24.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0) (2025-07-15)

**Note:** Version bump only for this package
Expand Down
Loading
Loading