Skip to content

Commit

Permalink
Merge branch 'main' into vkukreja/upgrade-urllib3
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Nov 8, 2023
2 parents 7b2388a + c025d64 commit 797d89c
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 40 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.v2.alpha.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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.

## [2.105.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.104.0-alpha.0...v2.105.0-alpha.0) (2023-11-07)

## [2.104.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.103.1-alpha.0...v2.104.0-alpha.0) (2023-11-02)


Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

## [2.105.0](https://github.com/aws/aws-cdk/compare/v2.104.0...v2.105.0) (2023-11-07)


### Features

* **lambda:** new lambda runtime provided.al2023 ([#27856](https://github.com/aws/aws-cdk/issues/27856)) ([e66ca89](https://github.com/aws/aws-cdk/commit/e66ca89d5714cc79dc41815006cec863baf7abb0))

## [2.104.0](https://github.com/aws/aws-cdk/compare/v2.103.1...v2.104.0) (2023-11-02)


Expand Down
37 changes: 0 additions & 37 deletions packages/aws-cdk-lib/region-info/build-tools/fact-tables.ts
Original file line number Diff line number Diff line change
@@ -1,41 +1,4 @@
/* eslint-disable @aws-cdk/no-literal-partition */
export const AWS_CDK_METADATA = new Set([
'af-south-1',
'ap-east-1',
'ap-northeast-1',
'ap-northeast-2',
// 'ap-northeast-3',
'ap-south-1',
// 'ap-south-2',
'ap-southeast-1',
'ap-southeast-2',
// 'ap-southeast-3',
// 'ap-southeast-4',
'ca-central-1',
'cn-north-1',
'cn-northwest-1',
'eu-central-1',
// 'eu-central-2',
'eu-north-1',
'eu-south-1',
// 'eu-south-2',
'eu-west-1',
'eu-west-2',
'eu-west-3',
// 'il-central-1',
// 'me-central-1',
'me-south-1',
'sa-east-1',
'us-east-1',
'us-east-2',
// 'us-gov-east-1',
// 'us-gov-west-1',
// 'us-iso-east-1',
// 'us-isob-east-1',
'us-west-1',
'us-west-2',
]);

/**
* The hosted zone Id if using an alias record in Route53.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as path from 'path';
import * as fs from 'fs-extra';
import {
APPMESH_ECR_ACCOUNTS,
AWS_CDK_METADATA,
CLOUDWATCH_LAMBDA_INSIGHTS_ARNS,
DLC_REPOSITORY_ACCOUNTS,
ELBV2_ACCOUNTS,
Expand All @@ -14,6 +13,7 @@ import {
PARAMS_AND_SECRETS_LAMBDA_LAYER_ARNS,
APPCONFIG_LAMBDA_LAYER_ARNS,
} from './fact-tables';
import { AWS_CDK_METADATA } from './metadata';
import {
AWS_REGIONS,
AWS_SERVICES,
Expand Down
33 changes: 33 additions & 0 deletions packages/aws-cdk-lib/region-info/build-tools/metadata.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* Do not edit this file manually. To prevent misconfiguration, this file
* should only be modified by an automated GitHub workflow, that ensures
* that the regions present in this list correspond to all the regions
* where we have the AWS::CDK::Metadata handler deployed.
*
* See: https://github.com/aws/aws-cdk/issues/27189
*/

export const AWS_CDK_METADATA = new Set([
'af-south-1',
'ap-east-1',
'ap-northeast-1',
'ap-northeast-2',
'ap-south-1',
'ap-southeast-1',
'ap-southeast-2',
'ca-central-1',
'cn-north-1',
'cn-northwest-1',
'eu-central-1',
'eu-north-1',
'eu-south-1',
'eu-west-1',
'eu-west-2',
'eu-west-3',
'me-south-1',
'sa-east-1',
'us-east-1',
'us-east-2',
'us-west-1',
'us-west-2',
]);
4 changes: 2 additions & 2 deletions version.v2.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.104.0",
"alphaVersion": "2.104.0-alpha.0"
"version": "2.105.0",
"alphaVersion": "2.105.0-alpha.0"
}

0 comments on commit 797d89c

Please sign in to comment.