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 npm update #527

Merged
merged 2 commits into from
Jul 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 2, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@oclif/plugin-help ^6.2.4 -> ^6.2.6 age adoption passing confidence
@oclif/plugin-not-found ^3.2.8 -> ^3.2.11 age adoption passing confidence
@oclif/plugin-update ^4.4.6 -> ^4.4.9 age adoption passing confidence
@types/node (source) ^20.14.9 -> ^20.14.11 age adoption passing confidence
husky ^9.0.11 -> ^9.1.1 age adoption passing confidence
oclif ^4.13.12 -> ^4.14.6 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence
typescript (source) ^5.5.2 -> ^5.5.3 age adoption passing confidence
winston ^3.13.0 -> ^3.13.1 age adoption passing confidence

Release Notes

oclif/plugin-help (@​oclif/plugin-help)

v6.2.6

Compare Source

Bug Fixes

v6.2.5

Compare Source

Bug Fixes
oclif/plugin-not-found (@​oclif/plugin-not-found)

v3.2.11

Compare Source

Bug Fixes

v3.2.10

Compare Source

Bug Fixes

v3.2.9

Compare Source

Bug Fixes
oclif/plugin-update (@​oclif/plugin-update)

v4.4.9

Compare Source

Bug Fixes

v4.4.8

Compare Source

Bug Fixes

v4.4.7

Compare Source

Bug Fixes
typicode/husky (husky)

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 😉

oclif/oclif (oclif)

v4.14.6

Compare Source

Bug Fixes

v4.14.5

Compare Source

Bug Fixes

v4.14.4

Compare Source

Bug Fixes

v4.14.3

Compare Source

Bug Fixes
  • deps: bump validate-npm-package-name from 5.0.0 to 5.0.1 (7759b2a)

v4.14.2

Compare Source

Bug Fixes
  • deps: bump normalize-package-data from 6.0.1 to 6.0.2 (db8c4cf)

v4.14.1

Compare Source

Bug Fixes

v4.14.0

Compare Source

Features

4.13.16 (2024-07-08)

Bug Fixes

4.13.15 (2024-07-07)

Bug Fixes

4.13.14 (2024-07-07)

Bug Fixes

4.13.13 (2024-07-07)

Bug Fixes

4.13.12 (2024-06-30)

Bug Fixes

4.13.11 (2024-06-30)

Bug Fixes

4.13.10 (2024-06-23)

Bug Fixes

4.13.9 (2024-06-23)

Bug Fixes

4.13.8 (2024-06-17)

Bug Fixes

4.13.7 (2024-06-16)

Bug Fixes

4.13.6 (2024-06-13)

Bug Fixes
  • deps: bump braces from 3.0.2 to 3.0.3 (2d70057)

4.13.5 (2024-06-10)

Bug Fixes

4.13.4 (2024-06-09)

Bug Fixes

4.13.3 (2024-06-09)

Bug Fixes

4.13.2 (2024-06-09)

Bug Fixes

4.13.1 (2024-06-07)

Bug Fixes

v4.13.16

Compare Source

Bug Fixes

v4.13.15

Compare Source

Bug Fixes

v4.13.14

Compare Source

Bug Fixes

v4.13.13

Compare Source

Bug Fixes
prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

winstonjs/winston (winston)

v3.13.1

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch 2 times, most recently from ec1a051 to aca2355 Compare July 5, 2024 19:53
@renovate renovate bot changed the title chore(deps): update dependency typescript to ^5.5.3 chore(deps): update all non major npm update Jul 5, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch from aca2355 to 8b2bbf0 Compare July 6, 2024 12:33
@renovate renovate bot changed the title chore(deps): update all non major npm update fix(deps): update all non major npm update Jul 6, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch 8 times, most recently from c7a97f2 to 8dc540d Compare July 13, 2024 13:57
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch 8 times, most recently from 61076f7 to 4031e85 Compare July 17, 2024 17:30
@renovate renovate bot force-pushed the renovate/all-non-major-npm-update branch from 4031e85 to 49313ba Compare July 18, 2024 14:16
Copy link
Contributor Author

renovate bot commented Jul 19, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@henchiyb henchiyb merged commit 3ba710b into main Jul 19, 2024
30 checks passed
@henchiyb henchiyb deleted the renovate/all-non-major-npm-update branch July 19, 2024 05:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant