Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 8, 2024

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@openapitools/openapi-generator-cli 2.11.02.27.0 age confidence devDependencies minor
@types/jest (source) 29.5.1229.5.14 age confidence devDependencies patch
@types/node (source) 20.11.2520.19.27 age confidence devDependencies minor
commitizen 4.3.04.3.1 age confidence devDependencies patch
husky 9.0.119.1.7 age confidence devDependencies minor
node (source) 20.11.120.19.6 age confidence volta minor
npm-run-all2 5.0.05.0.2 age confidence devDependencies patch
rimraf 5.0.55.0.10 age confidence devDependencies patch
ts-jest (source) 29.1.229.4.6 age confidence devDependencies minor
tslib (source) 2.6.22.8.1 age confidence dependencies minor
typescript (source) 5.4.25.9.3 age confidence devDependencies minor

Release Notes

OpenAPITools/openapi-generator-cli (@​openapitools/openapi-generator-cli)

v2.27.0

Compare Source

Features
  • config: add support for environment variable placeholders in config (#​1031) (1cd2614)

v2.26.0

Compare Source

Bug Fixes
Features

v2.25.2

Compare Source

Bug Fixes

v2.25.1

Compare Source

Bug Fixes

v2.25.0

Compare Source

Features
  • release: trigger a release (2a8a011)

v2.24.0

Compare Source

Features

v2.23.4

Compare Source

Bug Fixes

v2.23.3

Compare Source

Bug Fixes

v2.23.2

Compare Source

Bug Fixes

v2.23.1

Compare Source

Bug Fixes

v2.23.0

Compare Source

Features

v2.22.0

Compare Source

Features

v2.21.5

Compare Source

Bug Fixes

v2.21.4

Compare Source

Bug Fixes
  • deps: update dependency axios to v1.11.0 [security] (#​956) (e517c31)

v2.21.3

Compare Source

Bug Fixes

v2.21.2

Compare Source

Bug Fixes

v2.21.1

Compare Source

Bug Fixes

v2.21.0

Compare Source

Features

v2.20.6

Compare Source

Bug Fixes

v2.20.5

Compare Source

Bug Fixes

v2.20.4

Compare Source

Bug Fixes

v2.20.3

Compare Source

Bug Fixes

v2.20.2

Compare Source

Bug Fixes

v2.20.1

Compare Source

Bug Fixes

v2.20.0

Compare Source

Features

v2.19.1

Compare Source

Bug Fixes

v2.19.0

Compare Source

Features

v2.18.4

Compare Source

Bug Fixes

v2.18.3

Compare Source

Bug Fixes

v2.18.2

Compare Source

Bug Fixes
  • deps: update dependency reflect-metadata to v0.2.2 (#​780) (ed23197)

v2.18.1

Compare Source

Bug Fixes

v2.18.0

Compare Source

Features

v2.17.1

Compare Source

Bug Fixes

v2.17.0

Compare Source

Features

v2.16.3

Compare Source

Bug Fixes

v2.16.2

Compare Source

Bug Fixes

v2.16.1

Compare Source

Bug Fixes

v2.16.0

Compare Source

Features

v2.15.4

Compare Source

Bug Fixes

v2.15.3

Compare Source

Bug Fixes

v2.15.2

Compare Source

Bug Fixes

v2.15.1

Compare Source

Bug Fixes

v2.15.0

Compare Source

Features
  • release: trigger a release (407e90f)

v2.14.1

Compare Source

Bug Fixes

v2.14.0

Compare Source

Features
  • config schema: add openapi-normalizer generator property (#​830) (c91d116)

v2.13.13

Compare Source

Bug Fixes

v2.13.12

Compare Source

Bug Fixes

v2.13.11

Compare Source

Bug Fixes

v2.13.10

Compare Source

Bug Fixes
  • deps: update dependency https-proxy-agent to v7.0.5 (#​800) (e8226d8)

v2.13.9

Compare Source

Bug Fixes

v2.13.8

Compare Source

Bug Fixes

v2.13.7

Compare Source

Bug Fixes

v2.13.6

Compare Source

Bug Fixes

v2.13.5

Compare Source

Bug Fixes
  • deps: update dependency axios to v1.7.4 [security] (#​789) (18abce4)

v2.13.4

Compare Source

Bug Fixes

v2.13.3

Compare Source

Bug Fixes

v2.13.2

Compare Source

Bug Fixes

v2.13.1

Compare Source

Reverts

v2.13.0

Compare Source

Features

v2.12.1

Compare Source

Bug Fixes
  • deps: update dependency reflect-metadata to v0.2.1 (#​773) (f6dcb95)

v2.12.0

Compare Source

Features
  • release: trigger a release (ad97182)
commitizen/cz-cli (commitizen)

v4.3.1

Compare Source

4.3.1 (2024-09-27)
Bug Fixes
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

nodejs/node (node)

v20.19.6: 2025-11-25, Version 20.19.6 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 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 is behind base branch, 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/all-minor-patch branch 4 times, most recently from d320061 to 913237e Compare April 10, 2024 19:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 09b86f5 to 4bc0ef9 Compare April 22, 2024 03:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 485e799 to 9ff3988 Compare May 8, 2024 13:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from e504dd7 to 054d402 Compare May 14, 2024 09:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bf1471c to dd61cce Compare May 28, 2024 19:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from c5ef48e to 78b6a82 Compare June 5, 2024 11:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 482d921 to edf93f4 Compare June 19, 2024 18:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 0fd521e to 2a6709d Compare September 19, 2025 15:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 1668fbc to 2a930e4 Compare October 1, 2025 00:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 2a1d6cb to 06ac11d Compare October 12, 2025 10:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from cd43d54 to 8a15f62 Compare October 21, 2025 02:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8a15f62 to a58d712 Compare October 28, 2025 21:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ca611c8 to 1f1cbfc Compare November 12, 2025 05:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1ca0ebc to 6763341 Compare November 25, 2025 17:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6763341 to 1de2215 Compare December 1, 2025 22:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 82242e7 to 290ef15 Compare December 14, 2025 03:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 290ef15 to 0818830 Compare December 22, 2025 18:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0818830 to 429f40c Compare December 30, 2025 19:11
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