chore(deps): update frontend dependencies (major) #1309
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
~8.0
->~10.0.0
^1.11.0
->^3.0.0
^1.2.1
->^2.0.0
^6.1.12
->^9.0.0
^8.2.0
->^9.0.0
10.9.2
->11.2.0
^2.3.0
->^3.0.0
^4.1.0
->^5.0.0
^1.5.0
->^2.0.0
Release Notes
welldone-software/why-did-you-render (@welldone-software/why-did-you-render)
v10.0.1
Compare Source
notifier
was not exposingownerDataMap
despite the documentation saying it should.v10.0.0
: Why Did You Render v10 Supporting React 19! 🎉🍾Compare Source
¯\(ツ)/¯ The version was bumped from v8 to v10 directly and 10.0.0 is actually the same as the next 10.0.1. Sorry, I had some
npm
publishing issues ¯\(ツ)/¯Breaking Changes
notifier
callback props were renamed fromprevHook
andnextHook
toprevHookResult
andnextHookResult
wdyrStore.hooksPerRender
was renamed towdyrStore.hooksInfoForCurrentRender
New Features
textBackgroundColor
.Internal
fast-refresh
instead of the oldhot-reload
React 19
.forwardRef
functions accept exactly two parameters. Added a demo page forforwardRef
.fiduswriter/biblatex-csl-converter (biblatex-csl-converter)
v3.0.1
Compare Source
v3.0.0
Compare Source
v2.1.0
Compare Source
v2.0.4
Compare Source
v2.0.2
Compare Source
v2.0.1
Compare Source
v2.0.0
Compare Source
lukeed/clsx (clsx)
v2.1.1
Compare Source
Patches
bigint
inClassValue
type: (#96):3d960ab
Accommodates recent
@types/react
changes toReactNode
.Thank you @ViliamKopecky~!
Chores
licenses.dev
badge:684509c
This service recursively analyzes entire dependency graphs to ensure that a package (or your project) is using permissive licenses. For example, here's a results table for
polka@next
and a largerastro
example.v2.1.0
Compare Source
Features
Add new
clsx/lite
submodule forstring
-only usage:1a49142
This is a 140b version of
clsx
that is ideal for Tailwind and/or React contexts, which typically follow thisclsx
usage pattern:v2.0.1
Compare Source
Patches
arguments.length
&array.length
for 6% performance gain (#26):deff09b
Adds 5 bytes (+2%) for ~3% avg performance gain
Thank you @jalalazimi
Chores
bf64e71
855eec2
,6e3b2b9
,nyc
withc8
in CI:6e2468e
308a238
42354d3
,4c9a55d
Thank you @andipaetzold and @acusti
v2.0.0
Compare Source
Breaking
"exports"
map for native ESM support (#57):3ec8e9f
,0949868
Also supports TypeScript's
node16
/nodenext
module resolutionMaintains CommonJS support (with fixed TS definitions)
Thank you @remcohaszing~!
Chores
496db1d
,4a4eadd
Thank you @kevinlowe0x3F7 & @kevinlowe0x3F7
c520353
03e1cf9
downshift-js/downshift (downshift)
v9.0.8
Compare Source
Bug Fixes
v9.0.7
Compare Source
Bug Fixes
v9.0.6
Compare Source
Bug Fixes
v9.0.5
Compare Source
Bug Fixes
v9.0.4
Compare Source
Bug Fixes
v9.0.3
Compare Source
Bug Fixes
v9.0.2
Compare Source
Bug Fixes
v9.0.1
Compare Source
Bug Fixes
v9.0.0
Compare Source
Features
BREAKING CHANGES
Why:
Release the changes in:
Closes https://github.com/downshift-js/downshift/issues/1322.
Closes https://github.com/downshift-js/downshift/issues/1244.
Closes https://github.com/downshift-js/downshift/issues/1227
Closes https://github.com/downshift-js/downshift/issues/1225.
How:
Merged the PRs in this branch.
Checklist:
v8.5.0
Compare Source
Features
v8.4.0
Compare Source
Features
v8.3.3
Compare Source
Bug Fixes
v8.3.2
Compare Source
Bug Fixes
v8.3.1
Compare Source
Bug Fixes
v8.3.0
Compare Source
Features
v8.2.4
Compare Source
Bug Fixes
v8.2.3
Compare Source
Bug Fixes
v8.2.2
Compare Source
Bug Fixes
v8.2.1
Compare Source
Bug Fixes
v8.2.0
Compare Source
Features
v8.1.1
Compare Source
Bug Fixes
v8.1.0
Compare Source
Features
v8.0.2
Compare Source
Bug Fixes
v8.0.1
Compare Source
Bug Fixes
v8.0.0
Compare Source
Features
BREAKING CHANGES
PRs included:
https://github.com/downshift-js/downshift/pull/1440
https://github.com/downshift-js/downshift/pull/1445
https://github.com/downshift-js/downshift/pull/1463
https://github.com/downshift-js/downshift/pull/1510
https://github.com/downshift-js/downshift/pull/1482
Changes
These changes will also be covered in the V8 migration guide.
isItemDisabled
Both
useCombobox
anduseSelect
now support theisItemDisabled
function. This new API is used to mark menu items as disabled, and as such remove the from the navigation and prevent them from being selected. The old API required passing thedisabled
prop to thegetItemProps
function. This old API has been removed and you will receive a console warning if you are trying to use thedisabled
prop in getItemProps.Example of API migration:
Old:
New:
The API for Downshift remains unchange.
useCombobox input click
ARIA 1.2 recommends to toggle the menu open state at input click. Previously, in v7, the menu was opened on receiving focus, from both mouse and keyboard. Starting with v8, input focus will not trigger any state change anymore. Only the input click event will be handled and will trigger a menu toggle. Consequently:
useCombobox.stateChangeTypes.InputFocus
has been removed.useCombobox.stateChangeTypes.InputClick
has been added instead.We recommend having the default toggle on input click behaviour as it's part of the official ARIA combobox 1.2 spec, but if you wish to override it and not toggle the menu on click, use the stateReducer:
If you want to return to the v7 behaviour and open the menu on focus, keep the reducer above so you remove the toggle behaviour, and call the openMenu imperative function, returned by useCombobox, in a onFocus handler passed to
getInputProps:
Consider to use the default 1.2 ARIA behaviour provided by default in order to align your widget to the accessibility official spec. This behaviour consistency improves the user experience, since all comboboxes should behave the same and
there won't be need for any additional guess work done by your users.
Getter props return value types
Previously, the return value from the getter props returned by both Downshift and the hooks was
any
. In v8 we improved the types in order to reflect what is actually returned: the default values return by the getter prop function andwhatever else the user passes as arguments. The type changes are done in this PR, make sure you adapt your TS code, if applicable.
Also, in the
Downshift
component, the return values for some getter prop values have changed fromnull
toundefined
, since that is what HTML elements expect (value or undefined). These values are also reflected in the TS types.nullundefined,nullundefinedhighlightedIndex >= 0 ? this.getItemId(highlightedIndex) :
nullundefinednullundefined : this.labelId,environment propTypes
The
environment
prop is useful when you are using downshift in a contextdifferent than regular DOM. Its TS type has been updated to contain
Node
andthe propTypes have also been updated to reflect the properties which are
required by downshift from
environment
.v7.6.2
Compare Source
Bug Fixes
v7.6.1
Compare Source
Bug Fixes
v7.6.0
Compare Source
Features
v7.5.0
Compare Source
Features
v7.4.1
Compare Source
Bug Fixes
v7.4.0
Compare Source
Features
v7.3.4
Compare Source
Bug Fixes
v7.3.3
Compare Source
Bug Fixes
v7.3.2
Compare Source
Bug Fixes
v7.3.1
Compare Source
Bug Fixes
v7.3.0
Compare Source
Features
v7.2.2
Compare Source
Bug Fixes
v7.2.1
Compare Source
Bug Fixes
v7.2.0
Compare Source
Features
v7.1.2
Compare Source
Bug Fixes
browserlist
so that js files are transpiled (#1457) (c406ab2)v7.1.1
Compare Source
Bug Fixes
v7.1.0
Compare Source
Features
v7.0.5
Compare Source
Bug Fixes
v7.0.4
Compare Source
Bug Fixes
v7.0.3
Compare Source
Bug Fixes
v7.0.1
Compare Source
Bug Fixes
v7.0.0
Compare Source
Features
BREAKING CHANGES
Migration guide is available in this file.
Closes https://github.com/downshift-js/downshift/issues/1365.
Closes https://github.com/downshift-js/downshift/issues/1239.
Contains changes from https://github.com/downshift-js/downshift/pull/1149.
eslint/eslint (eslint)
v9.22.0
Compare Source
Features
7ddb095
feat: Export defineConfig, globalIgnores (#19487) (Nicholas C. Zakas)Bug Fixes
19c0127
fix: improve message forno-console
suggestions (#19483) (Francesco Trotta)49e624f
fix: improve error message for falsy parsed JS AST (#19458) (Josh Goldberg ✨)Documentation
86c5f37
docs: Update README (GitHub Actions Bot)fbdeff0
docs: Update README (GitHub Actions Bot)c9e8510
docs: generate deprecation notice in TSDoc comments from rule metadata (#19461) (Francesco Trotta)2f386ad
docs: replacevar
withconst
in rule examples (#19469) (Tanuj Kanti)0e688e3
docs: Update README (GitHub Actions Bot)06b596d
docs: Restore the carrot to the position where the search input was lost (#19459) (Amaresh S M)Chores
97f788b
chore: upgrade @eslint/js@9.22.0 (#19489) (Milos Djermanovic)eed409a
chore: package.json update for @eslint/js release (Jenkins)f9a56d3
chore: upgrade eslint-scope@8.3.0 (#19488) (Milos Djermanovic)v9.21.0
Compare Source
Features
418717f
feat: introduce new deprecated types for rules (#19238) (fnx)5c5b802
feat: Add--ext
CLI option (#19405) (Milos Djermanovic)Bug Fixes
db5340d
fix: update missing plugin message template (#19445) (Milos Djermanovic)d8ffdd4
fix: do not exit process on rule crash (#19436) (Francesco Trotta)Documentation
c5561ea
docs: Update README (GitHub Actions Bot)80b0485
docs: replacevar
withlet
andconst
in rule example (#19434) (Tanuj Kanti)f67d5e8
docs: Update README (GitHub Actions Bot)75afc61
docs: Update README (GitHub Actions Bot)0636cab
docs: Update Eleventy from v2 to v3 (#19415) (Amaresh S M)dd7d930
docs: Update README (GitHub Actions Bot)Chores
a8c9a9f
chore: update@eslint/eslintrc
and@eslint/js
(#19453) (Francesco Trotta)265e0cf
chore: package.json update for @eslint/js release (Jenkins)3401b85
test: add test forRule.ReportDescriptor
type (#19449) (Francesco Trotta)e497aa7
chore: update rewrite dependencies (#19448) (Francesco Trotta)dab5478
chore: better error message for missing plugin in config (#19402) (Tanuj Kanti)ebfe2eb
chore: set js language for bug report issue config block (#19439) (Josh Goldberg ✨)5fd211d
test: processors can return subpaths (#19425) (Milos Djermanovic)v9.20.1
Compare Source
Bug Fixes
274f054
fix: fixRuleContext
type (#19417) (Francesco Trotta)Documentation
fe3ccb2
docs: allow typing in search box while dropdown is open (#19424) (Amaresh S M)93c78a5
docs: Add instructions for pnpm compat (#19422) (Nicholas C. Zakas)b476a93
docs: Fix Keyboard Navigation for Search Results (#19416) (Amaresh S M)ccb60c0
docs: Update README (GitHub Actions Bot)v9.20.0
Compare Source
Features
e89a54a
feat: change behavior of inactive flags (#19386) (Milos Djermanovic)Bug Fixes
91d4d9f
fix: Bring types in sync with @eslint/core (#19157) (Nicholas C. Zakas)fa25c7a
fix: Emit warning when empty config file is used (#19399) (Nicholas C. Zakas)31a9fd0
fix: Clearer error message for wrong plugin format (#19380) (Nicholas C. Zakas)61d99e3
fix: Better error message for unserializable parser (#19384) (Nicholas C. Zakas)db1b9a6
fix: Ensure module scope is checked for references inconsistent-this
(#19383) (Nicholas C. Zakas)8bcd820
fix:arrow-body-style
crash with single-token body (#19379) (Milos Djermanovic)Documentation
b7012c8
docs: rewrite examples with var using let and const (#19407) (Mueez Javaid Hashmi)6406376
docs: Update README (GitHub Actions Bot)350f2b9
docs: rewrite some examples with var using let and const (#19404) (Mueez Javaid Hashmi)93c325a
docs: rewrite examples with var using let and const (#19398) (Mueez Javaid Hashmi)56ff404
docs: replace var with let or const in rules docs (#19396) (Daniel Harbrueger)4053226
docs: changesourceType
inno-eval
examples (#19393) (Milos Djermanovic)1324af0
docs: replace var with let and const in rules docs (#19392) (Daniel Harbrueger)8b87e00
docs: replacevar
withconst
andlet
in rules (#19389) (Tanuj Kanti)758c66b
docs: Explain what frozen rules mean (#19382) (Nicholas C. Zakas)0ef8bb8
docs: additional checks for rule examples (#19358) (Milos Djermanovic)58ab2f6
docs: fix order of installation steps in getting started (#19326) (Tanuj Kanti)Chores
979097a
chore: upgrade @eslint/js@9.20.0 (#19412) (Francesco Trotta)031734e
chore: package.json update for @eslint/js release (Jenkins)d4c47c3
test: avoid empty config warning in test output (#19408) (Milos Djermanovic)67dd82a
chore: update dependency @eslint/json to ^0.10.0 (#19387) (renovate[bot])15ac0e1
chore: add permissions: read-all to stale.yml workflow (#19374) (Josh Goldberg ✨)v9.19.0
Compare Source
Features
1637b8e
feat: add--report-unused-inline-configs
(#19201) (Josh Goldberg ✨)Bug Fixes
aae6717
fix: sync rule type header comments automatically (#19276) (Francesco Trotta)Documentation
cfea9ab
docs: Clarify overrideConfig option (#19370) (Nicholas C. Zakas)2b84f66
docs: Update README (#19362) (Nicholas C. Zakas)044f93c
docs: clarify frozen rule description (#19351) (Pavel)797ee7c
docs: fix Bluesky links (#19368) (Milos Djermanovic)81a9c0e
docs: Update READMEConfiguration
📅 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.
This PR has been generated by Renovate Bot.