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 dev dependencies (non-major) #287

Merged
merged 1 commit into from
Aug 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 17, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@typescript-eslint/eslint-plugin (source) 7.16.1 -> 7.18.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.16.1 -> 7.18.0 age adoption passing confidence
@vitest/coverage-v8 (source) 2.0.3 -> 2.0.5 age adoption passing confidence
eslint-plugin-jsdoc 50.0.0 -> 50.2.2 age adoption passing confidence
eslint-plugin-react 7.34.4 -> 7.35.0 age adoption passing confidence
husky 9.0.11 -> 9.1.4 age adoption passing confidence
lint-staged 15.2.7 -> 15.2.9 age adoption passing confidence
typedoc (source) 0.26.4 -> 0.26.5 age adoption passing confidence
typescript (source) 5.5.3 -> 5.5.4 age adoption passing confidence
vitest (source) 2.0.3 -> 2.0.5 age adoption passing confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.18.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib

  • eslint-plugin: [unbound-method] report on destructuring in function parameters

  • eslint-plugin: [no-duplicate-type-constituents] shouldn't report on error types

  • eslint-plugin: [strict-boolean-expressions] support branded booleans

❤️ Thank You
  • auvred
  • Oliver Salzburg
  • Vinccool96
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

v7.17.0

Compare Source

🚀 Features
  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7

  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never"

🩹 Fixes
  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more)

  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context

  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field

❤️ Thank You
  • Armano
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • StyleShit

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.18.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.17.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

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

v2.0.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.0.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v50.2.2

Compare Source

Bug Fixes
  • check-param-names: check against whitelist of acceptable function nodes so that non-function global contexts do not err; fixes #​1303 (288f0ae)

v50.2.1

Compare Source

v50.2.0

Compare Source

v50.1.0

Compare Source

v50.0.1

Compare Source

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.35.0

Compare Source

Added
Fixed
Changed
typicode/husky (husky)

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.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.

TypeStrong/TypeDoc (typedoc)

v0.26.5

Compare Source

Features
  • TypeDoc now exposes array option defaults under OptionDefaults, #​2640.
Bug Fixes
  • Constructor parameters which share a name with a property on a parent class will no longer inherit the comment on the parent class, #​2636.
  • Packages mode will now attempt to use the comment declared in the comment class for inherited members, #​2622.
  • TypeDoc no longer crashes when @document includes an empty file, #​2638.
  • API: Event listeners added later with the same priority will be called later, #​2643.
Thanks!
Microsoft/TypeScript (typescript)

v5.5.4

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 was generated by Mend Renovate. View the repository job log.

Copy link

github-actions bot commented Jul 17, 2024

Size Change: 0 B

Total Size: 19.4 kB

ℹ️ View Unchanged
Filename Size
lib/app-check/index.js 59 B
lib/app-check/useAppCheckToken.js 383 B
lib/auth/index.js 75 B
lib/auth/useAuthIdToken.js 519 B
lib/auth/useAuthIdTokenResult.js 532 B
lib/auth/useAuthState.js 396 B
lib/common/index.js 31 B
lib/common/types.js 31 B
lib/database/index.js 70 B
lib/database/internal.js 188 B
lib/database/useObject.js 371 B
lib/database/useObjectOnce.js 430 B
lib/database/useObjectValue.js 687 B
lib/database/useObjectValueOnce.js 657 B
lib/firestore/index.js 128 B
lib/firestore/internal.js 444 B
lib/firestore/types.js 31 B
lib/firestore/useAggregateFromServer.js 589 B
lib/firestore/useDocument.js 650 B
lib/firestore/useDocumentData.js 772 B
lib/firestore/useDocumentDataOnce.js 615 B
lib/firestore/useDocumentOnce.js 560 B
lib/firestore/useQueries.js 650 B
lib/firestore/useQueriesData.js 729 B
lib/firestore/useQueriesDataOnce.js 671 B
lib/firestore/useQuery.js 622 B
lib/firestore/useQueryData.js 770 B
lib/firestore/useQueryDataOnce.js 623 B
lib/firestore/useQueryOnce.js 544 B
lib/index.js 107 B
lib/internal/useGet.js 481 B
lib/internal/useIsMounted.js 185 B
lib/internal/useListen.js 507 B
lib/internal/useLoadingValue.js 351 B
lib/internal/useMultiGet.js 628 B
lib/internal/useMultiListen.js 634 B
lib/internal/useMultiLoadingValue.js 522 B
lib/internal/useStableValue.js 257 B
lib/messaging/index.js 60 B
lib/messaging/useMessagingToken.js 394 B
lib/storage/index.js 90 B
lib/storage/internal.js 142 B
lib/storage/useBlob.js 507 B
lib/storage/useBytes.js 472 B
lib/storage/useDownloadURL.js 368 B
lib/storage/useMetadata.js 360 B
lib/storage/useStream.js 512 B

compressed-size-action

@renovate renovate bot force-pushed the renovate/dev-dependencies branch from ead70a5 to 1f79b11 Compare July 18, 2024 13:39
@renovate renovate bot changed the title chore(deps): update dependency husky to v9.1.0 chore(deps): update dependency husky to v9.1.1 Jul 18, 2024
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 1f79b11 to 2041adf Compare July 19, 2024 17:32
@renovate renovate bot changed the title chore(deps): update dependency husky to v9.1.1 chore(deps): update dev dependencies (non-major) Jul 19, 2024
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 9 times, most recently from 298bff4 to 6790545 Compare July 26, 2024 19:50
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 9 times, most recently from 3c488d1 to 7a61aee Compare August 3, 2024 07:14
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 6 times, most recently from 1c44130 to 77e3bd5 Compare August 13, 2024 23:17
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 77e3bd5 to dcb46d5 Compare August 14, 2024 15:17
@andipaetzold andipaetzold merged commit 3b2af24 into main Aug 14, 2024
4 checks passed
@andipaetzold andipaetzold deleted the renovate/dev-dependencies branch August 14, 2024 22:29
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