Skip to content

Commit 481a50c

Browse files
authored
chore(release): v2.203.1 (#34881)
See CHANGELOG. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
2 parents 740bb0e + 1bd0372 commit 481a50c

File tree

8 files changed

+14
-99
lines changed

8 files changed

+14
-99
lines changed

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.203.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.203.0-alpha.0...v2.203.1-alpha.0) (2025-07-02)
6+
57
## [2.203.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.202.0-alpha.0...v2.203.0-alpha.0) (2025-07-01)
68

79

CHANGELOG.v2.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.203.1](https://github.com/aws/aws-cdk/compare/v2.203.0...v2.203.1) (2025-07-02)
6+
7+
### Bug Fixes
8+
9+
* "Invalid Assembly Manifest" when used with CLI 2.1017.0 and 2.1018.0 ([#34880](https://github.com/aws/aws-cdk/issues/34880)) ([32ee050](https://github.com/aws/aws-cdk/commit/32ee0504a83647a88b24361094ef76aef18e7b8b)), closes [aws/aws-cdk#34798](https://github.com/aws/aws-cdk/issues/34798)
10+
511
## [2.203.0](https://github.com/aws/aws-cdk/compare/v2.202.0...v2.203.0) (2025-07-01)
612

713

packages/aws-cdk-lib/core/lib/private/feature-flag-report.ts

Lines changed: 0 additions & 39 deletions
This file was deleted.

packages/aws-cdk-lib/core/lib/private/synthesis.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import { Stack } from '../stack';
1515
import { ISynthesisSession } from '../stack-synthesizers/types';
1616
import { Stage, StageSynthesisOptions } from '../stage';
1717
import { IPolicyValidationPluginBeta1 } from '../validation';
18-
import { generateFeatureFlagReport } from './feature-flag-report';
1918
import { ConstructTree } from '../validation/private/construct-tree';
2019
import { PolicyValidationReportFormatter, NamedValidationPluginReport } from '../validation/private/report';
2120

@@ -65,8 +64,6 @@ export function synthesize(root: IConstruct, options: SynthesisOptions = { }): c
6564
// stacks to add themselves to the synthesized cloud assembly.
6665
synthesizeTree(root, builder, options.validateOnSynthesis);
6766

68-
generateFeatureFlagReport(builder, root);
69-
7067
const assembly = builder.buildAssembly();
7168

7269
invokeValidationPlugins(root, builder.outdir, assembly);

packages/aws-cdk-lib/core/test/feature-flag-report.test.ts

Lines changed: 0 additions & 51 deletions
This file was deleted.

packages/aws-cdk-lib/core/test/stage.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ describe('stage', () => {
252252
const rootAssembly = app.synth();
253253

254254
// THEN
255-
expect(rootAssembly.manifest.artifacts).toMatchObject({
255+
expect(rootAssembly.manifest.artifacts).toEqual({
256256
'assembly-StageLevel1': {
257257
type: 'cdk:cloud-assembly',
258258
properties: {
@@ -263,7 +263,7 @@ describe('stage', () => {
263263
});
264264

265265
const assemblyLevel1 = rootAssembly.getNestedAssembly('assembly-StageLevel1');
266-
expect(assemblyLevel1.manifest.artifacts).toMatchObject({
266+
expect(assemblyLevel1.manifest.artifacts).toEqual({
267267
'assembly-StageLevel1-StageLevel2': {
268268
type: 'cdk:cloud-assembly',
269269
properties: {
@@ -274,7 +274,7 @@ describe('stage', () => {
274274
});
275275

276276
const assemblyLevel2 = assemblyLevel1.getNestedAssembly('assembly-StageLevel1-StageLevel2');
277-
expect(assemblyLevel2.manifest.artifacts).toMatchObject({
277+
expect(assemblyLevel2.manifest.artifacts).toEqual({
278278
'assembly-StageLevel1-StageLevel2-StageLevel3': {
279279
type: 'cdk:cloud-assembly',
280280
properties: {

packages/aws-cdk-lib/core/test/synthesis.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('synthesis', () => {
2424
// THEN
2525
expect(app.synth()).toEqual(session); // same session if we synth() again
2626
expect(list(session.directory)).toEqual(['cdk.out', 'manifest.json', 'tree.json']);
27-
expect(readJson(session.directory, 'manifest.json').artifacts).toMatchObject({
27+
expect(readJson(session.directory, 'manifest.json').artifacts).toEqual({
2828
Tree: {
2929
type: 'cdk:tree',
3030
properties: { file: 'tree.json' },

version.v2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.203.0",
3-
"alphaVersion": "2.203.0-alpha.0"
2+
"version": "2.203.1",
3+
"alphaVersion": "2.203.1-alpha.0"
44
}

0 commit comments

Comments
 (0)