Skip to content

Commit a087819

Browse files
committed
chore(maintenance): bump dependencies & drop nodejs14x (#1687)
1 parent 9368331 commit a087819

File tree

16 files changed

+251
-330
lines changed

16 files changed

+251
-330
lines changed

Diff for: .github/ISSUE_TEMPLATE/bug_report.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Bug report
22
description: Report a reproducible bug to help us improve
3-
title: "Bug: TITLE"
4-
labels: ["type/bug", "triage"]
5-
projects: ["aws-powertools/7"]
3+
title: 'Bug: TITLE'
4+
labels: ['type/bug', 'triage']
5+
projects: ['aws-powertools/7']
66
body:
77
- type: markdown
88
attributes:
99
value: |
1010
Thank you for submitting a bug report. Before you start, make sure that [the bug hasn't been reported already](https://github.com/aws-powertools/powertools-lambda-typescript/issues).
11-
11+
1212
Please add as much information as possible to help us reproduce, and remove any potential sensitive data.
1313
- type: textarea
1414
id: expected_behaviour
@@ -58,7 +58,7 @@ body:
5858
id: version
5959
attributes:
6060
label: Powertools for AWS Lambda (TypeScript) version
61-
placeholder: "latest, 1.3.0"
61+
placeholder: 'latest, 2.0.0'
6262
value: latest
6363
validations:
6464
required: true
@@ -95,4 +95,4 @@ body:
9595
value: |
9696
---
9797
98-
**Disclaimer**: After creating an issue, please wait until it is triaged and confirmed by a maintainer before implementing it. This will reduce amount of rework and the chance that a pull request gets rejected.
98+
**Disclaimer**: After creating an issue, please wait until it is triaged and confirmed by a maintainer before implementing it. This will reduce amount of rework and the chance that a pull request gets rejected.

Diff for: .github/workflows/reusable-run-linting-check-and-unit-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
2323
with:
2424
node-version: ${{ matrix.version }}
25-
cache: "npm"
25+
cache: 'npm'
2626
- name: Setup dependencies
2727
uses: ./.github/actions/cached-node-modules
2828
with:
@@ -37,7 +37,7 @@ jobs:
3737
NODE_ENV: dev
3838
strategy:
3939
matrix:
40-
example: ["sam", "cdk"]
40+
example: ['sam', 'cdk']
4141
fail-fast: false
4242
defaults:
4343
run:

Diff for: docs/snippets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "1.9.0",
3+
"version": "2.0.0",
44
"description": "A collection code snippets for the Powertools for AWS Lambda (TypeScript) docs",
55
"author": {
66
"name": "Amazon Web Services",

Diff for: examples/cdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
"phin": "^3.7.0",
5151
"source-map-support": "^0.5.21"
5252
}
53-
}
53+
}

Diff for: examples/sam/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
"@middy/core": "^4.7.0",
4242
"phin": "^3.7.0"
4343
}
44-
}
44+
}

Diff for: layers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@
4343
"aws-cdk-lib": "^2.127.0",
4444
"esbuild": "^0.20.0"
4545
}
46-
}
46+
}

Diff for: lerna.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
"packages/testing",
1111
"examples/cdk",
1212
"examples/sam",
13-
"layers"
13+
"layers",
14+
"docs/snippets"
1415
],
1516
"version": "1.18.1",
1617
"npmClient": "npm",
1718
"message": "chore(release): %s [skip ci]"
18-
}
19+
}

Diff for: packages/batch/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@
5151
"serverless",
5252
"nodejs"
5353
]
54-
}
54+
}

Diff for: packages/commons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@
4646
"serverless",
4747
"nodejs"
4848
]
49-
}
49+
}

Diff for: packages/idempotency/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@
117117
"aws-sdk-client-mock": "^3.0.1",
118118
"aws-sdk-client-mock-jest": "^3.0.1"
119119
}
120-
}
120+
}

Diff for: packages/logger/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"test": "npm run test:unit",
1414
"test:unit": "jest --group=unit --detectOpenHandles --coverage --verbose",
1515
"jest": "jest --detectOpenHandles --verbose",
16-
"test:e2e:nodejs14x": "RUNTIME=nodejs14x jest --group=e2e",
1716
"test:e2e:nodejs16x": "RUNTIME=nodejs16x jest --group=e2e",
1817
"test:e2e:nodejs18x": "RUNTIME=nodejs18x jest --group=e2e",
1918
"test:e2e:nodejs20x": "RUNTIME=nodejs20x jest --group=e2e",
@@ -67,4 +66,4 @@
6766
"serverless",
6867
"nodejs"
6968
]
70-
}
69+
}

0 commit comments

Comments
 (0)