react-firehooks
react-firehooks copied to clipboard
chore(deps): update dev dependencies (non-major)
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
@typescript-eslint/eslint-plugin (source) | 7.16.1 -> 7.17.0 |
||||
@typescript-eslint/parser (source) | 7.16.1 -> 7.17.0 |
||||
@vitest/coverage-v8 (source) | 2.0.3 -> 2.0.4 |
||||
eslint-plugin-jsdoc | 48.7.0 -> 48.8.3 |
||||
eslint-plugin-react | 7.34.4 -> 7.35.0 |
||||
husky | 9.0.11 -> 9.1.3 |
||||
typedoc (source) | 0.26.4 -> 0.26.5 |
||||
typescript (source) | 5.5.3 -> 5.5.4 |
||||
vitest (source) | 2.0.3 -> 2.0.4 |
Release Notes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v7.17.0
🚀 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.17.0
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.4
🐞 Bug Fixes
- One-line environment options - by @hahanein in https://github.com/vitest-dev/vitest/issues/5105 (38269)
- Resolve assets imported with
require
- by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6159 (807a2) -
browser:
- Don't panic if @vitest/browser is installed outside of project root - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6135 (ccfcd)
- Set global filepath - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6190 (0d0b4)
- Allow preview and open in the editor screenshot error from ui - by @userquin in https://github.com/vitest-dev/vitest/issues/6113 (2d620)
-
coverage:
- Global thresholds to include files from glob thresholds - by @thor-juhasz and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6172 (02e3f)
- Consistent type-only file handling - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6183 (90576)
- Ignore
*.cts
files - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6189 (5da45) - Add
thresholds.<glob>.100
option - by @thor-juhasz and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6174 (f6845)
-
spy:
- Fix
mockImplementation
for function overload and unions - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6181 (7a75b)
- Fix
View changes on GitHub
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)
v48.8.3
Bug Fixes
-
require-template
,check-template-names
: check @property tags; fixes #1269 (22e3274)
v48.8.2
v48.8.1
Bug Fixes
- sort-tags: @template must be before @typedef (6fb0b3e)
v48.8.0
jsx-eslint/eslint-plugin-react (eslint-plugin-react)
v7.35.0
Added
- support eslint v9 (#3759 @mdjermanovic)
- export flat configs from plugin root and fix flat config crash (#3694 @bradzacher @mdjermanovic)
- add [
jsx-props-no-spread-multi
] (#3724 @SimonSchick) - [
forbid-component-props
]: addpropNamePattern
to allow / disallow prop name patterns (#3774 @akulsr0) - [
jsx-handler-names
]: support ignoring component names (#3772 @akulsr0) - version settings: Allow react defaultVersion to be configurable (#3771 @onlywei)
- [
jsx-closing-tag-location
]: addline-aligned
option (#3777 @kimtaejin3) - [
no-danger
]: addcustomComponentNames
option (#3748 @akulsr0)
Fixed
- [
no-invalid-html-attribute
]: substitute placeholders in suggestion messages (#3759 @mdjermanovic) - [
sort-prop-types
]: single line type ending without semicolon (#3784 @akulsr0) - [
require-default-props
]: report when required props have default value (#3785 @akulsr0)
Changed
- [Refactor]
variableUtil
: Avoid creating a single flat variable scope for each lookup (#3782 @DanielRosenwasser)
typicode/husky (husky)
v9.1.3
- fix: better handle space in
PATH
v9.1.2
v9.1.1
v9.1.0
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 😉
TypeStrong/TypeDoc (typedoc)
v0.26.5
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!
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.