Skip to content

Commit

Permalink
Merge branch 'main' into conroy/format
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Dec 1, 2023
2 parents 76119c2 + 44b79eb commit 9275b6b
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 185 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.v2.alpha.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.113.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.112.0-alpha.0...v2.113.0-alpha.0) (2023-12-01)


### Features

* **msk-alpha:** MSK Kafka versions 2.8.2.tiered and 3.5.1 and StorageMode property ([#27560](https://github.com/aws/aws-cdk/issues/27560)) ([f9f15fa](https://github.com/aws/aws-cdk/commit/f9f15fa448b8a57c2a40c070e105042bdea1f26c))

## [2.112.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.111.0-alpha.0...v2.112.0-alpha.0) (2023-12-01)


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.113.0](https://github.com/aws/aws-cdk/compare/v2.112.0...v2.113.0) (2023-12-01)


### Features

* update AWS Service Spec ([#28222](https://github.com/aws/aws-cdk/issues/28222)) ([f4c1d12](https://github.com/aws/aws-cdk/commit/f4c1d1253ee34c2837a57a93faa47c9da97ef6d8))

## [2.112.0](https://github.com/aws/aws-cdk/compare/v2.111.0...v2.112.0) (2023-12-01)


Expand Down
6 changes: 3 additions & 3 deletions packages/aws-cdk-lib/aws-codebuild/lib/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export interface BuildEnvironmentCertificate {
* The bucket where the certificate is
*/
readonly bucket: s3.IBucket;

/**
* The full path and name of the key file
*/
Expand Down Expand Up @@ -774,7 +775,6 @@ export interface BindToCodePipelineOptions {
* A representation of a CodeBuild Project.
*/
export class Project extends ProjectBase {

public static fromProjectArn(scope: Construct, id: string, projectArn: string): IProject {
const parsedArn = Stack.of(scope).splitArn(projectArn, ArnFormat.SLASH_RESOURCE_NAME);

Expand Down Expand Up @@ -1923,7 +1923,7 @@ export enum WindowsImageType {
/**
* The WINDOWS_SERVER_2019_CONTAINER environment type
*/
SERVER_2019 = 'WINDOWS_SERVER_2019_CONTAINER'
SERVER_2019 = 'WINDOWS_SERVER_2019_CONTAINER',
}

/**
Expand Down Expand Up @@ -2133,7 +2133,7 @@ export enum BuildEnvironmentVariableType {
/**
* An environment variable stored in AWS Secrets Manager.
*/
SECRETS_MANAGER = 'SECRETS_MANAGER'
SECRETS_MANAGER = 'SECRETS_MANAGER',
}

/**
Expand Down
5 changes: 2 additions & 3 deletions packages/aws-cdk-lib/aws-codebuild/lib/report-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export enum ReportGroupType {
/**
* The report group contains code coverage reports.
*/
CODE_COVERAGE = 'CODE_COVERAGE'
CODE_COVERAGE = 'CODE_COVERAGE',
}

/**
Expand Down Expand Up @@ -118,14 +118,13 @@ export interface ReportGroupProps {
*
* @default TEST
*/
readonly type?: ReportGroupType
readonly type?: ReportGroupType;
}

/**
* The ReportGroup resource class.
*/
export class ReportGroup extends ReportGroupBase {

/**
* Reference an existing ReportGroup,
* defined outside of the CDK code,
Expand Down

This file was deleted.

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.112.0",
"alphaVersion": "2.112.0-alpha.0"
"version": "2.113.0",
"alphaVersion": "2.113.0-alpha.0"
}

0 comments on commit 9275b6b

Please sign in to comment.