Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 1 addition & 1 deletion packages/@aws-cdk/integ-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"@aws-cdk/cloudformation-diff": "0.0.0",
"@aws-cdk/cx-api": "0.0.0",
"@aws-cdk/aws-service-spec": "^0.1.49",
"cdk-assets": "3.0.0-rc.111",
"cdk-assets": "3.0.0-rc.127",
"@aws-cdk/cdk-cli-wrapper": "0.0.0",
"aws-cdk": "0.0.0",
"chalk": "^4",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/toolkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"@smithy/util-waiter": "3.1.6",
"archiver": "^5.3.2",
"camelcase": "^6.3.0",
"cdk-assets": "^3.0.0-rc.111",
"cdk-assets": "^3.0.0-rc.127",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The caret has no effect with pre-release versions.

"cdk-from-cfn": "^0.162.0",
"chalk": "^4",
"chokidar": "^3.6.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/aws-cdk/lib/util/asset-publishing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,9 @@ export class PublishingAws implements IAws {
}
}

function ignore() {
}

export const EVENT_TO_LOGGER: Record<EventType, (x: string) => void> = {
build: debug,
cached: debug,
Expand All @@ -231,6 +234,10 @@ export const EVENT_TO_LOGGER: Record<EventType, (x: string) => void> = {
start: info,
success: info,
upload: debug,
shell_open: debug,
shell_stderr: ignore,
shell_stdout: ignore,
shell_close: ignore,
};

class PublishingProgressListener implements IPublishProgressListener {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"@smithy/util-waiter": "^3.2.0",
"archiver": "^5.3.2",
"camelcase": "^6.3.0",
"cdk-assets": "^3.0.0-rc.123",
"cdk-assets": "^3.0.0-rc.127",
"cdk-from-cfn": "^0.162.0",
"chalk": "^4",
"chokidar": "^3.6.0",
Expand Down
Loading
Loading