Skip to content

Commit 3da04d7

Browse files
chore(release): v1.5.0 [skip ci]
1 parent 16529fc commit 3da04d7

19 files changed

+172
-88
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.4.1...v1.5.0) (2022-11-25)
7+
8+
9+
### Bug Fixes
10+
11+
* **logger:** merge child logger options correctly ([#1178](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1178)) ([cb91374](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/cb9137436cc3a10d6c869506ddd07e35963ba8b2))
12+
13+
14+
### Features
15+
16+
* **idempotency:** Add persistence layer and DynamoDB implementation ([#1110](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1110)) ([0a6676a](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/0a6676ac24abdadaaff2d95fc8d75d3a7137a00b))
17+
* **logger:** disable logs while testing with `jest --silent` in dev env ([#1165](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1165)) ([6f0c307](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/6f0c30728f31d60433b3afb6983c64110c28d27e))
18+
* **logger:** pretty printing logs in local and non-prod environment ([#1141](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1141)) ([8d52660](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/8d52660eb6b8324e284421c2484c45d9a0839346))
19+
* **parameters:** added `BaseProvider` class ([#1168](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1168)) ([d717a26](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/d717a26bba086be4c01f1458422662f8bfba09a9))
20+
21+
22+
23+
24+
625
## [1.4.1](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.4.0...v1.4.1) (2022-11-09)
726

827

examples/cdk/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.4.1...v1.5.0) (2022-11-25)
7+
8+
**Note:** Version bump only for package cdk-sample
9+
10+
11+
12+
13+
614
## [1.4.1](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.4.0...v1.4.1) (2022-11-09)
715

816
**Note:** Version bump only for package cdk-sample

examples/cdk/package-lock.json

+35-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/cdk/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cdk-sample",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"author": {
55
"name": "Amazon Web Services",
66
"url": "https://aws.amazon.com"
@@ -39,9 +39,9 @@
3939
"typescript": "^4.1.3"
4040
},
4141
"dependencies": {
42-
"@aws-lambda-powertools/logger": "^1.4.0",
43-
"@aws-lambda-powertools/metrics": "^1.4.0",
44-
"@aws-lambda-powertools/tracer": "^1.4.0",
42+
"@aws-lambda-powertools/logger": "^1.4.1",
43+
"@aws-lambda-powertools/metrics": "^1.4.1",
44+
"@aws-lambda-powertools/tracer": "^1.4.1",
4545
"@aws-sdk/client-sts": "^3.53.0",
4646
"@middy/core": "^2.5.6",
4747
"@types/aws-lambda": "^8.10.86",

examples/sam/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.4.1...v1.5.0) (2022-11-25)
7+
8+
**Note:** Version bump only for package sam-example
9+
10+
11+
12+
13+
614
## [1.4.1](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.4.0...v1.4.1) (2022-11-09)
715

816
**Note:** Version bump only for package sam-example

examples/sam/package-lock.json

+35-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/sam/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sam-example",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"author": {
55
"name": "Amazon Web Services",
66
"url": "https://aws.amazon.com"
@@ -35,9 +35,9 @@
3535
"typescript": "^4.1.3"
3636
},
3737
"dependencies": {
38-
"@aws-lambda-powertools/logger": "^1.4.0",
39-
"@aws-lambda-powertools/metrics": "^1.4.0",
40-
"@aws-lambda-powertools/tracer": "^1.4.0",
38+
"@aws-lambda-powertools/logger": "^1.4.1",
39+
"@aws-lambda-powertools/metrics": "^1.4.1",
40+
"@aws-lambda-powertools/tracer": "^1.4.1",
4141
"aws-sdk": "^2.1122.0"
4242
}
4343
}

layer-publisher/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.4.1...v1.5.0) (2022-11-25)
7+
8+
**Note:** Version bump only for package layer-publisher
9+
10+
11+
12+
13+
614
## [1.4.1](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.4.0...v1.4.1) (2022-11-09)
715

816
**Note:** Version bump only for package layer-publisher

layer-publisher/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

layer-publisher/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "layer-publisher",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"bin": {
55
"layer-publisher": "bin/layer-publisher.js"
66
},

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"examples/sam",
99
"layer-publisher"
1010
],
11-
"version": "1.4.1",
11+
"version": "1.5.0",
1212
"npmClient": "npm",
1313
"message": "chore(release): %s [skip ci]"
1414
}

0 commit comments

Comments
 (0)