Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The update to pre-commit-hooks v6.0.0 is a major version bump. While this update brings improvements, it's important to verify that all hooks continue to work as expected, especially custom hooks that might depend on specific pre-commit behavior.

hooks:
- id: trailing-whitespace
name: Ensure that code don't have trailing whitespace
Expand All @@ -26,7 +26,7 @@ repos:
exclude: "^(?!helpers/)"
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.12.7
rev: v0.12.11

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Ruff linter update to v0.12.11 includes new lint rules and fixes. Consider running the linter locally to catch any new violations before merging.

hooks:
# Run the Ruff linter.
- id: ruff
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"aws-cdk": "2.1023.0"
"aws-cdk": "2.1027.0"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The AWS CDK update from 2.1023.0 to 2.1027.0 is a minor version bump that includes potential bug fixes and improvements. Consider reviewing the CDK changelog for any breaking changes that might affect your infrastructure code.

}
}
Loading