Skip to content
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

chore(deps): update npm dependencies without major updates #196

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 2, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@commitlint/config-conventional (source) 19.1.0 -> 19.5.0 age adoption passing confidence devDependencies minor
@types/node (source) 18.19.26 -> 18.19.64 age adoption passing confidence devDependencies patch
@types/yargs (source) 17.0.32 -> 17.0.33 age adoption passing confidence devDependencies patch
@vitest/coverage-v8 (source) 1.4.0 -> 1.6.0 age adoption passing confidence devDependencies minor
ajv (source) ^8.14.0 -> 8.14.0 age adoption passing confidence dependencies pin
commitlint (source) 19.2.1 -> 19.5.0 age adoption passing confidence devDependencies minor
husky 9.0.11 -> 9.1.6 age adoption passing confidence devDependencies minor
lint-staged 15.2.2 -> 15.2.10 age adoption passing confidence devDependencies patch
p-map ^7.0.1 -> 7.0.1 age adoption passing confidence dependencies pin
tree-sitter 0.20.6 -> 0.22.0 age adoption passing confidence dependencies minor
typescript (source) 5.3.3 -> 5.6.3 age adoption passing confidence devDependencies minor
vitest (source) 1.4.0 -> 1.6.0 age adoption passing confidence devDependencies minor

Release Notes

conventional-changelog/commitlint (@​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

v19.2.2

Compare Source

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

vitest-dev/vitest (@​vitest/coverage-v8)

v1.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.5.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.5.0

Compare Source

conventional-changelog/commitlint (commitlint)

v19.5.0

Compare Source

Note: Version bump only for package commitlint

19.4.1 (2024-08-28)

Note: Version bump only for package commitlint

v19.4.1

Compare Source

Note: Version bump only for package commitlint

v19.4.0

Compare Source

Note: Version bump only for package commitlint

v19.3.0

Compare Source

Note: Version bump only for package commitlint

19.2.2 (2024-04-14)

Note: Version bump only for package commitlint

19.2.1 (2024-03-19)

Note: Version bump only for package commitlint

v19.2.2

Compare Source

Note: Version bump only for package commitlint

typicode/husky (husky)

v9.1.6

Compare Source

v9.1.5

Compare Source

v9.1.4

Compare Source

v9.1.3

Compare Source

  • fix: better handle space in PATH

v9.1.2

Compare Source

v9.1.1

Compare Source

v9.1.0

Compare Source

Super saiyan god dog! It's over 9.0.0!

There's a bug with this release which prevents the deprecation notice to appear and requires to remove #!/usr/bin/env sh and . "$(dirname -- "$0")/_/husky.sh" (which are deprecated by the way). I'll publish a new version to fix that. Sorry about any inconvenience.

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

  • Remove #!/usr/bin/env sh and . "$(dirname -- "$0")/_/husky.sh" from your hooks
  • Move your code from ~/.huskyrc to .config/husky/init.sh

Support for these will be removed in v10, notices have been added.

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 😉

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

v15.2.10

Compare Source

Patch Changes

v15.2.9

Compare Source

Patch Changes
  • #​1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.

v15.2.8

Compare Source

Patch Changes
  • f0480f0 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version switched the --show-toplevel flag with --show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.js child_process. The new flag returns a path relative to the working directory, avoiding the issue.

    The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.

v15.2.7

Compare Source

Patch Changes
  • #​1440 a51be80 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version drops the --path-format=absolute option to support earlier git versions since it's also the default behavior. If you are still having trouble, please try upgrading git to the latest version.

v15.2.6

Compare Source

Patch Changes
  • #​1433 119adb2 Thanks @​iiroj! - Use native "git rev-parse" commands to determine git repo root directory and the .git config directory, instead of using custom logic. This hopefully makes path resolution more robust on non-POSIX systems.

v15.2.5

Compare Source

Patch Changes

v15.2.4

Compare Source

Patch Changes
  • 4f4537a Thanks @​iiroj! - Fix release issue with previous version; update dependencies
tree-sitter/node-tree-sitter (tree-sitter)

v0.22.0

Compare Source

v0.21.1

Compare Source

v0.21.0

Compare Source

BREAKING CHANGES:

Other changes:

  • add more methods/properties to bring Node inline with Rust bindings (contributed by @​amaanq in #​191)
  • make module context aware (contributed by @​segevfiner in #​184)
  • drop Node 14 and 16 support
  • switch to prebuildify instead of prebuild-install (now binaries are stored on npm instead of GitHub Releases) (contributed by @​ObserverOfTime in #​192)
microsoft/TypeScript (typescript)

v5.6.3

Compare Source

v5.6.2

Compare Source

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.3: TypeScript 5.5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.2: TypeScript 5.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.5: TypeScript 5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.4: TypeScript 5.4.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.3: TypeScript 5.4.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.2: TypeScript 5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Berlin, 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/npm-dependencies-without-major-updates branch 6 times, most recently from 8ca11f6 to 7893ad3 Compare March 13, 2024 16:27
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 6 times, most recently from eacb59e to fd1055b Compare March 20, 2024 21:02
@mylinhdao
Copy link
Collaborator

To update the new tree-sitter version, all our supported languages need to update their Node binding for using Node API. So we should wait them to be changed before we merge this PR.

@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 2 times, most recently from 05aec1e to 49bd960 Compare March 28, 2024 12:21
@renovate renovate bot changed the title chore(deps): update npm dependencies without major updates fix(deps): update npm dependencies without major updates Mar 28, 2024
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 3 times, most recently from cae8153 to 5883ff2 Compare March 30, 2024 08:52
@renovate renovate bot changed the title fix(deps): update npm dependencies without major updates chore(deps): update npm dependencies without major updates Mar 30, 2024
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 5 times, most recently from 743cce8 to 28ff1e3 Compare April 9, 2024 08:01
Copy link

github-actions bot commented Apr 9, 2024

Coverage Report

Status Category Percentage Covered / Total
🔴 Lines 66.71% (🎯 90%) 3287 / 4927
🔴 Statements 66.71% (🎯 90%) 3287 / 4927
🔴 Functions 57.52% (🎯 90%) 130 / 226
🔴 Branches 87.82% (🎯 90%) 274 / 312
File CoverageNo changed files found.
Generated in workflow #237 for commit c306453 by the Vitest Coverage Report Action

@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 3 times, most recently from 25fdab3 to c85039f Compare April 11, 2024 18:10
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 2 times, most recently from 39852ed to ba01320 Compare August 19, 2024 03:50
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 2 times, most recently from 59ca2cc to 63e9c4b Compare August 26, 2024 14:46
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 4 times, most recently from 4f19e68 to f76f80e Compare September 1, 2024 15:50
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 3 times, most recently from 697e772 to 7f4d289 Compare September 9, 2024 19:10
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 2 times, most recently from a5b5c69 to 457fb66 Compare September 12, 2024 01:22
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 4 times, most recently from a746e35 to aea5f08 Compare September 27, 2024 17:04
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 2 times, most recently from 145e386 to 2bf626e Compare October 8, 2024 22:52
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 4 times, most recently from f6b4a15 to d0e9f09 Compare October 23, 2024 08:54
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch 5 times, most recently from bc96068 to 62c26a3 Compare October 31, 2024 20:26
@renovate renovate bot force-pushed the renovate/npm-dependencies-without-major-updates branch from 62c26a3 to c306453 Compare November 3, 2024 07:53
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