build(deps-dev): bump the dev-deps group across 1 directory with 7 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 1
(8 days ago)
(4 days ago)
dependencies javascript
Bumps the dev-deps group with 7 updates in the / directory:
Package | From | To |
---|---|---|
@biomejs/biome | 2.1.3 |
2.2.2 |
@tailwindcss/postcss | 4.1.11 |
4.1.12 |
@types/node | 24.2.0 |
24.3.0 |
@types/react | 19.1.9 |
19.1.12 |
@types/react-dom | 19.1.7 |
19.1.9 |
lefthook | 1.12.2 |
1.12.3 |
tailwindcss | 4.1.11 |
4.1.12 |
Updates @biomejs/biome
from 2.1.3 to 2.2.2
Release notes
Sourced from @biomejs/biome
's releases.
Biome CLI v2.2.2
2.2.2
Patch Changes
#7266
b270bb5
Thanks@ematipico
! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.#7281
6436180
Thanks@ematipico
! - Fixed an issue where the functionscanProject
wouldn't work as expected.#7285
1511d0c
Thanks@rriski
! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.#7249
dff85c0
Thanks@ematipico
! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.#7266
b270bb5
Thanks@ematipico
! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.#7209
679b70e
Thanks@patrickshipe
! - Resolved an overcorrection inuseImportExtensions
when importing explicit index files.Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.
Example
// Before - import "./sub/index"; + import "./sub/index/index.js";
// After
import "./sub/index";
import "./sub/index.js";
#7270
953f9c6
Thanks@arendjr
! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.#7234
b7aa111
Thanks@JeetuSuthar
! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.
#7283
0b07f45
Thanks@ematipico
! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using--config-path
.#7239
1d643d8
Thanks@minht11
! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside.svelte.test.ts/js
and.svelte.spec.ts/js
files.#7264
62fdbc8
Thanks@ematipico
! - Fixed a regression where when using--log-kind-pretty
wasn't working anymore as expected.#7244
660031b
Thanks@JeetuSuthar
! - Fixed #7225: ThenoExtraBooleanCast
rule now preserves parentheses when removingBoolean
calls inside negations.// Before !Boolean(b0 && b1); // After !(b0 && b1); // instead of !b0 && b1
... (truncated)
Changelog
Sourced from @biomejs/biome
's changelog.
2.2.2
Patch Changes
#7266
b270bb5
Thanks@ematipico
! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.#7281
6436180
Thanks@ematipico
! - Fixed an issue where the functionscanProject
wouldn't work as expected.#7285
1511d0c
Thanks@rriski
! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.#7249
dff85c0
Thanks@ematipico
! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.#7266
b270bb5
Thanks@ematipico
! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.#7209
679b70e
Thanks@patrickshipe
! - Resolved an overcorrection inuseImportExtensions
when importing explicit index files.Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.
Example
// Before - import "./sub/index"; + import "./sub/index/index.js";
// After
import "./sub/index";
import "./sub/index.js";
#7270
953f9c6
Thanks@arendjr
! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.#7234
b7aa111
Thanks@JeetuSuthar
! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.
#7283
0b07f45
Thanks@ematipico
! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using--config-path
.#7239
1d643d8
Thanks@minht11
! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside.svelte.test.ts/js
and.svelte.spec.ts/js
files.#7264
62fdbc8
Thanks@ematipico
! - Fixed a regression where when using--log-kind-pretty
wasn't working anymore as expected.#7244
660031b
Thanks@JeetuSuthar
! - Fixed #7225: ThenoExtraBooleanCast
rule now preserves parentheses when removingBoolean
calls inside negations.// Before !Boolean(b0 && b1); // After !(b0 && b1); // instead of !b0 && b1
... (truncated)
Commits
dcdd819
ci: release (#7303)7886c98
chore: remove changeset, fix version number941cd73
chore: revert version number0f5fb2f
ci: release (#7238)27c93e8
docs: fix CHANGELOG to reflect operatorLinebreak (#7253)38795eb
chore: fix image sponsor (#7250)1075b73
fix(changelog): correct dead links in 2.2 (#7243)e1ba03c
chore: restore version and use different runner1b783c8
chore: revert versionee7ec19
chore: update version and lockfile- Additional commits viewable in compare view
Updates @tailwindcss/postcss
from 4.1.11 to 4.1.12
Release notes
Sourced from @tailwindcss/postcss
's releases.
v4.1.12
Fixed
- Don't consider the global important state in
@apply
(#18404)- Add missing suggestions for
flex-<number>
utilities (#18642)- Fix trailing
)
from interfering with extraction in Clojure keywords (#18345)- Detect classes inside Elixir charlist, word list, and string sigils (#18432)
- Track source locations through
@plugin
and@config
(#18345)- Allow boolean values of
process.env.DEBUG
in@tailwindcss/node
(#18485)- Ignore consecutive semicolons in the CSS parser (#18532)
- Center the dropdown icon added to an input with a paired datalist by default (#18511)
- Extract candidates in Slang templates (#18565)
- Improve error messages when encountering invalid functional utility names (#18568)
- Discard CSS AST objects with
false
orundefined
properties (#18571)- Allow users to disable URL rebasing in
@tailwindcss/postcss
viatransformAssetUrls: false
(#18321)- Fix false-positive migrations in
addEventListener
and JavaScript variable names (#18718)- Fix Standalone CLI showing default Bun help when run via symlink on Windows (#18723)
- Read from
--border-color-*
theme keys individe-*
utilities for backwards compatibility (#18704)- Don't scan
.hdr
and.exr
files for classes by default (#18734)
Changelog
Sourced from @tailwindcss/postcss
's changelog.
[4.1.12] - 2025-08-13
Fixed
- Don't consider the global important state in
@apply
(#18404)- Add missing suggestions for
flex-<number>
utilities (#18642)- Fix trailing
)
from interfering with extraction in Clojure keywords (#18345)- Detect classes inside Elixir charlist, word list, and string sigils (#18432)
- Track source locations through
@plugin
and@config
(#18345)- Allow boolean values of
process.env.DEBUG
in@tailwindcss/node
(#18485)- Ignore consecutive semicolons in the CSS parser (#18532)
- Center the dropdown icon added to an input with a paired datalist by default (#18511)
- Extract candidates in Slang templates (#18565)
- Improve error messages when encountering invalid functional utility names (#18568)
- Discard CSS AST objects with
false
orundefined
properties (#18571)- Allow users to disable URL rebasing in
@tailwindcss/postcss
viatransformAssetUrls: false
(#18321)- Fix false-positive migrations in
addEventListener
and JavaScript variable names (#18718)- Fix Standalone CLI showing default Bun help when run via symlink on Windows (#18723)
- Read from
--border-color-*
theme keys individe-*
utilities for backwards compatibility (#18704)- Don't scan
.hdr
and.exr
files for classes by default (#18734)
Commits
Updates @types/node
from 24.2.0 to 24.3.0
Commits
- See full diff in compare view
Updates @types/react
from 19.1.9 to 19.1.12
Commits
- See full diff in compare view
Updates @types/react-dom
from 19.1.7 to 19.1.9
Commits
- See full diff in compare view
Updates lefthook
from 1.12.2 to 1.12.3
Changelog
Sourced from lefthook's changelog.
1.12.3 (2025-08-12)
- feat: add MIME types to file_types filters (#1092)
- fix: respect LEFTHOOK_CONFIG in lefthook install (#1090) by
@TECHNOFAB11
- docs: update pnpm installation note (#1089) by
@skoch13
- docs: improve wording of
run
,files
, andfiles-global
config descriptions, document that thesh
shell is used (#1086) by@ItsHarper
- docs: 404 for local-config (#1082) by
@rammanoj
- docs: fix typo (#1079) by
@eai04191
Commits
54fc013
1.12.3: add MIME types to file_types filterf0a911b
feat: add MIME types to file_types filters (#1092)8004b3b
chore: style linter fixd41083c
fix: respect LEFTHOOK_CONFIG in lefthook install (#1090)fa1b79c
docs: update pnpm installation note (#1089)d9ec100
docs: fix usage link14e85d1
docs: improve wording ofrun
,files
, andfiles-global
config descriptio...97d8fb2
docs: 404 for local-config (#1082)1682e63
docs: fix typo (#1079)ba32452
docs: update links- See full diff in compare view
Updates tailwindcss
from 4.1.11 to 4.1.12
Release notes
Sourced from tailwindcss's releases.
v4.1.12
Fixed
- Don't consider the global important state in
@apply
(#18404)- Add missing suggestions for
flex-<number>
utilities (#18642)- Fix trailing
)
from interfering with extraction in Clojure keywords (#18345)- Detect classes inside Elixir charlist, word list, and string sigils (#18432)
- Track source locations through
@plugin
and@config
(#18345)- Allow boolean values of
process.env.DEBUG
in@tailwindcss/node
(#18485)- Ignore consecutive semicolons in the CSS parser (#18532)
- Center the dropdown icon added to an input with a paired datalist by default (#18511)
- Extract candidates in Slang templates (#18565)
- Improve error messages when encountering invalid functional utility names (#18568)
- Discard CSS AST objects with
false
orundefined
properties (#18571)- Allow users to disable URL rebasing in
@tailwindcss/postcss
viatransformAssetUrls: false
(#18321)- Fix false-positive migrations in
addEventListener
and JavaScript variable names (#18718)- Fix Standalone CLI showing default Bun help when run via symlink on Windows (#18723)
- Read from
--border-color-*
theme keys individe-*
utilities for backwards compatibility (#18704)- Don't scan
.hdr
and.exr
files for classes by default (#18734)
Changelog
Sourced from tailwindcss's changelog.
[4.1.12] - 2025-08-13
Fixed
- Don't consider the global important state in
@apply
(#18404)- Add missing suggestions for
flex-<number>
utilities (#18642)- Fix trailing
)
from interfering with extraction in Clojure keywords (#18345)- Detect classes inside Elixir charlist, word list, and string sigils (#18432)
- Track source locations through
@plugin
and@config
(#18345)- Allow boolean values of
process.env.DEBUG
in@tailwindcss/node
(#18485)- Ignore consecutive semicolons in the CSS parser (#18532)
- Center the dropdown icon added to an input with a paired datalist by default (#18511)
- Extract candidates in Slang templates (#18565)
- Improve error messages when encountering invalid functional utility names (#18568)
- Discard CSS AST objects with
false
orundefined
properties (#18571)- Allow users to disable URL rebasing in
@tailwindcss/postcss
viatransformAssetUrls: false
(#18321)- Fix false-positive migrations in
addEventListener
and JavaScript variable names (#18718)- Fix Standalone CLI showing default Bun help when run via symlink on Windows (#18723)
- Read from
--border-color-*
theme keys individe-*
utilities for backwards compatibility (#18704)- Don't scan
.hdr
and.exr
files for classes by default (#18734)
Commits
6791e81
Prepare v4.1.12 release (#18728)1855d68
Add --border-color to divide theme keys (#18704)8e8a2d6
update@ampproject/remapping
to@jridgewell/remapping
(#18716)68a79b1
Suggest bare values forflex-*
utilities (#18642)fa3f45f
Don’t output CSS objects withfalse
orundefined
in the AST (#18571)939fda6
Show more specific error for functional-like but invalid utility names (#18568)88b9f15
Center the dropdown icon added to an input with a paired datalist in Chrome (...798a7bf
Ignore consecutive semicolons in the CSS parser (#18532)2941a7b
Track source locations through@plugin
and@config
(#18329)9169d73
update READMEs- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
0
0
+0
-0
Package Dependencies
Technical Details
ID: | 7024930 |
UUID: | 3374138459 |
Node ID: | PR_kwDOAStzNM6mXBaI |
Host: | GitHub |
Repository: | nicholasdevries/nicholasdevries.github.io |