chore: release packages#1699
Merged
Merged
Conversation
7ae7d6d to
60a9cfb
Compare
AdamJHall
approved these changes
Jun 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@aligent/cdk-aspects@0.6.4
Patch Changes
#1698
c9f490fThanks @toddhainsworth! - Moveaws-cdk-libandconstructsfromdependenciestopeerDependencies, matching the convention used by every@aligent/cdk-*construct package.As regular dependencies, a consumer whose own
aws-cdk-libresolved to a different version ended up with two copies in the tree. The aspects'instanceof CfnResourcechecks compared against the nested copy's class, sovisit()returned early for every node — aspects silently became a no-op (no prefixes, no defaults, no checks) with a valid-but-untouched synth. Declaring them as peers guarantees a single shared instance with the consumer.#1702
49f7a78Thanks @toddhainsworth! - FixResourcePrefixAspectto skip CDK-managed singleton/framework resources (BucketDeploymenthandler,LogRetention,S3AutoDeleteObjects, andcr.Providerframework lambdas) and their nested children (IAM service roles, log groups) instead of pinning deterministic physical names onto them.These singletons share a fixed logical id across every stack, so a deterministic prefixed name collapses to one value per prefix scope. That removed CloudFormation's per-stack and per-creation uniqueness and caused two deploy failures:
BucketDeployment-using stacks in the same stage received the same account-globalRoleName, so the second stack failed with... already exists./aws/lambdalog group collision on retry — a failed deploy orphaned the service-created log group, and the deterministic function name regenerated the identical name, wedging every subsequent deploy onAWS::Logs::LogGroup ... already exists.The aspect now leaves these resources CloudFormation-named, matching the singleton-skip behaviour
MicroserviceChecksalready applies.