Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence Type Update
@antfu/eslint-config 4.3.0 -> 4.19.0 age confidence devDependencies minor
eslint (source) 9.21.0 -> 9.36.0 age confidence devDependencies minor
lint-staged 16.1.0 -> 16.2.0 age confidence devDependencies minor
terraform-linters/tflint-ruleset-aws 0.37.0 -> 0.43.0 age confidence plugin minor

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v4.19.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v4.18.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.17.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v4.16.2

Compare Source

No significant changes

    View changes on GitHub

v4.16.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.16.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.15.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.14.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.14.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.13.3

Compare Source

No significant changes

    View changes on GitHub

v4.13.2

Compare Source

No significant changes

    View changes on GitHub

v4.13.1

Compare Source

No significant changes

    View changes on GitHub

v4.13.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v4.12.1

Compare Source

No significant changes

    View changes on GitHub

v4.12.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.11.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.10.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.10.1

Compare Source

No significant changes

    View changes on GitHub

v4.10.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.9.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.8.1

Compare Source

   🚀 Features
    View changes on GitHub

v4.7.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.6.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.5.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.4.0

Compare Source

   🚀 Features
    View changes on GitHub
eslint/eslint (eslint)

v9.36.0

Compare Source

v9.35.0

Compare Source

v9.34.0

Compare Source

v9.33.0

Compare Source

v9.32.0

Compare Source

v9.31.0

Compare Source

v9.30.1

Compare Source

v9.30.0

Compare Source

v9.29.0

Compare Source

v9.28.0

Compare Source

v9.27.0

Compare Source

v9.26.0

Compare Source

v9.25.1

Compare Source

v9.25.0

Compare Source

v9.24.0

Compare Source

v9.23.0

Compare Source

v9.22.0

Compare Source

lint-staged/lint-staged (lint-staged)

v16.2.0

Compare Source

Minor Changes
  • #​1615 99eb742 Thanks @​iiroj! - Added a new option --fail-on-changes to make lint-staged exit with code 1 when tasks modify any files, making the precommit hook fail. This is similar to the git diff --exit-code option. Using this flag also implies the --no-revert flag which means any changes made my tasks will be left in the working tree after failing, so that they can be manually staged and the commit tried again.

  • #​1611 cd05fd3 Thanks @​rlorenzo! - Added a new option --continue-on-error so that lint-staged will run all tasks to completion even if some of them fail. By default, lint-staded will exit early on the first failure.

  • #​1637 82fcc07 Thanks @​iiroj! - Internal lint-staged errors are now thrown and visible in the console output. Previously they were caught with the process exit code set to 1, but not logged. This happens when, for example, there's a syntax error in the lint-staged configuration file.

  • #​1647 a5ecc06 Thanks @​iiroj! - Remove debug as a dependency due to recent malware issue; read more at debug-js/debug#1005. Because of this, the DEBUG environment variable is no longer supported — use the --debug to enable debugging

  • #​1636 8db2717 Thanks @​iiroj! - Added a new option --hide-unstaged so that lint-staged will hide all unstaged changes to tracked files before running tasks. The changes will be applied back after running the tasks. Note that the combination of flags --hide-unstaged --no-hide-partially-staged isn't meaningful and behaves the same as just --hide-unstaged.

    Thanks to @​ItsNickBarry for the idea and initial implementation in #​1552.

  • #​1648 7900b3b Thanks @​iiroj! - Remove lilconfig to reduce reliance on third-party dependencies. It was used to find possible config files outside of those tracked in Git, including from the parent directories. This behavior has been moved directly into lint-staged and should work about the same.

Patch Changes

v16.1.6

Compare Source

Patch Changes
  • #​1610 e93578e Thanks @​iiroj! - Try to improve terminating of subprocess of tasks by using SIGKILL, and only calling pidtree when the the main task process has a known pid.

v16.1.5

Compare Source

Patch Changes

v16.1.4

Compare Source

Patch Changes
  • #​1604 90b37b0 Thanks @​iiroj! - Add another types field to package.json to make even more sure NPM detects that lint-staged includes built-in TypeScript type definitions.

v16.1.3

Compare Source

Patch Changes
  • #​1602 7ea700b Thanks @​dword-design! - Add the types field to package.json to make sure NPM detects lint-staged includes built-in TypeScript type definitions.

v16.1.2

Compare Source

Patch Changes
  • #​1570 a7c0c88 Thanks @​ItsNickBarry! - When using --diff-filter with the D option to include deleted staged files, lint-staged no longer tries to stage the deleted files, unless they're no longer deleted. Previously this caused an error from git add like fatal: pathspec 'deleted-file' did not match any files.

  • 38f942e Thanks @​iiroj! - Removed an extraneous log entry that printed shouldHidePArtiallyStagedFiles to console output.

v16.1.1

Compare Source

