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

fix(deps): update all non-major dependencies #119

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 8, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@expo/plist (source) 0.1.3 -> 0.2.1 age adoption passing confidence dependencies minor
@types/jest (source) 29.5.12 -> 29.5.14 age adoption passing confidence devDependencies patch
@types/node (source) 20.12.12 -> 20.17.16 age adoption passing confidence devDependencies minor
commitizen 4.3.0 -> 4.3.1 age adoption passing confidence devDependencies patch
http-cookie-agent 6.0.5 -> 6.0.8 age adoption passing confidence dependencies patch
husky 9.0.11 -> 9.1.7 age adoption passing confidence devDependencies minor
node (source) 20.12.1 -> 20.18.2 age adoption passing confidence volta minor
rimraf 5.0.7 -> 5.0.10 age adoption passing confidence devDependencies patch
ts-jest (source) 29.1.4 -> 29.2.5 age adoption passing confidence devDependencies minor
typescript (source) 5.4.5 -> 5.7.3 age adoption passing confidence devDependencies minor

Release Notes

expo/expo (@​expo/plist)

v0.2.1

Compare Source

v0.2.0

Compare Source

This version does not introduce any user-facing changes.

commitizen/cz-cli (commitizen)

v4.3.1

Compare Source

4.3.1 (2024-09-27)
Bug Fixes
3846masa/http-cookie-agent (http-cookie-agent)

v6.0.8

Compare Source

Bug Fixes

v6.0.7

Compare Source

Bug Fixes

v6.0.6

Compare Source

Bug Fixes
typicode/husky (husky)

v9.1.7

Compare Source

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 😉

nodejs/node (node)

v20.18.2

Compare Source

v20.18.1: 2024-11-20, Version 20.18.1 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits

v20.18.0: 2024-10-03, Version 20.18.0 'Iron' (LTS), @​targos

Compare Source

Notable Changes
Experimental Network Inspection Support in Node.js

This update introduces the initial support for network inspection in Node.js.
Currently, this is an experimental feature, so you need to enable it using the --experimental-network-inspection flag.
With this feature enabled, you can inspect network activities occurring within a JavaScript application.

To use network inspection, start your Node.js application with the following command:

$ node --inspect-wait --experimental-network-inspection index.js

Please note that the network inspection capabilities are in active development.
We are actively working on enhancing this feature and will continue to expand its functionality in future updates.

Contributed by Kohei Ueno in #​53593 and #​54246

Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext

This releases introduces a new option to the API tls.createSecureContext. From
now on, tls.createSecureContext({ allowPartialTrustChain: true }) can be used
to treat intermediate (non-self-signed) certificates in the trust CA certificate
list as trusted.

Contributed by Anna Henningsen in #​54790

New option for vm.createContext() to create a context with a freezable globalThis

Node.js implements a flavor of vm.createContext() and friends that creates a context without contextifying its global
object when vm.constants.DONT_CONTEXTIFY is used. This is suitable when users want to freeze the context
(impossible when the global is contextified i.e. has interceptors installed) or speed up the global access if they
don't need the interceptor behavior.

Contributed by Joyee Cheung in #​54394

Deprecations
  • [64aa31f6e5] - repl: doc-deprecate instantiating node:repl classes without new (Aviv Keller) #​54842
  • [4c52ee3d7f] - zlib: deprecate instantiating classes without new (Yagiz Nizipli) #​54708
Other Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - "* 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 3 times, most recently from 335f25d to 06ccaf8 Compare April 10, 2024 17:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 06ccaf8 to a923965 Compare April 17, 2024 01:55
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Apr 17, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 68b9ca0 to 815df70 Compare May 6, 2024 16:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7e50a64 to 44fa09e Compare May 12, 2024 03:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 44fa09e to c655120 Compare May 14, 2024 06:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2ffbd9f to acae518 Compare May 28, 2024 09:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from acae518 to 1d59c2d Compare May 28, 2024 20:05
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update node.js to v20.14.0 May 29, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1d59c2d to b137554 Compare May 29, 2024 17:12
@renovate renovate bot changed the title chore(deps): update node.js to v20.14.0 chore(deps): update all non-major dependencies May 29, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d385404 to dbd39e0 Compare June 2, 2024 21:10
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies to v20.14.0 Jun 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dbd39e0 to 2775c7c Compare June 4, 2024 01:29
@renovate renovate bot changed the title chore(deps): update all non-major dependencies to v20.14.0 chore(deps): update all non-major dependencies Jun 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2775c7c to 1e979db Compare June 5, 2024 08:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1e979db to 397413b Compare June 16, 2024 16:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 728215e to fd82c65 Compare October 25, 2024 16:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 7b4f108 to b7a57eb Compare November 3, 2024 04:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b7a57eb to 1780bec Compare November 12, 2024 19:58
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Nov 12, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 90bff02 to fc4d95e Compare November 23, 2024 07:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a910227 to c551e90 Compare November 28, 2024 07:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 358f587 to d14f51d Compare December 12, 2024 17:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a35ed4b to 1d16c3e Compare January 10, 2025 20:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e1a99c7 to 12f7b02 Compare January 16, 2025 02:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e104255 to dcea84f Compare January 23, 2025 02:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dcea84f to b248499 Compare January 23, 2025 11:57
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.

0 participants