feat: add SiteDomain property to StaticSiteConstruct and update dependencies#31
Merged
ncipollina merged 1 commit intomainfrom Sep 2, 2025
Merged
feat: add SiteDomain property to StaticSiteConstruct and update dependencies#31ncipollina merged 1 commit intomainfrom
ncipollina merged 1 commit intomainfrom
Conversation
…dencies - Add public SiteDomain property to expose fully qualified domain name - Update AWS CDK from 2.209.1 to 2.213.0 - Update xUnit dependencies (v3.0.0 -> v3.0.1, runner v3.1.3 -> v3.1.4) - Version bump to 2.0.1 - Add comprehensive XML documentation for new property - Update CLAUDE.md and static-site.md documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds a new SiteDomain property to the StaticSiteConstruct class and performs routine dependency updates for version 2.0.1.
- Adds a public
SiteDomainproperty to expose the fully qualified domain name after construct instantiation - Updates AWS CDK from 2.209.1 to 2.213.0 and xUnit test dependencies
- Increments version to 2.0.1 with updated documentation
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
StaticSiteConstruct.cs |
Adds new public SiteDomain property and refactors existing code to use it |
LayeredCraft.Cdk.Constructs.csproj |
Updates AWS CDK dependency from 2.209.1 to 2.213.0 |
LayeredCraft.Cdk.Constructs.Tests.csproj |
Updates xUnit test dependencies to latest versions |
static-site.md |
Adds documentation for the new SiteDomain property with usage examples |
Directory.Build.props |
Increments version from 2.0.0 to 2.0.1 |
CLAUDE.md |
Updates CDK version reference and adds note about new property |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.
Summary
This PR introduces a new
SiteDomainproperty to theStaticSiteConstructand includes routine dependency updates for version 2.0.1.SiteDomainproperty to expose the fully qualified domain name after construct instantiationChanges Made
Core Functionality
SiteDomainproperty toStaticSiteConstructclass with full XML documentationDependencies
2.209.1→2.213.03.0.0→3.0.13.1.3→3.1.4Documentation
CLAUDE.mdwith new property information and CDK versiondocs/constructs/static-site.mdwith property documentation and usage examplesAPI Impact
This is a non-breaking change that only adds new functionality. Existing code will continue to work unchanged, but consumers can now access the computed site domain:
Test Plan
🤖 Generated with Claude Code