Skip to content

Bump software.amazon.awscdk:aws-cdk-lib from 2.261.0 to 2.270.0 in /labs/unicorn-store/infrastructure/cdk - #1605

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/labs/unicorn-store/infrastructure/cdk/software.amazon.awscdk-aws-cdk-lib-2.270.0
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/labs/unicorn-store/infrastructure/cdk/software.amazon.awscdk-aws-cdk-lib-2.270.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor

Bumps software.amazon.awscdk:aws-cdk-lib from 2.261.0 to 2.270.0.

Release notes

Sourced from software.amazon.awscdk:aws-cdk-lib's releases.

v2.270.0

⚠ 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-codecommit: AWS::CodeCommit::Repository: Id attribute removed. aws-config: AWS::Config::DeliveryChannel: DeliveryFrequency property values narrowed to an enum. aws-dms: AWS::DMS::ReplicationTask: Id attribute removed.

Features

  • update L1 CloudFormation resource definitions (#38823) (4386bf1)
  • core: add cross-resource GameLift launch-path rules (CDK-GameLift-006/007) (ba98771)
  • core: merge default Rego rules into explicitly registered plugins (160c8a6)
  • core: replace schema-covered Rego rules with cross-field invariants (07a8153)
  • core: ship default CloudFormation validation rules in Rego (5388c88)
  • core: ship default CloudFormation validation rules in Rego (#38448) (4ccdad8), closes #38456
  • glue: graduate to stable 🚀 (#38799) (a9e36a3)
  • lambda: add DirectS3Read support for S3 Files filesystem mounts (#38752) (1482712), closes #38751

Bug Fixes


Alpha modules (2.270.0-alpha.0)

v2.269.0

Features

Bug Fixes

... (truncated)

Changelog

Sourced from software.amazon.awscdk:aws-cdk-lib's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.270.0-alpha.0 (2026-09-17)

2.269.0-alpha.0 (2026-09-10)

⚠ 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

  • glue-alpha: ensure job parameters consistency (#38480) (bc7dc0c)
  • glue-alpha: model Connection VPC placement as a value object (#38729) (f72e9fe)
  • glue-alpha: model partition projection variants as internal state (#38726) (16527cd)

... (truncated)

Commits
  • 30ca410 chore(release): 2.270.0 (#38832)
  • 54f2838 chore: update analytics metadata blueprints
  • d1ae676 chore(release): 2.270.0
  • 4386bf1 feat: update L1 CloudFormation resource definitions (#38823)
  • cd97d96 fix(s3): l2 construct Bucket replication metrics cannot be enabled without ...
  • 1482712 feat(lambda): add DirectS3Read support for S3 Files filesystem mounts (#38752)
  • 941f847 fix(core): annotations cannot be acked without feature flag (#38772)
  • 4317f8e fix(apigatewayv2): missing WebSocket Lambda permissions for routes sharing on...
  • 4ccdad8 feat(core): ship default CloudFormation validation rules in Rego (#38448)
  • d9d4e25 Merge branch 'main' into iankhou/gamelift-rego-default-rules
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [software.amazon.awscdk:aws-cdk-lib](https://github.com/aws/aws-cdk) from 2.261.0 to 2.270.0.
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/main/CHANGELOG.v2.alpha.md)
- [Commits](aws/aws-cdk@v2.261.0...v2.270.0)

---
updated-dependencies:
- dependency-name: software.amazon.awscdk:aws-cdk-lib
  dependency-version: 2.270.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants