Skip to content

Commit 3a6d791

Browse files
chore(release): v1.3.0 [skip ci]
1 parent 6f14fb3 commit 3a6d791

19 files changed

+245
-92
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,33 @@
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.3.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.2.1...v1.3.0) (2022-10-17)
7+
8+
9+
### Bug Fixes
10+
11+
* **all:** update version command to use lint-fix ([#1119](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1119)) ([6f14fb3](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/6f14fb3229882b1dd0c20d18c87a542993432da9))
12+
* captureColdStartMetric and throwOnEmptyMetrics when set to false was interpreted as true ([#1090](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1090)) ([127aad4](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/127aad4698412d72368c093812dd4034839119ca))
13+
* captureMethod correctly detect method name when used with external decorators ([#1109](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1109)) ([a574406](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/a574406134b65c17f56dfb3d3130aa237ece4160))
14+
* **logger:** wait for decorated method return before clearing out state ([#1087](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1087)) ([133ed3c](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/133ed3c31ce1d99eb8f427f54721896781438ef7))
15+
* ts-node version for layer-publisher ([#1112](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1112)) ([ee243de](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/ee243dea0b9268ed793df19f0b04e680f68e41a6))
16+
17+
18+
### Features
19+
20+
* **idempotency:** create initial class structure for function idempotency ([#1086](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1086)) ([06fbaae](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/06fbaae4db3825557aa84d40372a53422e42840d))
21+
* publish lib as Lambda Layer ([#1095](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1095)) ([83f6efb](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/83f6efba1db32ba2dc8fff026e258b5de66783e0))
22+
* **tracer:** specify subsegment name when capturing class method ([#1092](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1092)) ([d4174eb](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/d4174eb7a894215e2d37f306016429de3bde8029))
23+
24+
25+
### Reverts
26+
27+
* Revert "chore(release): v1.3.0 [skip ci]" ([237b99f](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/237b99f9f6eff5e6e26d779603cf13cd4422c156))
28+
29+
30+
31+
32+
633
## [1.2.1](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.2.0...v1.2.1) (2022-08-25)
734

835
**Note:** Version bump only for package aws-lambda-powertools-typescript

examples/cdk/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.3.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.2.1...v1.3.0) (2022-10-17)
7+
8+
9+
### Features
10+
11+
* publish lib as Lambda Layer ([#1095](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1095)) ([83f6efb](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/83f6efba1db32ba2dc8fff026e258b5de66783e0))
12+
13+
14+
### Reverts
15+
16+
* Revert "chore(release): v1.3.0 [skip ci]" ([237b99f](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/237b99f9f6eff5e6e26d779603cf13cd4422c156))
17+
18+
19+
20+
21+
622
## [1.2.1](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.2.0...v1.2.1) (2022-08-25)
723

824
**Note:** Version bump only for package cdk-app

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-app",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"author": {
55
"name": "Amazon Web Services",
66
"url": "https://aws.amazon.com"
@@ -34,9 +34,9 @@
3434
"typescript": "^4.1.3"
3535
},
3636
"dependencies": {
37-
"@aws-lambda-powertools/logger": "^1.2.0",
38-
"@aws-lambda-powertools/metrics": "^1.2.0",
39-
"@aws-lambda-powertools/tracer": "^1.2.0",
37+
"@aws-lambda-powertools/logger": "^1.2.1",
38+
"@aws-lambda-powertools/metrics": "^1.2.1",
39+
"@aws-lambda-powertools/tracer": "^1.2.1",
4040
"@aws-sdk/client-sts": "^3.53.0",
4141
"@middy/core": "^2.5.6",
4242
"@types/aws-lambda": "^8.10.86",

examples/sam/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.3.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.2.1...v1.3.0) (2022-10-17)
7+
8+
9+
### Features
10+
11+
* publish lib as Lambda Layer ([#1095](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1095)) ([83f6efb](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/83f6efba1db32ba2dc8fff026e258b5de66783e0))
12+
13+
14+
### Reverts
15+
16+
* Revert "chore(release): v1.3.0 [skip ci]" ([237b99f](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/237b99f9f6eff5e6e26d779603cf13cd4422c156))
17+
18+
19+
20+
21+
622
## [1.2.1](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.2.0...v1.2.1) (2022-08-25)
723

824
**Note:** Version bump only for package powertools-typescript-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": "powertools-typescript-sam-example",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"author": {
55
"name": "Amazon Web Services",
66
"url": "https://aws.amazon.com"
@@ -30,9 +30,9 @@
3030
"typescript": "^4.1.3"
3131
},
3232
"dependencies": {
33-
"@aws-lambda-powertools/logger": "^1.2.0",
34-
"@aws-lambda-powertools/metrics": "^1.2.0",
35-
"@aws-lambda-powertools/tracer": "^1.2.0",
33+
"@aws-lambda-powertools/logger": "^1.2.1",
34+
"@aws-lambda-powertools/metrics": "^1.2.1",
35+
"@aws-lambda-powertools/tracer": "^1.2.1",
3636
"aws-sdk": "^2.1122.0"
3737
}
3838
}

0 commit comments

Comments
 (0)