Skip to content

chore(deps): update dependency aws-cdk-lib to v2.269.0 - #189

Open
renovate[bot] wants to merge 1 commit into
sagafrom
renovate/aws-cdk-monorepo
Open

renovate[bot] wants to merge 1 commit into
sagafrom
renovate/aws-cdk-monorepo

Conversation

@renovate

@renovate renovate Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
aws-cdk-lib (source) 2.265.02.269.0 age confidence

Release Notes

aws/aws-cdk (aws-cdk-lib)

v2.269.0

Compare Source

Features
Bug Fixes

Alpha modules (2.269.0-alpha.0)

⚠ BREAKING CHANGES
  • glue-alpha: Glue job constructs now reject construct-managed and Glue-reserved
    arguments passed through defaultArguments. Previously, a managed argument set via
    defaultArguments was silently honored in SparkJob and PythonShellJob (customer
    value won over the construct default) and silently ignored in RayJob (construct
    default won). Both behaviors let a caller bypass the construct's security and
    observability defaults with no error. Passing any of the following through
    defaultArguments now throws a ValidationError at synthesis time:
  • construct-managed arguments — --enable-continuous-cloudwatch-log,
    --continuous-log-logGroup, --continuous-log-logStreamPrefix,
    --continuous-log-conversionPattern, --enable-continuous-log-filter,
    --enable-metrics, --enable-observability-metrics, --enable-spark-ui,
    --spark-event-logs-path, --job-language, --class, --extra-jars,
    --user-jars-first, --extra-py-files, --extra-files, library-set
  • Glue-reserved arguments — --debug, --mode, --JOB_NAME, --endpoint

A managed argument is rejected whether or not the current configuration emits it, so a
disabled feature (e.g. enableMetrics: false) cannot be re-enabled through
defaultArguments. Configure these through their dedicated props instead
(continuousLogging, enableMetrics, enableObservabilityMetrics, sparkUI,
className, extraJars, extraJarsFirst, extraPythonFiles, extraFiles). For
example, replace defaultArguments: { '--enable-continuous-cloudwatch-log': 'false' }
with continuousLogging: { enabled: false }. Arguments without a dedicated prop (e.g.
--enable-glue-datacatalog) are unaffected and remain settable via defaultArguments.

The checkNoReservedArgs(defaultArguments?) method on the Job base class was removed.
It is replaced by two protected members: setManagedArgument(key, value?), which each
job class calls to declare (and, when a value is present, emit) a managed argument, and
mergeDefaultArguments(defaultArguments?), which validates the caller-supplied
defaultArguments against the accumulated reserved set and returns the merged map.

  • route53resolver-alpha: FirewallRuleGroupAssociation now honors the previously-ignored mutationProtection and name props. Stacks that set mutationProtection: true will enable mutation protection on redeploy (which blocks further CloudFormation update/delete until it is set back to false); stacks that set name will write it to the template, which may replace the association.
  • glue-alpha: trigger Action and Condition are no longer plain objects — use Action.job(...) / Action.crawler(...) and Condition.job(...) / Condition.crawler(...). Jobs are referenced via IJobRef and crawlers via ICrawlerRef (a CfnCrawler instance or CfnCrawler.fromCrawlerName(...)) instead of a CfnCrawler field or crawler-name string; IJob now extends the generated IJobRef. addDailyScheduledTrigger/addWeeklyScheduledTrigger/addCustomScheduledTrigger are replaced by addScheduledTrigger(id, { schedule, ... }) (use TriggerSchedule.daily()/weekly()/cron(...)). addNotifyEventTrigger is renamed addEventTrigger (NotifyEventTriggerOptionsEventTriggerOptions). All addXxxTrigger methods now return ITriggerRef instead of CfnTrigger.
  • glue-alpha: PartitionProjectionConfiguration's variant fields (integerRange, dateRange, interval, digits, format, intervalUnit, values) are no longer public; DATE projection now takes step: { interval, intervalUnit } instead of top-level interval/intervalUnit.
  • glue-alpha: ConnectionOptions no longer has subnet, vpc, or vpcSubnets; use network: ConnectionNetwork.subnet(...) or network: ConnectionNetwork.vpc(...) instead.
Features
Bug Fixes
  • route53resolver-alpha: association silently ignored mutationProtection and name (#​38795) (5ab40b2)

v2.268.0

Compare Source

⚠ BREAKING CHANGES

L1 resources are automatically generated from public CloudFormation Resource Schemas. They are built to closely reflect the real state of CloudFormation. Sometimes these updates can contain changes that are incompatible with previous types, but more accurately reflect reality. In this release we have changed:

  • aws-athena: AWS::Athena::Session removed.
  • aws-bcmdataexports: AWS::BCMDataExports::Table removed.
  • aws-bedrock: AWS::Bedrock::DefaultPromptRouter and AWS::Bedrock::ModelInvocationJob removed.
  • aws-bedrockagentcore: AWS::BedrockAgentCore::Browser, AWS::BedrockAgentCore::CodeInterpreter, and AWS::BedrockAgentCore::TokenVault removed; AWS::BedrockAgentCore::PaymentConnector ConnectorType and AWS::BedrockAgentCore::PaymentCredentialProvider CredentialProviderVendor are now immutable; AWS::BedrockAgentCore::CapacityProvider OperatingSystem allowed values in the LaunchParameters type reduced from [LINUX_X86_64, LINUX_ARM64, MAC_ARM64, WINDOWS_X86_64] to [LINUX_X86_64, LINUX_ARM64].
  • aws-certificatemanager: AWS::CertificateManager::Certificate Id attribute removed.
  • aws-chime: on both AWS::Chime::AppInstance and AWS::Chime::AppInstanceBot, the CreatedTimestamp and LastUpdatedTimestamp attribute types changed from number to string.
  • aws-cloudformation: AWS::CloudFormation::ResourceScan removed.
  • aws-codeartifact: AWS::CodeArtifact::Package removed.
  • aws-codebuild: AWS::CodeBuild::Sandbox removed; AWS::CodeBuild::SourceCredential Id attribute removed.
  • aws-dax: AWS::DAX::ParameterGroup Id attribute removed; Description property is now immutable.
  • aws-dms: Id attribute removed from AWS::DMS::Endpoint, AWS::DMS::EventSubscription, and AWS::DMS::ReplicationSubnetGroup; AWS::DMS::ReplicationTask MigrationType property is now immutable.
  • aws-docdb: Id attribute removed from AWS::DocDB::DBClusterParameterGroup and AWS::DocDB::DBSubnetGroup.
  • aws-dynamodb: AWS::DynamoDB::Export removed.
  • aws-elasticache: AWS::ElastiCache::ReservedCacheNode removed.
  • aws-emr: AWS::EMR::NotebookExecution removed.
  • aws-events: AWS::Events::Replay removed.
  • aws-fis: AWS::FIS::SafetyLever removed.
  • aws-glue:
    • Id attribute removed from AWS::Glue::Classifier, AWS::Glue::Connection, AWS::Glue::CustomEntityType, AWS::Glue::DataQualityRuleset, AWS::Glue::MLTransform, AWS::Glue::SecurityConfiguration, AWS::Glue::TableOptimizer, and AWS::Glue::Workflow.
    • AWS::Glue::Connection: complex-property types AuthenticationConfigurationInput and OAuth2PropertiesInput renamed to AuthenticationConfiguration and OAuth2Properties respectively.
    • AWS::Glue::DataQualityRuleset: Name, TargetTable.DatabaseName, and TargetTable.TableName properties are now required; Name property is now immutable; Tags property type changed from json to map<string>.
    • AWS::Glue::CustomEntityType: Name property is now immutable; Tags property is no longer recognised as resource tags.
    • AWS::Glue::MLTransform: TransformEncryption property is now immutable.
  • aws-greengrassv2: AWS::GreengrassV2::Component and AWS::GreengrassV2::CoreDevice removed.
  • aws-identitystore: AWS::IdentityStore::AllGroupMemberships removed.
  • aws-imagebuilder: AWS::ImageBuilder::AllImageBuildVersions, AWS::ImageBuilder::AllWorkflowBuildVersions, AWS::ImageBuilder::WorkflowExecution, and AWS::ImageBuilder::WorkflowStepExecution removed.
  • aws-medialive: AWS::MediaLive::Offering removed.
  • aws-mediaconvert: AWS::MediaConvert::Preset Id attribute removed.
  • aws-mediapackage: AWS::MediaPackage::HarvestJob removed.
  • aws-memorydb: AWS::MemoryDB::MultiRegionParameterGroup and AWS::MemoryDB::ReservedNode removed.
  • aws-omics: AWS::Omics::Reference removed.
  • aws-osis: AWS::OSIS::PipelineBlueprint removed.
  • aws-personalize: AWS::Personalize::DataDeletionJob and AWS::Personalize::Recipe removed.
  • aws-redshiftserverless: AWS::RedshiftServerless::RecoveryPoint removed.
  • aws-route53: AWS::Route53::RecordSet GeoProximityLocation property removed, along with its supporting GeoProximityLocation and Coordinates complex-property types; Id attribute removed.
  • aws-sagemaker: AWS::SageMaker::ModelCardExportJob, AWS::SageMaker::MonitoringScheduleAlert, and AWS::SageMaker::TransformJob removed.
  • aws-ses: AWS::SES::ReceiptRuleSet Id attribute removed.
  • aws-signer: AWS::Signer::SigningJob removed.
  • aws-ssm: AWS::SSM::Session removed; AWS::SSM::Association InstanceId property is now immutable.
  • aws-sso: AWS::SSO::ApplicationProvider removed.
  • aws-stepfunctions: AWS::StepFunctions::MapRun removed.
  • aws-transcribe: AWS::Transcribe::MedicalTranscriptionJob removed.
  • aws-vpclattice: AWS::VpcLattice::ServiceNetwork SharingConfig property is now immutable.
Features
Bug Fixes

Alpha modules (2.268.0-alpha.0)

⚠ BREAKING CHANGES
  • glue-alpha: DataQualityTargetTable's constructor is removed — use DataQualityTargetTable.fromTable(database, table) or fromTableName(database, tableName); IDatabase now extends IDatabaseRef.
  • glue-alpha: DataQualityRulesetProps.clientToken is removed; use the CfnDataQualityRuleset L1 for request-level idempotency.
  • glue-alpha: S3Table.clientSideEncryptionKey is now kms.IKeyRef instead of kms.IKey.
  • glue-alpha: DataQualityRulesetProps.rulesetName is now required. AWS::Glue::DataQualityRuleset made Name a required property, so the name can no longer be left for CloudFormation to generate.
Features
  • glue-alpha: reference-typed DataQualityTargetTable and remove clientToken (#​38730) (c8fafbd)
Code Refactoring
  • glue-alpha: use kms.IKeyRef for KMS key inputs where possible (#​38725) (604ac23)

v2.267.0

Compare Source

⚠ BREAKING CHANGES
  • kinesisfirehose: After this change, specifying an unsupported timeZone on the Firehose S3Bucket destination now throws a ValidationError during synthesis instead of failing at CloudFormation deployment. Affected values: 3-letter IANA abbreviations (e.g. EST), Etc/UTC, Etc/GMT, Factory, and strings containing characters outside [a-zA-Z/_]+. Use a supported standard IANA identifier (e.g. America/New_York) or UTC for synth to pass.
Features
Bug Fixes

Alpha modules (2.267.0-alpha.0)

⚠ BREAKING CHANGES
  • glue-alpha: schema Type is now an opaque class; construct column types via the Schema factories or Schema.custom(...) rather than { isPrimitive, inputString } literals. StorageParameter.custom(key, value) requires a string value, and StorageParameter.writeKmsKeyId takes a kms.IKey instead of a string.
  • glue-alpha: S3TableProps.bucket/encryption/encryptionKey are removed. Use storage: S3TableStorage.managedBucket(S3TableEncryption.kms(key?)) / S3TableStorage.fromBucket(bucket) and clientSideEncryption: TableClientSideEncryption.kms(key?). S3Table.encryption/encryptionKey are removed (clientSideEncryptionKey exposes the client-side key; read bucket.encryptionKey for server-side). The TableEncryption enum and the deprecated Table/TableProps are removed — use S3Table.
Features
Bug Fixes
  • glue-alpha: validate that DATE partition projection interval is set when required (#​38594) (0e2b582)
  • lambda-python-alpha: escape Docker bundling command arguments (#​38583) (f7ce07b)

v2.266.0

Compare Source

Features
Bug Fixes

Alpha modules (2.266.0-alpha.0)

⚠ BREAKING CHANGES
  • glue-alpha: DataQualityRulesetProps.rulesetDqdl: string is replaced by
    dqdl: Dqdl. Build it with Dqdl.fromString('Rules = [ ... ]').
  • glue-alpha: s3Encryption, cloudWatchEncryption, and jobBookmarksEncryption are no longer object literals. Use S3Encryption.s3Managed() / S3Encryption.kms(key?), CloudWatchEncryption.kms(key?), and JobBookmarksEncryption.clientSideKms(key?). The CloudWatchEncryptionMode and JobBookmarksEncryptionMode enums are removed (their mode is now implicit); S3EncryptionMode is retained.
  • glue-alpha: this is a corrective breaking change. Apps that leaned on the bug, and did things like InputFormat x = OutputFormat.AVRO; will get a compilation error in other jsii languages. The intended usage, on the other hand, was broken before and works now.
  • glue-alpha: workerType and numberOfWorkers are no longer top-level job props. For Spark jobs, pass them together via workerConfiguration: { workerType, numberOfWorkers }. PythonShellJob no longer accepts them (it is sized by maxCapacity). RayJob no longer accepts workerType (it is fixed to Z.2X).
  • glue-alpha: SparkJobProps.enableMetrics removed, which will cause a compilation error for any app using it. But there is no behavior change, since this is a dead prop.
  • glue-alpha: a differing/tokenized has_encrypted_data supplied via parameters now throws.
Features
  • glue-alpha: add warning for maxRetries when job run queuing is enabled (#​38575) (09ae11e)
  • glue-alpha: model SecurityConfiguration encryption as factory subtypes (#​38586) (e37e7a6)
  • glue-alpha: new hasEncryptedData property (#​38511) (c977e36)
  • glue-alpha: pair workerType and numberOfWorkers into a required workerConfiguration (#​38576) (5f3b1b6)
  • glue-alpha: wrap DataQualityRuleset DQDL in a typed value object (#​38587) (fd01268)
Bug Fixes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot enabled auto-merge (squash) July 25, 2026 20:49
@renovate

renovate Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will error in a future major version of npm. See `npm help npmrc` for supported config options.
npm error code EALLOWREMOTE
npm error Fetching packages of type "remote" have been disabled
npm error Refusing to fetch "https://registry.npmjs.org/aws-cdk-lib/-/aws-cdk-lib-2.269.0.tgz"
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-09-15T11_32_32_981Z-debug-0.log

@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch from 328e0d4 to cd22a80 Compare July 27, 2026 14:47
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.262.0 chore(deps): update dependency aws-cdk-lib to v2.262.1 Jul 27, 2026
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch from cd22a80 to 263a9ae Compare August 1, 2026 17:24
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.262.1 chore(deps): update dependency aws-cdk-lib to v2.262.2 Aug 1, 2026
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch from 263a9ae to 356989a Compare August 3, 2026 17:06
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.262.2 chore(deps): update dependency aws-cdk-lib to v2.263.0 Aug 3, 2026
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch 8 times, most recently from 73debc2 to 176fb03 Compare August 10, 2026 18:33
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch from 176fb03 to 7d715ce Compare August 13, 2026 18:42
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.263.0 chore(deps): update dependency aws-cdk-lib to v2.264.0 Aug 13, 2026
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch from 7d715ce to 5cf601b Compare August 16, 2026 22:41
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.264.0 chore(deps): update dependency aws-cdk-lib to v2.265.0 Aug 16, 2026
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.265.0 chore(deps): update dependency aws-cdk-lib to v2.265.0 - autoclosed Aug 19, 2026
@renovate renovate Bot closed this Aug 19, 2026
auto-merge was automatically disabled August 19, 2026 10:51

Pull request was closed

@renovate
renovate Bot deleted the renovate/aws-cdk-monorepo branch August 19, 2026 10:51
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.265.0 - autoclosed chore(deps): update dependency aws-cdk-lib to v2.266.0 Aug 22, 2026
@renovate renovate Bot reopened this Aug 22, 2026
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from 1f6e9c2 to 66d9e1b Compare August 26, 2026 02:32
@renovate
renovate Bot enabled auto-merge (squash) August 26, 2026 02:32
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from 5eb257d to 9dadd1f Compare August 30, 2026 21:05
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.266.0 chore(deps): update dependency aws-cdk-lib to v2.267.0 Aug 30, 2026
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch 3 times, most recently from d4406c7 to d827781 Compare September 5, 2026 21:43
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.267.0 chore(deps): update dependency aws-cdk-lib to v2.268.0 Sep 5, 2026
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from e76e2ef to 3fb3ad8 Compare September 13, 2026 00:53
@renovate
renovate Bot force-pushed the renovate/aws-cdk-monorepo branch from 3fb3ad8 to 1946112 Compare September 13, 2026 22:29
@renovate renovate Bot changed the title chore(deps): update dependency aws-cdk-lib to v2.268.0 chore(deps): update dependency aws-cdk-lib to v2.269.0 Sep 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants