Skip to content

Commit 8ec2456

Browse files
chore(release): v1.1.0 [skip ci]
1 parent f653c06 commit 8ec2456

19 files changed

+180
-94
lines changed

Diff for: CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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.1.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.0.2...v1.1.0) (2022-08-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **layers:** release process + remove duplicate code ([#1052](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1052)) ([f653c06](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/f653c065bd5586785e482d61d2738549d8ac9fd9))
12+
* **logger:** fix clearstate bug when lambda handler throws ([#1045](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1045)) ([5ebd1cf](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/5ebd1cf44a2a3b6d99923e5bb942af3327325241))
13+
* wrong scope in captureMethod ([#1026](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1026)) ([1a06fed](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/1a06fed74db02741c58bc05d8d5fce2e688d7879))
14+
15+
16+
### Features
17+
18+
* **build:** publish lib as a Lambda Layer ([#884](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/884)) ([c3a20c6](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/c3a20c61380a6b6944807f5abf12c9cafb254325)), closes [#1031](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1031)
19+
20+
21+
22+
23+
624
## [1.0.2](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.0.1...v1.0.2) (2022-07-19)
725

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

Diff for: 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.1.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.0.2...v1.1.0) (2022-08-12)
7+
8+
**Note:** Version bump only for package cdk-app
9+
10+
11+
12+
13+
614
## [1.0.2](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.0.1...v1.0.2) (2022-07-19)
715

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

Diff for: 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.

Diff for: 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.0.2",
3+
"version": "1.1.0",
44
"author": {
55
"name": "Amazon Web Services",
66
"url": "https://aws.amazon.com"
@@ -32,9 +32,9 @@
3232
"typescript": "^4.1.3"
3333
},
3434
"dependencies": {
35-
"@aws-lambda-powertools/logger": "^1.0.1",
36-
"@aws-lambda-powertools/metrics": "^1.0.1",
37-
"@aws-lambda-powertools/tracer": "^1.0.1",
35+
"@aws-lambda-powertools/logger": "^1.0.2",
36+
"@aws-lambda-powertools/metrics": "^1.0.2",
37+
"@aws-lambda-powertools/tracer": "^1.0.2",
3838
"@aws-sdk/client-sts": "^3.53.0",
3939
"@middy/core": "^2.5.6",
4040
"@types/aws-lambda": "^8.10.86",

Diff for: 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.1.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.0.2...v1.1.0) (2022-08-12)
7+
8+
**Note:** Version bump only for package powertools-typescript-sam-example
9+
10+
11+
12+
13+
614
## [1.0.2](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.0.1...v1.0.2) (2022-07-19)
715

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

Diff for: examples/sam/package-lock.json

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

Diff for: examples/sam/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powertools-typescript-sam-example",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"author": {
55
"name": "Amazon Web Services",
66
"url": "https://aws.amazon.com"
@@ -28,9 +28,9 @@
2828
"typescript": "^4.1.3"
2929
},
3030
"dependencies": {
31-
"@aws-lambda-powertools/logger": "^1.0.1",
32-
"@aws-lambda-powertools/metrics": "^1.0.1",
33-
"@aws-lambda-powertools/tracer": "^1.0.1",
31+
"@aws-lambda-powertools/logger": "^1.0.2",
32+
"@aws-lambda-powertools/metrics": "^1.0.2",
33+
"@aws-lambda-powertools/tracer": "^1.0.2",
3434
"aws-sdk": "^2.1122.0"
3535
}
36-
}
36+
}

Diff for: layer-publisher/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.1.0](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.0.2...v1.1.0) (2022-08-12)
7+
8+
9+
### Features
10+
11+
* **build:** publish lib as a Lambda Layer ([#884](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/884)) ([c3a20c6](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/c3a20c61380a6b6944807f5abf12c9cafb254325)), closes [#1031](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1031)

Diff for: 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.

Diff for: 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": "0.1.0",
3+
"version": "1.1.0",
44
"bin": {
55
"layer-publisher": "bin/layer-publisher.js"
66
},

Diff for: 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.0.2",
11+
"version": "1.1.0",
1212
"npmClient": "npm",
1313
"message": "chore(release): %s [skip ci]"
1414
}

0 commit comments

Comments
 (0)