-
Notifications
You must be signed in to change notification settings - Fork 187
feat: IPv6 support #630
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
feat: IPv6 support #630
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,7 +36,7 @@ export class Naming { | |
| } | ||
|
|
||
| getDomainReoute53RecordLogicalId() { | ||
| return this.getLogicalId(`GraphQlDomainRoute53Record`); | ||
| return this.getLogicalId(`GraphQlDomainRoute53Records`); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Breaking change: Logical ID modification will replace Route53 records. Changing the CloudFormation logical ID from
This is intentional to switch from Recommendation: Document this breaking change in the PR description, changelog, or migration guide so users can plan the upgrade during a maintenance window if needed. 🤖 Prompt for AI Agents |
||
| } | ||
|
|
||
| getLogGroupLogicalId() { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix formatting issues to pass linter.
The arrow function and object literals have formatting issues that will cause prettier/linting to fail:
🔧 Proposed fix for formatting
As per coding guidelines, the static analysis hints indicate these formatting violations must be addressed.
📝 Committable suggestion
🧰 Tools
🪛 ESLint
[error] 286-286: Replace
Typewith(Type)(prettier/prettier)
[error] 297-297: Insert
,(prettier/prettier)
[error] 298-298: Insert
,(prettier/prettier)
🤖 Prompt for AI Agents