Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.203.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.203.0-alpha.0...v2.203.1-alpha.0) (2025-07-02)

## [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)


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

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.203.1](https://github.com/aws/aws-cdk/compare/v2.203.0...v2.203.1) (2025-07-02)

### Bug Fixes

* "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)

## [2.203.0](https://github.com/aws/aws-cdk/compare/v2.202.0...v2.203.0) (2025-07-01)


Expand Down
39 changes: 0 additions & 39 deletions packages/aws-cdk-lib/core/lib/private/feature-flag-report.ts

This file was deleted.

3 changes: 0 additions & 3 deletions packages/aws-cdk-lib/core/lib/private/synthesis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import { Stack } from '../stack';
import { ISynthesisSession } from '../stack-synthesizers/types';
import { Stage, StageSynthesisOptions } from '../stage';
import { IPolicyValidationPluginBeta1 } from '../validation';
import { generateFeatureFlagReport } from './feature-flag-report';
import { ConstructTree } from '../validation/private/construct-tree';
import { PolicyValidationReportFormatter, NamedValidationPluginReport } from '../validation/private/report';

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

generateFeatureFlagReport(builder, root);

const assembly = builder.buildAssembly();

invokeValidationPlugins(root, builder.outdir, assembly);
Expand Down
51 changes: 0 additions & 51 deletions packages/aws-cdk-lib/core/test/feature-flag-report.test.ts

This file was deleted.

6 changes: 3 additions & 3 deletions packages/aws-cdk-lib/core/test/stage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ describe('stage', () => {
const rootAssembly = app.synth();

// THEN
expect(rootAssembly.manifest.artifacts).toMatchObject({
expect(rootAssembly.manifest.artifacts).toEqual({
'assembly-StageLevel1': {
type: 'cdk:cloud-assembly',
properties: {
Expand All @@ -263,7 +263,7 @@ describe('stage', () => {
});

const assemblyLevel1 = rootAssembly.getNestedAssembly('assembly-StageLevel1');
expect(assemblyLevel1.manifest.artifacts).toMatchObject({
expect(assemblyLevel1.manifest.artifacts).toEqual({
'assembly-StageLevel1-StageLevel2': {
type: 'cdk:cloud-assembly',
properties: {
Expand All @@ -274,7 +274,7 @@ describe('stage', () => {
});

const assemblyLevel2 = assemblyLevel1.getNestedAssembly('assembly-StageLevel1-StageLevel2');
expect(assemblyLevel2.manifest.artifacts).toMatchObject({
expect(assemblyLevel2.manifest.artifacts).toEqual({
'assembly-StageLevel1-StageLevel2-StageLevel3': {
type: 'cdk:cloud-assembly',
properties: {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/core/test/synthesis.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('synthesis', () => {
// THEN
expect(app.synth()).toEqual(session); // same session if we synth() again
expect(list(session.directory)).toEqual(['cdk.out', 'manifest.json', 'tree.json']);
expect(readJson(session.directory, 'manifest.json').artifacts).toMatchObject({
expect(readJson(session.directory, 'manifest.json').artifacts).toEqual({
Tree: {
type: 'cdk:tree',
properties: { file: 'tree.json' },
Expand Down
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.203.0",
"alphaVersion": "2.203.0-alpha.0"
"version": "2.203.1",
"alphaVersion": "2.203.1-alpha.0"
}
Loading