Patch Changes
  • #​1565 3686977 Thanks @​iiroj! - Lint-staged now explicitly warns about potential data loss when using --no-stash.

  • #​1571 02299a9 Thanks @​iiroj! - Function tasks (introduced in v16.0.0) only received the staged files matching the conpmnfigured glob, instead of all staged files.

  • #​1563 bc61c74 Thanks @​iiroj! - This version fixes incorrect behavior where unstaged changes were committed when using the --no-stash option. This happened because --no-stash implied --no-hide-partially-staged, meaning unstaged changes to files which also had other staged changes were added to the commit by lint-staged; this is no longer the case.

    The previous (incorrect) behavior can still be achieved by using both options --no-stash --no-hide-partially-staged at the same time.

terraform-linters/tflint-ruleset-aws (terraform-linters/tflint-ruleset-aws)

v0.43.0

Compare Source

What's Changed

Breaking Changes
Enhancements
Chores

Full Changelog: terraform-linters/tflint-ruleset-aws@v0.42.0...v0.43.0

v0.42.0

Compare Source

What's Changed

Breaking Changes
  • Remove aws_guardduty_member_invalid_email rule by @​wata727 in #​925
    • This auto-generated rule had invalid regexp.
Chores

Full Changelog: terraform-linters/tflint-ruleset-aws@v0.41.0...v0.42.0

v0.41.0

Compare Source

What's Changed

Breaking Changes
Enhancements
Chores

New Contributors

Full Changelog: terraform-linters/tflint-ruleset-aws@v0.40.0...v0.41.0

v0.40.0

Compare Source

What's Changed

Enhancements
Chores

Full Changelog: terraform-linters/tflint-ruleset-aws@v0.39.0...v0.40.0

v0.39.0

Compare Source

What's Changed

Enhancements
Bug Fixes
Chores

New Contributors

Full Changelog: terraform-linters/tflint-ruleset-aws@v0.38.0...v0.39.0

v0.38.0

Compare Source

What's Changed

Breaking Changes
  • Update AWS provider/module and generated content by @​wata727 in #​837
    • Remove Amazon Chime rules
      • aws_chime_voice_connector_group_invalid_name
      • aws_chime_voice_connector_invalid_aws_region
      • aws_chime_voice_connector_invalid_name
      • aws_chime_voice_connector_logging_invalid_voice_connector_id
      • aws_chime_voice_connector_origination_invalid_voice_connector_id
      • aws_chime_voice_connector_streaming_invalid_voice_connector_id
      • aws_chime_voice_connector_termination_credentials_invalid_voice_connector_id
      • aws_chime_voice_connector_termination_invalid_default_phone_number
      • aws_chime_voice_connector_termination_invalid_voice_connector_id
Enhancements
Chores

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Apr 1, 2025
Copy link

codecov bot commented Apr 1, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 71.69%. Comparing base (b6239a5) to head (ccacb97).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #213   +/-   ##
=======================================
  Coverage   71.69%   71.69%           
=======================================
  Files           1        1           
  Lines          53       53           
  Branches        6        6           
=======================================
  Hits           38       38           
  Misses         15       15           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 035bc7a to f2f3ce2 Compare April 4, 2025 22:05
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 836bd85 to 5532341 Compare April 11, 2025 18:56
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 12e428a to 0de3a6a Compare April 21, 2025 18:05
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 930cb06 to c500fb2 Compare May 2, 2025 21:51
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 37a0201 to 09be6d2 Compare May 6, 2025 12:22
@renovate renovate bot force-pushed the renovate/linting branch 3 times, most recently from 488353c to 767fe12 Compare May 21, 2025 11:59
@renovate renovate bot force-pushed the renovate/linting branch 3 times, most recently from 53f7a41 to 9bf47da Compare June 1, 2025 01:49
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from b40619b to 11789a8 Compare June 6, 2025 19:26
@renovate renovate bot force-pushed the renovate/linting branch 4 times, most recently from 2644b8b to c064481 Compare June 19, 2025 05:10
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 957314c to aa739d9 Compare June 27, 2025 22:42
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 565b509 to fc96c1f Compare July 2, 2025 05:28
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 7250b5f to c7356e2 Compare July 15, 2025 02:14
@renovate renovate bot force-pushed the renovate/linting branch 4 times, most recently from 5e37be8 to cfc5152 Compare July 29, 2025 20:04
@renovate renovate bot force-pushed the renovate/linting branch 5 times, most recently from e5a2ce4 to c0ec119 Compare August 10, 2025 13:59
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from c50ff88 to baf77eb Compare August 19, 2025 18:04
@renovate renovate bot force-pushed the renovate/linting branch from baf77eb to 6a0a151 Compare August 22, 2025 21:52
@renovate renovate bot force-pushed the renovate/linting branch 3 times, most recently from fccd9cf to 6d35f68 Compare September 5, 2025 17:37
@renovate renovate bot force-pushed the renovate/linting branch 2 times, most recently from 66ecae3 to 6db2f17 Compare September 20, 2025 13:51
@renovate renovate bot force-pushed the renovate/linting branch from 6db2f17 to ccacb97 Compare September 22, 2025 08:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants