From ba15d609dfebf6e652a1de2e591c2a9726ef0ac3 Mon Sep 17 00:00:00 2001 From: Momo Kornher Date: Thu, 3 Apr 2025 10:16:31 +0100 Subject: [PATCH] fix(toolkit-lib): remove unused extraUserAgent option from WatchOptions BREAKING CHANGE: The `extraUserAgent`option in `WatchOptions` interface was unused and had no effect on functionality. This change removes the unused parameter. --- packages/@aws-cdk/toolkit-lib/lib/actions/watch/index.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/packages/@aws-cdk/toolkit-lib/lib/actions/watch/index.ts b/packages/@aws-cdk/toolkit-lib/lib/actions/watch/index.ts index 25824c017..eb09ea0af 100644 --- a/packages/@aws-cdk/toolkit-lib/lib/actions/watch/index.ts +++ b/packages/@aws-cdk/toolkit-lib/lib/actions/watch/index.ts @@ -1,13 +1,6 @@ import type { BaseDeployOptions } from '../deploy/private'; export interface WatchOptions extends BaseDeployOptions { - /** - * The extra string to append to the User-Agent header when performing AWS SDK calls. - * - * @default - nothing extra is appended to the User-Agent header - */ - readonly extraUserAgent?: string; - /** * Watch the files in this list *