Bump the development-dependencies group across 1 directory with 19 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 0
(5 days ago)
(5 days ago)
dependencies javascript
Bumps the development-dependencies group with 19 updates in the / directory:
Package | From | To |
---|---|---|
@biomejs/biome | 1.9.4 |
2.2.2 |
@types/node | 22.14.1 |
24.3.0 |
dotenv-cli | 8.0.0 |
10.0.0 |
turbo | 2.5.0 |
2.5.6 |
typescript | 5.8.3 |
5.9.2 |
@content-collections/core | 0.8.2 |
0.11.1 |
@content-collections/next | 0.2.6 |
0.2.7 |
@mdx-js/mdx | 3.1.0 |
3.1.1 |
@playwright/test | 1.51.1 |
1.55.0 |
@shikijs/rehype | 3.2.2 |
3.12.1 |
@tailwindcss/postcss | 4.1.3 |
4.1.12 |
dotenv | 16.5.0 |
17.2.1 |
postcss | 8.5.3 |
8.5.6 |
start-server-and-test | 2.0.11 |
2.0.13 |
tailwindcss | 4.1.3 |
4.1.12 |
prisma | 6.6.0 |
6.15.0 |
drizzle-kit | 0.30.5 |
0.31.4 |
prisma-json-types-generator | 3.2.3 |
3.6.0 |
tsx | 4.19.3 |
4.20.5 |
Updates @biomejs/biome
from 1.9.4 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 @types/node
from 22.14.1 to 24.3.0
Commits
- See full diff in compare view
Updates dotenv-cli
from 8.0.0 to 10.0.0
Release notes
Sourced from dotenv-cli's releases.
v10.0.0: bump dotenv-expand
Fixes entropitor/dotenv-cli#121
v9.0.0 Bump dotenv and be quiet by default
Commits
Updates turbo
from 2.5.0 to 2.5.6
Release notes
Sourced from turbo's releases.
Turborepo v2.5.6
What's Changed
Docs
- fix(examples): correct 'test:projects' script to use vitest directly by
@namidapoo
in vercel/turborepo#10683- docs: update docs about env file handling by
@anthonyshew
in vercel/turborepo#10710- docs(run): correct --graph formats; remove incorrect default mention by
@anthonyshew
in vercel/turborepo#10744- docs(run): fix --log-prefix options to match CLI (task, not prefix) by
@anthonyshew
in vercel/turborepo#10743- docs: update --graph reference by
@chris-olszewski
in vercel/turborepo#10759
@turbo/repository
- chore: update to Rust 1.88.0 by
@ognevny
in vercel/turborepo#10608- chore: update to Rust 1.89.0 by
@ognevny
in vercel/turborepo#10749Examples
- fix(examples): add missing extension to with-react-native-web ui tsconfig by
@Franck-Fernandez-pro
in vercel/turborepo#10694- chore(deps): bump the kitchen-sink group in /examples/kitchen-sink with 6 updates by
@dependabot
[bot] in vercel/turborepo#10697- chore(deps): bump the with-tailwind group in /examples/with-tailwind with 3 updates by
@dependabot
[bot] in vercel/turborepo#10698- chore(deps): bump the basic group in /examples/basic with 3 updates by
@dependabot
[bot] in vercel/turborepo#10699- chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 5 updates by
@dependabot
[bot] in vercel/turborepo#10700- chore(deps-dev): bump turbo from 2.5.4 to 2.5.5 in /examples/with-shell-commands by
@dependabot
[bot] in vercel/turborepo#10701- chore(deps): bump the non-monorepo group in /examples/non-monorepo with 2 updates by
@dependabot
[bot] in vercel/turborepo#10696- chore(deps-dev): bump the basic group in /examples/basic with 4 updates by
@dependabot
[bot] in vercel/turborepo#10757- chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with 4 updates by
@dependabot
[bot] in vercel/turborepo#10756- chore(deps-dev): bump the non-monorepo group in /examples/non-monorepo with 2 updates by
@dependabot
[bot] in vercel/turborepo#10753- feat: upgrade NestJS to v11 and migrate to ESLint flat config by
@iamnivekx
in vercel/turborepo#10746Changelog
- docs: add architecture document for
turbo run
by@chris-olszewski
in vercel/turborepo#10702- feat: allow Watch Mode with
--root-turbo-json
by@anthonyshew
in vercel/turborepo#10687- chore(tower-uds): delete unused crate by
@anthonyshew
in vercel/turborepo#10676- test(turbo-utils): improve test coverage by
@anthonyshew
in vercel/turborepo#10693- test(turborepo-auth): unit tests for auth crate by
@anthonyshew
in vercel/turborepo#10692- feat: improve parsing error by
@anthonyshew
in vercel/turborepo#10682- chore: fix lints in tests by
@chris-olszewski
in vercel/turborepo#10707- chore(turbo_json): lift
$TURBO_DEFAULT$
handling to turbo.json resolution by@chris-olszewski
in vercel/turborepo#10709- chore(turbo_json): prefactor loading logic by
@chris-olszewski
in vercel/turborepo#10719- fix(logs): no longer output group prefixes if no logs present by
@chris-olszewski
in vercel/turborepo#10760- fix(turbo): graceful shutdown on sighup by
@chris-olszewski
in vercel/turborepo#10764New Contributors
@namidapoo
made their first contribution in vercel/turborepo#10683@Franck-Fernandez-pro
made their first contribution in vercel/turborepo#10694@iamnivekx
made their first contribution in vercel/turborepo#10746Full Changelog: https://github.com/vercel/turborepo/compare/v2.5.5...v2.5.6
Turborepo v2.5.6-canary.2
What's Changed
@turbo/repository
... (truncated)
Commits
f02b1a8
publish 2.5.6 to registrya0eed73
release(turborepo): 2.5.6-canary.2 (#10765)ddaed6e
fix(turbo): graceful shutdown on sighup (#10764)6f5557f
feat: upgrade NestJS to v11 and migrate to ESLint flat config (#10746)e34dcd4
chore(deps-dev): bump the non-monorepo group in /examples/non-monorepo with 2...bc7cbe0
chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with...310565e
chore(deps-dev): bump the basic group in /examples/basic with 4 updates (#10757)8113d43
chore: update to Rust 1.89.0 (#10749)f9a61db
release(turborepo): 2.5.6-canary.1 (#10761)ae20686
fix(logs): no longer output group prefixes if no logs present (#10760)- Additional commits viewable in compare view
Updates typescript
from 5.8.3 to 5.9.2
Release notes
Sourced from typescript's releases.
TypeScript 5.9
For release notes, check out the release announcement
- fixed issues query for Typescript 5.9.0 (Beta).
- fixed issues query for Typescript 5.9.1 (RC).
- No specific changes for TypeScript 5.9.2 (Stable)
Downloads are available on:
TypeScript 5.9 RC
For release notes, check out the release announcement
Downloads are available on:
TypeScript 5.9 Beta
For release notes, check out the release announcement.
Downloads are available on:
Commits
be86783
Give more specific errors forverbatimModuleSyntax
(#62113)22ef577
LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...d5a414c
Don't usenoErrorTruncation
when printing types withmaximumLength
set (#...f14b5c8
Remove unused and confusing dom.iterable.d.ts file (#62037)2778e84
Restore AbortSignal.abort (#62086)65cb4bd
LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...9e20e03
Clear out checker-level stacks on pop (#62016)87740bc
Fix for Issue 61081 (#61221)833a8d4
Fix Symbol completion priority and cursor positioning (#61945)0018c9f
LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...- Additional commits viewable in compare view
Updates @content-collections/core
from 0.8.2 to 0.11.1
Release notes
Sourced from @content-collections/core
's releases.
@content-collections/core
@0
.11.1Patch Changes
475b888
Thanks@sdorra
! - Throw an error if a collection is defined with invalid parser
7129c62
Thanks@sdorra
! - Fix suppressing of all deprecation warnings
@content-collections/core
@0
.11.0Minor Changes
Patch Changes
@content-collections/core
@0
.10.0Minor Changes
- #612
5aae6f3
Thanks@copilot-swe-agent
! - Migrate file watcher from@parcel/watcher
to chokidar to fix duplicate build events on Windows.Patch Changes
@content-collections/core
@0
.9.1Patch Changes
@content-collections/core
@0
.9.0Minor Changes
Changelog
Sourced from @content-collections/core
's changelog.
0.11.1
Patch Changes
475b888
Thanks@sdorra
! - Throw an error if a collection is defined with invalid parser
7129c62
Thanks@sdorra
! - Fix suppressing of all deprecation warnings0.11.0
Minor Changes
Patch Changes
0.10.0
Minor Changes
- #612
5aae6f3
Thanks@copilot-swe-agent
! - Migrate file watcher from@parcel/watcher
to chokidar to fix duplicate build events on Windows.Patch Changes
0.9.1
Patch Changes
0.9.0
Minor Changes
Commits
d5f0739
chore(release): #642 version packagesa24db7e
refactor(core): remove unused code5b16eaf
test(core): add missing tests for builder events475b888
fix(core): throw if a collection is defined with an invalid parser7129c62
fix(core): ensure all deprecation warnings are properly suppressed593a7ac
refactor(core): #638 refactor core testsf008896
chore(release): #630 version packagesb37a2a0
build(core): increase test timeout on all platforms86490bc
feat(core): #620 add option to skip documents0bee209
build: update vitest to 3.2.4- Additional commits viewable in compare view
Updates @content-collections/next
from 0.2.6 to 0.2.7
Release notes
Sourced from @content-collections/next
's releases.
@content-collections/next
@0
.2.7Patch Changes
Commits
Updates @mdx-js/mdx
from 3.1.0 to 3.1.1
Release notes
Sourced from @mdx-js/mdx
's releases.
3.1.1
Fix
- 3cad7d7e
@mdx-js/mdx
: add dependency onacorn
- 0dc4472f
@mdx-js/esbuild
: fix crash with esbuild loader andjsx
option by@egnor
in mdx-js/mdx#2593- 84ec66ef
@mdx-js/esbuild
: refactor to improve error conversion in esbuild by@egnor
in mdx-js/mdx#2595- 2b3381a8
@mdx-js/rollup
: fix support for query parameters in Vite by@markdalgleish
in mdx-js/mdx#2629Types
- 933ab444
@mdx-js/mdx
: addattributes
to export/import declarationsDocs
- c156a1f6 Add
rehype-mdx-toc
to list of plugin by@boning-w
in mdx-js/mdx#2622- 913659c8 Add
recma-module-to-function
to list of plugins by@remcohaszing
in mdx-js/mdx#2605- 67fb1d07 Remove unneeded JSX type casting in docs, tests
- f0d20da8 Remove local use of
JSX
by@remcohaszing
in mdx-js/mdx#2604- 63f39cea Remove references to twitter
- 35ac59dd Refactor some docs regarding recma plugins
Full Changelog: https://github.com/mdx-js/mdx/compare/3.1.0...3.1.1
Commits
Updates @playwright/test
from 1.51.1 to 1.55.0
Release notes
Sourced from @playwright/test
's releases.
v1.55.0
New APIs
- New Property testStepInfo.titlePath Returns the full title path starting from the test file, including test and step titles.
Codegen
- Automatic
toBeVisible()
assertions: Codegen can now generate automatictoBeVisible()
assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.Breaking Changes
- ⚠️ Dropped support for Chromium extension manifest v2.
Miscellaneous
- Added support for Debian 13 "Trixie".
Browser Versions
- Chromium 140.0.7339.16
- Mozilla Firefox 141.0
- WebKit 26.0
This version was also tested against the following stable channels:
- Google Chrome 139
- Microsoft Edge 139
v1.54.2
Highlights
microsoft/playwright#36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error) microsoft/playwright#36828 - [Regression]: Playwright Codegen keeps spamming with selected option microsoft/playwright#36810 - [Regression]: Starting Codegen with target language doesn't work anymore
Browser Versions
- Chromium 139.0.7258.5
- Mozilla Firefox 140.0.2
- WebKit 26.0
This version was also tested against the following stable channels:
- Google Chrome 140
- Microsoft Edge 140
v1.54.1
Highlights
microsoft/playwright#36650 - [Regression]: 1.54.0 breaks downloading browsers when an HTTP(S) proxy is used
Browser Versions
- Chromium 139.0.7258.5
- Mozilla Firefox 140.0.2
- WebKit 26.0
... (truncated)
Commits
f992162
chore: mark v1.55.0 (#37121)4a92ea0
cherry-pick(#37113): docs: add release-notes for v1.55aa05507
cherry-pick(#37114): test: move browser._launchServer in child process27ae7dc
test: tree gardening (#37107)cd09d85
test: unflake "should pick element" (#37103)72e4772
chore(trace-viewer): remove unused code (#37097)5b8c7d6
chore(dotnet): float is non-nullable (#37095)c7bf035
test(webkit): closing dialog > contenteditable (#37084)9fd6986
test: skip debug-controller tests in driver mode (#37090)4c2f44d
test(bidi): use the nightly channel only for Firefox in CI (#37086)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by playwright-bot, a new releaser for @playwright/test
since your current version.
Updates @shikijs/rehype
from 3.2.2 to 3.12.1
Release notes
Sourced from @shikijs/rehype
's releases.
v3.12.1
No significant changes
View changes on GitHub
v3.12.0
🚀 Features
- vitepress-twoslash:
- Improve UX for option customization - by
@9romise
in shikijs/shiki#1066 (e3cfd)- Twoslash inline type cache for markdown - by
@serkodev
and@antfu
in shikijs/shiki#1063 (dc7fb)🐞 Bug Fixes
- remove-notation-escape: Correct escape sequence - by
@sor4chi
in shikijs/shiki#1065 (22d0c)View changes on GitHub
v3.11.0
🚀 Features
- core: Add
enforce
options toShikiTransformer
- by@serkodev
and@antfu
in shikijs/shiki#1062 (8ad05)View changes on GitHub
v3.10.0
🚀 Features
- Add funding links to playground - by
@jtbandes
in shikijs/shiki#1054 (e36eb)View changes on GitHub
v3.9.2
🚀 Features
- Add funding buttons to themes & languages list - by
@jtbandes
and@antfu
in shikijs/shiki#1052 (84a65)- Allow negative character positions for denoting end of line offsets - by
@sealer3
and@antfu
in shikijs/shiki#1051 (af44b)View changes on GitHub
v3.9.1
🚀 Features
View changes on GitHub
v3.9.0
🐞 Bug Fixes
... (truncated)
Commits
793d71e
chore: release v3.12.19260f3f
chore: release v3.12.0d05f39b
chore: release v3.11.0bda1a76
chore: release v3.10.009921f1
chore: release v3.9.2854eddf
chore: release v3.9.1950ede5
chore: release v3.9.0b92e07b
chore: release v3.8.14431931
chore: release v3.8.0d25afc2
chore: release v3.7.0- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @shikijs/rehype
since your current version.
Updates @tailwindcss/postcss
from 4.1.3 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 (
Pull Request Statistics
Commits:
1Files Changed:
16Additions:
+1324Deletions:
-1694
Package Dependencies
prisma-json-types-generator
npm
3.2.3 → 3.6.0
Minor
Technical Details
ID: | 6739114 |
UUID: | 2795630420 |
Node ID: | PR_kwDOOuk7MM6moe9U |
Host: | GitHub |
Repository: | kernelai/next-learn |
Merge State: | Unknown |