Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 31, 2024

This PR contains the following updates:

Package Change Age Confidence
@commitlint/cli (source) 19.3.0 -> 19.8.1 age confidence
@commitlint/config-conventional (source) 19.2.2 -> 19.8.1 age confidence
chai (source) 5.1.1 -> 5.3.3 age confidence
eslint (source) 8.57.0 -> 8.57.1 age confidence
husky 9.0.11 -> 9.1.7 age confidence
mocha (source) 10.4.0 -> 10.8.2 age confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.8.1

Compare Source

Bug Fixes

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/cli

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

v19.7.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v19.6.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v19.6.0

Compare Source

Note: Version bump only for package @​commitlint/cli

v19.5.0

Compare Source

Features

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/cli

v19.4.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v19.4.0

Compare Source

Features
conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.8.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/config-conventional

v19.7.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v19.6.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v19.5.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/config-conventional

19.2.2 (2024-04-14)

Note: Version bump only for package @​commitlint/config-conventional

v19.4.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

chaijs/chai (chai)

v5.3.3

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v5.3.3

v5.3.2

Compare Source

Reverts the removal of the bundled version of chai in 5.3.1

What's Changed

Full Changelog: chaijs/chai@v5.3.1...v5.3.2

v5.3.1

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.3.0...v5.3.1

v5.3.0

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.2.2...v5.3.0

v5.2.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.2.1...v5.2.2

v5.2.1

Compare Source

What's Changed

Mostly internal changes but @​SuperchupuDev realised the package.json engines field was out of date, so it has been updated to reflect that v5.0.0 onwards only supports Node >=18.

New Contributors

Full Changelog: chaijs/chai@v5.2.0...v5.2.1

v5.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.1.2...v5.2.0

v5.1.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.1.1...v5.1.2

eslint/eslint (eslint)

v8.57.1

Compare Source

Bug Fixes
  • a19072f fix: add logic to handle fixTypes in the lintText() method (#​18900) (Francesco Trotta)
  • 04c7188 fix: Don't lint same file multiple times (#​18899) (Francesco Trotta)
  • 87ec3c4 fix: do not throw when defining a global named __defineSetter__ (#​18898) (Francesco Trotta)
  • 60a1267 fix: Provide helpful error message for nullish configs (#​18889) (Milos Djermanovic)
  • a0dea8e fix: allow name in global ignores, fix --no-ignore for non-global (#​18875) (Milos Djermanovic)
  • 3836bb4 fix: do not crash on error in fs.walk filter (#​18886) (Milos Djermanovic)
  • 2dec349 fix: skip processor code blocks that match only universal patterns (#​18880) (Milos Djermanovic)
Documentation
Build Related
  • 35d366a build: Support updates to previous major versions (#​18870) (Milos Djermanovic)
Chores
typicode/husky (husky)

v9.1.7

Compare Source

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.6...v9.1.7

v9.1.6

Compare Source

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.5...v9.1.6

v9.1.5

Compare Source

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.4...v9.1.5

v9.1.4

Compare Source

  • Improve deprecation notice

v9.1.3

Compare Source

  • fix: better handle space in PATH

v9.1.2

Compare Source

Show a message instead of automatically removing deprecated code.

This only concerns projects that still have the following code in their hooks:

- #!/usr/bin/env sh # <- This is deprecated, remove it
- . "$(dirname -- "$0")/_/husky.sh"  # <- This is deprecated, remove it

### Rest of your hook code

Hooks with these lines will fail in v10.0.0

v9.1.1

Compare Source

Super saiyan god dog! It's over 9.0.0!

What's new

You can now run package commands directly, no need for npx or equivalents.
It makes writing hooks more intuitive and is also slightly faster 🐺⚡️

### .husky/pre-commit
- npx jest
+ jest # ~0.2s faster

A new recipe has been added to the docs. Lint staged files without external dependencies (inspired by Prettier docs). Feel free to modify it.

### .husky/pre-commit
prettier $(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g') --write --ignore-unknown
git update-index --again

For more advanced use cases, see lint-staged.

Fixes

  • bunx husky init command
  • Workaround for some hooks implementation on Windows

Deprecations

  • #!/usr/bin/env sh and . "$(dirname -- "$0")/_/husky.sh" are deprecated. husky command will automatically remove them, no action required.
  • If you're having code in ~/.huskyrc please move it to .config/husky/init.sh

Support for these will be removed in v10.

Friendly reminder

If Git hooks don't fit your workflow, you can disable Husky globally. Just add export HUSKY=0 to .config/husky/init.sh.

I've seen some confusion about this on X, so just a heads-up!

Sponsoring

Husky is downloaded over 45M times per month and used by ~1.5M projects. If your company wants to sponsor, you can do so here: GitHub Sponsors.

Have a nice summer ☀️ I'm open to new opportunities/consulting so feel free to drop me a message 😉

v9.1.0

Compare Source

mochajs/mocha (mocha)

v10.8.2

Compare Source

🩹 Fixes
📚 Documentation
  • indicate 'exports' interface does not work in browsers (#​5181) (14e640e)
🧹 Chores
  • fix docs builds by re-adding eleventy and ignoring gitignore again (#​5240) (881e3b0)
🤖 Automation

v10.8.1

Compare Source

🩹 Fixes

v10.8.0

Compare Source

🌟 Features
🩹 Fixes
📚 Documentation
🧹 Chores

v10.7.3

Compare Source

🩹 Fixes

v10.7.0

Compare Source

🎉 Enhancements

v10.6.1

Compare Source

🐛 Fixes

v10.6.0

Compare Source

🎉 Enhancements

v10.5.2

Compare Source

🐛 Fixes

v10.5.1

Compare Source

🐛 Fixes

v10.5.0

Compare Source

🎉 Enhancements
🐛 Fixes
🔩 Other

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" in timezone Asia/Calcutta, 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 force-pushed the renovate/dependencies branch 2 times, most recently from 9effe67 to 3eab31c Compare August 9, 2024 13:52
@renovate renovate bot force-pushed the renovate/dependencies branch from 3eab31c to 0f606f6 Compare August 20, 2024 14:20
@renovate renovate bot force-pushed the renovate/dependencies branch from 0f606f6 to a7e7328 Compare August 28, 2024 09:21
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 0e4486d to 97a47db Compare September 16, 2024 16:41
@sonarqubecloud
Copy link

@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 4d492df to 90b6c6c Compare October 29, 2024 23:34
@renovate renovate bot force-pushed the renovate/dependencies branch from 90b6c6c to 9fb0692 Compare October 30, 2024 20:34
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from e1ccccc to 0a44c8c Compare November 19, 2024 12:41
@renovate renovate bot force-pushed the renovate/dependencies branch from 0a44c8c to 509a12a Compare December 15, 2024 15:45
@sonarqubecloud
Copy link

@renovate renovate bot force-pushed the renovate/dependencies branch from 509a12a to 6e8716f Compare February 2, 2025 16:36
@renovate renovate bot force-pushed the renovate/dependencies branch from 6e8716f to 186658b Compare February 14, 2025 19:26
@renovate renovate bot force-pushed the renovate/dependencies branch from 186658b to 22d2fb1 Compare March 7, 2025 19:08
@sonarqubecloud
Copy link

sonarqubecloud bot commented Mar 7, 2025

@renovate renovate bot force-pushed the renovate/dependencies branch from 22d2fb1 to d35123f Compare May 8, 2025 07:22
@sonarqubecloud
Copy link

sonarqubecloud bot commented May 8, 2025

@renovate renovate bot force-pushed the renovate/dependencies branch from d35123f to 3721b57 Compare July 8, 2025 17:58
@sonarqubecloud
Copy link

sonarqubecloud bot commented Jul 8, 2025

@renovate renovate bot force-pushed the renovate/dependencies branch from 3721b57 to d6f0023 Compare August 10, 2025 14:28
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from c24125f to ce4ebfa Compare August 22, 2025 19:05
@renovate renovate bot force-pushed the renovate/dependencies branch from ce4ebfa to 10f32d2 Compare August 31, 2025 13:01
@renovate renovate bot force-pushed the renovate/dependencies branch from 10f32d2 to f0eaf1a Compare September 25, 2025 19:00
@renovate renovate bot force-pushed the renovate/dependencies branch from f0eaf1a to 1e57409 Compare October 21, 2025 14:40
@renovate renovate bot force-pushed the renovate/dependencies branch from 1e57409 to d474d31 Compare November 10, 2025 19:13
@renovate renovate bot force-pushed the renovate/dependencies branch from d474d31 to 5cc2bb4 Compare November 18, 2025 13:05
@sonarqubecloud
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant