Skip to content

Commit 87ccb4c

Browse files
authored
Merge branch 'main' into patch-1
2 parents e9fb35a + 88a4619 commit 87ccb4c

37 files changed

Lines changed: 4130 additions & 2040 deletions
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: Update Metadata Regions
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
update-regions:
9+
name: Update Regions
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Download regions
13+
env:
14+
URL: https://d3mqmgkwnwa8vm.cloudfront.net/regions.json
15+
id: download
16+
run: |
17+
response=$(curl $URL)
18+
echo "REGIONS=${response}" >> "$GITHUB_OUTPUT"
19+
20+
status=$(curl -s -o /dev/null -w "%{http_code}" $URL)
21+
echo "STATUS=${status}" >> "$GITHUB_OUTPUT"
22+
- uses: actions/checkout@v3
23+
- uses: actions/github-script@v7
24+
if: ${{ steps.download.outputs.STATUS == 200 }}
25+
env:
26+
REGIONS: ${{ steps.download.outputs.REGIONS }}
27+
with:
28+
script: |
29+
const script = require('./scripts/update-metadata-regions.js')
30+
script()
31+
- name: Create Patch
32+
run: |-
33+
git add .
34+
git diff --patch --staged > ${{ runner.temp }}/update-spec.patch
35+
- name: Upload Patch
36+
uses: actions/upload-artifact@v3
37+
with:
38+
name: update-spec.patch
39+
path: ${{ runner.temp }}/update-spec.patch
40+
41+
pr:
42+
name: Create Pull Request
43+
needs: update-regions
44+
permissions:
45+
contents: write
46+
pull-requests: write
47+
runs-on: ubuntu-latest
48+
steps:
49+
- name: Check Out
50+
uses: actions/checkout@v4
51+
52+
- name: Download patch
53+
uses: actions/download-artifact@v3
54+
with:
55+
name: update-spec.patch
56+
path: ${{ runner.temp }}
57+
58+
- name: Apply patch
59+
run: '[ -s ${{ runner.temp }}/update-spec.patch ] && git apply ${{ runner.temp }}/update-spec.patch || echo "Empty patch. Skipping."'
60+
61+
- name: Make Pull Request
62+
uses: peter-evans/create-pull-request@v5
63+
with:
64+
# Git commit details
65+
branch: automation/region-update
66+
author: aws-cdk-automation <aws-cdk-automation@users.noreply.github.com>
67+
commit-message: |-
68+
feat(region-info): update Metadata regions
69+
Update the list of regions where the CDK deploys the `AWS::CDK::Metadata` resource.
70+
# Pull Request details
71+
title: "feat(region-info): update Metadata regions"
72+
body: |-
73+
Update the list of regions where the CDK deploys the `AWS::CDK::Metadata` resource.
74+
labels: contribution/core,dependencies,auto-approve,pr-linter/exempt-integ-test,pr-linter/exempt-readme,pr-linter/exempt-test
75+
team-reviewers: aws-cdk-team
76+
# Github prevents further Github actions to be run if the default Github token is used.
77+
# Instead use a privileged token here, so further GH actions can be triggered on this PR.
78+
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}

CHANGELOG.v2.alpha.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.108.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.108.0-alpha.0...v2.108.1-alpha.0) (2023-11-14)
6+
57
## [2.108.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.107.0-alpha.0...v2.108.0-alpha.0) (2023-11-13)
68

79
## [2.107.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.106.1-alpha.0...v2.107.0-alpha.0) (2023-11-13)

CHANGELOG.v2.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.108.1](https://github.com/aws/aws-cdk/compare/v2.108.0...v2.108.1) (2023-11-14)
6+
7+
8+
### Bug Fixes
9+
10+
* **elasticloadbalancingv2:** access logging fails on imported bucket ([#27948](https://github.com/aws/aws-cdk/issues/27948)) ([8243601](https://github.com/aws/aws-cdk/commit/8243601866e8c1771a18adb4c93579a7099984e3)), closes [#27928](https://github.com/aws/aws-cdk/issues/27928)
11+
512
## [2.108.0](https://github.com/aws/aws-cdk/compare/v2.107.0...v2.108.0) (2023-11-13)
613

714

@@ -514,6 +521,7 @@ All notable changes to this project will be documented in this file. See [standa
514521
* **ec2:** support using ssm parameter to resolve AMI ID at instance launch time ([#26273](https://github.com/aws/aws-cdk/issues/26273)) ([2462b0b](https://github.com/aws/aws-cdk/commit/2462b0b0155a5cf5382b1780e8a8cd40d1206a95))
515522
* **eks:** support eks with k8s 1.27 ([#25897](https://github.com/aws/aws-cdk/issues/25897)) ([fdd3309](https://github.com/aws/aws-cdk/commit/fdd3309ee98a8dcd9542d8ffec9defcdbdcd28af))
516523
* **lambda-event-sources:** added filters support to kafka sources ([#26366](https://github.com/aws/aws-cdk/issues/26366)) ([c575dde](https://github.com/aws/aws-cdk/commit/c575dded26834bd55618813b74046d2f380d1940)), closes [#26348](https://github.com/aws/aws-cdk/issues/26348)
524+
* **lambda:** Add Lambda runtime Python 3.11, `PYTHON_3_11` ([#26248](https://github.com/aws/aws-cdk/issues/26248)) ([e2b7791](https://github.com/aws/aws-cdk/commit/e2b7791072e187f441eb72a5f6d0462748ec5112))
517525
* **opensearch:** opensearch 2.7 engine version ([#26313](https://github.com/aws/aws-cdk/issues/26313)) ([fb580b5](https://github.com/aws/aws-cdk/commit/fb580b56541a63485fc1ef24cd75e5f9ae18f940))
518526
* **opensearchservice:** support for MultiAZWithStandBy (under feature flag) ([#26082](https://github.com/aws/aws-cdk/issues/26082)) ([6c75581](https://github.com/aws/aws-cdk/commit/6c75581ae2b9537fa9d1d724b837fe81ae22d345)), closes [#26026](https://github.com/aws/aws-cdk/issues/26026)
519527
* **rds:** support Aurora MySQL engine v. 2.11.3 ([#26419](https://github.com/aws/aws-cdk/issues/26419)) ([c646644](https://github.com/aws/aws-cdk/commit/c6466448e53f2f486ec40ff176b8623257e4b3f8)), closes [#26407](https://github.com/aws/aws-cdk/issues/26407)
@@ -885,7 +893,7 @@ CHANGES:
885893

886894
### Features
887895

888-
* **aws-lambda:** Add AWS Lambda runtime python3.10 ([08fb3cd](https://github.com/aws/aws-cdk/commit/08fb3cdab13e2e2a68ceadb36702a108c429e674))
896+
* **aws-lambda:** Add AWS Lambda runtime Python 3.10, `PYTHON_3_10` ([08fb3cd](https://github.com/aws/aws-cdk/commit/08fb3cdab13e2e2a68ceadb36702a108c429e674))
889897

890898
## [2.74.0](https://github.com/aws/aws-cdk/compare/v2.73.0...v2.74.0) (2023-04-13)
891899

packages/@aws-cdk-testing/framework-integ/test/aws-apigateway/test/integ.restapi.access-log-firehose.js.snapshot/apigatewayaccesslogsfirehoseDefaultTestDeployAssert6376A91B.assets.json

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-apigateway/test/integ.restapi.access-log-firehose.js.snapshot/apigatewayaccesslogsfirehoseDefaultTestDeployAssert6376A91B.template.json

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-apigateway/test/integ.restapi.access-log-firehose.js.snapshot/asset.2ec8ad9e91dcd6e7ad6a5c84ffc6c9c05c408aca3b26ceb2816d81043e6c4dc3/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-apigateway/test/integ.restapi.access-log-firehose.js.snapshot/cdk.out

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-apigateway/test/integ.restapi.access-log-firehose.js.snapshot/integ.json

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)