-
-
Notifications
You must be signed in to change notification settings - Fork 61
deps: update deps #971
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
deps: update deps #971
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 |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| --- | ||
| repos: | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v5.0.0 | ||
| rev: v6.0.0 | ||
| hooks: | ||
| - id: trailing-whitespace | ||
| name: Ensure that code don't have trailing whitespace | ||
|
|
@@ -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 | ||
|
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. 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 | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| 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" | ||
|
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. 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. |
||
| } | ||
| } | ||
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.
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.