An open index of dependabot pull requests across open source projects.

Bump the development-dependencies group across 1 directory with 16 updates

Open
Number: #9
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 0
Created: June 17, 2025 at 02:57 PM UTC
(3 months ago)
Updated: June 17, 2025 at 02:57 PM UTC
(3 months ago)
Labels:
dependencies javascript
Description:

Bumps the development-dependencies group with 16 updates in the / directory:

Package From To
@biomejs/biome 1.9.4 2.0.0
@types/node 22.14.1 24.0.3
turbo 2.5.0 2.5.4
@content-collections/core 0.8.2 0.9.1
@playwright/test 1.51.1 1.53.0
@shikijs/rehype 3.2.2 3.6.0
@tailwindcss/postcss 4.1.3 4.1.10
@types/react 19.0.0 19.1.8
@types/react-dom 19.0.0 19.1.6
postcss 8.5.3 8.5.6
start-server-and-test 2.0.11 2.0.12
tailwindcss 4.1.3 4.1.10
prisma 6.6.0 6.9.0
drizzle-kit 0.30.5 0.31.1
prisma-json-types-generator 3.2.3 3.4.2
tsx 4.19.3 4.20.3

Updates @biomejs/biome from 1.9.4 to 2.0.0

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.0.0

Major Changes

  • Biome now resolves globs and paths from the configuration. Before, paths and globs were resolved from the working directory.

  • Biome now raises a warning diagnostic for suppression comments that have <explanation> as reason.

    <explanation> is provided as a placeholder when applying the suppression code fix from LSP editors.

  • Removed the --config-path argument from the biome lsp-proxy and biome start commands.

    The option was overriding the configuration path for all workspaces opened in the Biome daemon, which led to a configuration mismatch problem when multiple projects are opened in some editors or IDEs.

    If you are using one of our official plugins for IDEs or editors, it is recommended to update it to the latest version of the plugin, or you will get unexpected behavior.

    If you are a developer of a plugin, please update your plugin to use the workspace/configuration response instead of using the --config-path argument. Biome's LSP will resolve a configuration in the workspace automatically, so it is recommended to keep it empty unless you are using a custom configuration path.

  • Downgraded some code fixes to unsafe which were previously safe.

    The following rules have now a unsafe fix:

    If you want to keep applying these fixes automatically, configure the rule fix as safe:

    {
      "linter": {
        "rules": {
          "correctness": {
            "noFlatMapIdentity": {
              "level": "error",
              "fix": "safe"
            },
            "noUnusedImports": {
              "level": "error",
              "fix": "safe"
            }
          }
        }
      }
    }
    
  • Previously the lint rules noControlCharactersInRegex and noMisleadingCharacterClass checked both regular expression literals like /regex/ and dynamically built regular expressions like new RegExp("regex").

    Checking dynamically built regular expressions has many limitations, edge cases, and complexities. In addition, other rules that lint regular expressions don't check dynamically built regular expressions.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.0.0

Major Changes

  • Biome now resolves globs and paths from the configuration. Before, paths and globs were resolved from the working directory.

  • Biome now raises a warning diagnostic for suppression comments that have <explanation> as reason.

    <explanation> is provided as a placeholder when applying the suppression code fix from LSP editors.

  • Removed the --config-path argument from the biome lsp-proxy and biome start commands.

    The option was overriding the configuration path for all workspaces opened in the Biome daemon, which led to a configuration mismatch problem when multiple projects are opened in some editors or IDEs.

    If you are using one of our official plugins for IDEs or editors, it is recommended to update it to the latest version of the plugin, or you will get unexpected behavior.

    If you are a developer of a plugin, please update your plugin to use the workspace/configuration response instead of using the --config-path argument. Biome's LSP will resolve a configuration in the workspace automatically, so it is recommended to keep it empty unless you are using a custom configuration path.

  • Downgraded some code fixes to unsafe which were previously safe.

    The following rules have now a unsafe fix:

    If you want to keep applying these fixes automatically, configure the rule fix as safe:

    {
      "linter": {
        "rules": {
          "correctness": {
            "noFlatMapIdentity": {
              "level": "error",
              "fix": "safe"
            },
            "noUnusedImports": {
              "level": "error",
              "fix": "safe"
            }
          }
        }
      }
    }
    
  • Previously the lint rules noControlCharactersInRegex and noMisleadingCharacterClass checked both regular expression literals like /regex/ and dynamically built regular expressions like new RegExp("regex").

    Checking dynamically built regular expressions has many limitations, edge cases, and complexities. In addition, other rules that lint regular expressions don't check dynamically built regular expressions.

... (truncated)

Commits
  • be9076b chore: cleanup CHANGELOG
  • 2b81d3f chore: fool release workflow step 2: reapply versions
  • a259962 chore: fool release workflow step 1: revert versions
  • 701c118 Fool release workflow step 2: reapply versions
  • 323a580 Fool release workflow step 1: revert versions
  • 242f739 Fool release workflow step 2: reapply versions
  • d3175b0 Fool release workflow step 1: revert versions
  • a711a3a Fool release workflow step 2: reapply versions
  • c0b6316 Fool release workflow step 1: revert versions
  • a56204c ci: release (#6351)
  • Additional commits viewable in compare view

Updates @types/node from 22.14.1 to 24.0.3

Commits

Updates turbo from 2.5.0 to 2.5.4

Release notes

Sourced from turbo's releases.

Turborepo v2.5.4

What's Changed

Docs

turbo-ignore

eslint

@​turbo/repository

Examples

Changelog

... (truncated)

Commits

Updates @content-collections/core from 0.8.2 to 0.9.1

Release notes

Sourced from @​content-collections/core's releases.

@​content-collections/core@​0.9.1

Patch Changes

@​content-collections/core@​0.9.0

Minor Changes

Changelog

Sourced from @​content-collections/core's changelog.

0.9.1

Patch Changes

0.9.0

Minor Changes

Commits
  • 3edaa49 chore(release): #597 version packages
  • f232837 fix(core): #593 missing content property when accessing other collections
  • 81d8577 chore: #578 add missing information to package.json
  • b21e548 chore(release): #572 version packages
  • d16fa6e feat(core): #528 allow suppressing a single deprecation message
  • bbb6ec4 docs(core): #528 document the use of Standard Schema
  • 2f83b75 sample: #528 add sample for validation with arktype
  • 7657484 feat(core): #528 log deprecation message for function based schema
  • 7396e47 feat(core): #528 use StandardSchema for validation
  • 2b698e1 feat(core): add option to configure custom parser
  • Additional commits viewable in compare view

Updates @playwright/test from 1.51.1 to 1.53.0

Release notes

Sourced from @​playwright/test's releases.

v1.53.0

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter:

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@playwright/test';
    

    export default defineConfig({ reporter: [['html', { title: 'Custom test run #1028' }]] });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
    
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137

v1.52.0

Highlights

  • New method expect(locator).toContainClass() to ergonomically assert individual class names on the element.

    await expect(page.getByRole('listitem', { name: 'Ship v1.52' })).toContainClass('done');
    
  • Aria Snapshots got two new properties: /children for strict matching and /url for links.

    await expect(locator).toMatchAriaSnapshot(`
      - list
        - /children: equal
        - listitem: Feature A
    

... (truncated)

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

Release notes

Sourced from @​shikijs/rehype's releases.

v3.6.0

   🚀 Features

    View changes on GitHub

v3.5.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.4.2

   🚀 Features

    View changes on GitHub

v3.4.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.4.0

   🐞 Bug Fixes

    View changes on GitHub

v3.3.0

   🚀 Features

... (truncated)

Commits

Updates @tailwindcss/postcss from 4.1.3 to 4.1.10

Release notes

Sourced from @​tailwindcss/postcss's releases.

v4.1.10

Fixed

  • Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g. w-[calc(100%-var(--offset))]) (#18289)

v4.1.9

Fixed

  • Correctly parse custom properties with strings containing semicolons (#18251)
  • Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g. /[0.16]/16) (#18184)
  • Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#18184)
  • Upgrade: Migrate negative arbitrary values to negative bare values (e.g. mb-[-32rem]-mb-128) (#18212)
  • Upgrade: Do not migrate blur in wire:model.blur (#18216)
  • Don't add spaces around CSS dashed idents when formatting math expressions (#18220)

v4.1.8

Added

  • Improve error messages when @apply fails (#18059)

Fixed

  • Upgrade: Do not migrate declarations that look like candidates in <style> blocks (#18057, 18068)
  • Upgrade: Don't error when looking for tailwindcss in pnpm monorepos (#18065)
  • Upgrade: Don't error when updating dependencies in pnpm monorepos (#18065)
  • Upgrade: Migrate deprecated order-none to order-0 (#18126)
  • Support Leptos class: attributes when extracting classes (#18093)
  • Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#18133)
  • Upgrade: Migrate -mt-[0px] to mt-[0px] instead of the other way around (#18154)
  • Fix Haml pre-processing crash when there is no \n at the end of the file (#18155)
  • Ignore .pnpm-store folders by default (can be overridden by @source … rules) (#18163)
  • Fix PostCSS crash when calling toJSON() (#18083)

v4.1.7

Added

  • Upgrade: Migrate bare values to named values (#18000)
  • Upgrade: Added cache to improve template migration performance (#18025)

Fixed

  • Allow _ before numbers during candidate extraction (#17961)
  • Prevent duplicate suggestions when using @theme and @utility together (#17675)
  • Ensure that media queries within ::before and ::after pseudo selectors create valid CSS rules in production builds (#17979)
  • Ensure that the standalone CLI does not leave temporary files behind (#17981)
  • Ensure -rotate-* utilities properly negate arbitrary values (#18014)
  • Ignore custom variants using :merge(…) selectors in legacy JS plugins (#18020)
  • Ensure classes containing . are properly extracted from Clojure files (#18038)
  • Upgrade: Fix error when using @import … source(…) (#17963)
  • Upgrade: Change casing of utilities with named values to kebab-case to match updated theme variables (#18017)

... (truncated)

Changelog

Sourced from @​tailwindcss/postcss's changelog.

[4.1.10] - 2025-06-11

Fixed

  • Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g. w-[calc(100%-var(--offset))]) (#18289)

[4.1.9] - 2025-06-11

Fixed

  • Correctly parse custom properties with strings containing semicolons (#18251)
  • Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g. /[0.16]/16) (#18184)
  • Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#18184)
  • Upgrade: Migrate negative arbitrary values to negative bare values (e.g. mb-[-32rem]-mb-128) (#18212)
  • Upgrade: Do not migrate blur in wire:model.blur (#18216)
  • Don't add spaces around CSS dashed idents when formatting math expressions (#18220)

[4.1.8] - 2025-05-27

Added

  • Improve error messages when @apply fails (#18059)

Fixed

  • Upgrade: Do not migrate declarations that look like candidates in <style> blocks (#18057, 18068)
  • Upgrade: Don't error when looking for tailwindcss in pnpm monorepos (#18065)
  • Upgrade: Don't error when updating dependencies in pnpm monorepos (#18065)
  • Upgrade: Migrate deprecated order-none to order-0 (#18126)
  • Support Leptos class: attributes when extracting classes (#18093)
  • Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#18133)
  • Upgrade: Migrate -mt-[0px] to mt-[0px] instead of the other way around (#18154)
  • Fix Haml pre-processing crash when there is no \n at the end of the file (#18155)
  • Ignore .pnpm-store folders by default (can be overridden by @source … rules) (#18163)
  • Fix PostCSS crash when calling toJSON() (#18083)

[4.1.7] - 2025-05-15

Added

  • Upgrade: Migrate bare values to named values (#18000)
  • Upgrade: Added cache to improve template migration performance (#18025)

Fixed

  • Allow _ before numbers during candidate extraction (#17961)
  • Prevent duplicate suggestions when using @theme and @utility together (#17675)
  • Ensure that media queries within ::before and ::after pseudo selectors create valid CSS rules in production builds (#17979)
  • Ensure that the standalone CLI does not leave temporary files behind (#17981)
  • Ensure -rotate-* utilities properly negate arbitrary values (#18014)

... (truncated)

Commits

Updates @types/react from 19.0.0 to 19.1.8

Commits

Updates @types/react-dom from 19.0.0 to 19.1.6

Commits

Updates postcss from 8.5.3 to 8.5.6

Release notes

Sourced from postcss's releases.

8.5.6

  • Fixed ContainerWithChildren type discriminating (by @​Goodwine).

8.5.5

  • Fixed package.jsonexports compatibility with some tools (by @​JounQin).

8.5.4

Changelog

Sourced from postcss's changelog.

8.5.6

  • Fixed ContainerWithChildren type discriminating (by @​Goodwine).

8.5.5

  • Fixed package.jsonexports compatibility with some tools (by @​JounQin).

8.5.4

Commits

Updates start-server-and-test from 2.0.11 to 2.0.12

Release notes

Sourced from start-server-and-test's releases.

v2.0.12

2.0.12 (2025-05-15)

Bug Fixes

  • deps: update dependency debug to v4.4.1 (#403) (b3b82c0)
Commits

Updates tailwindcss from 4.1.3 to 4.1.10

Release notes

Sourced from tailwindcss's releases.

v4.1.10

Fixed

  • Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g. w-[calc(100%-var(--offset))]) (#18289)

v4.1.9

Fixed

  • Correctly parse custom properties with strings containing semicolons (#18251)
  • Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g. /[0.16]/16) (#18184)
  • Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#18184)
  • Upgrade: Migrate negative arbitrary values to negative bare values (e.g. mb-[-32rem]-mb-128) (#18212)
  • Upgrade: Do not migrate blur in wire:model.blur (#18216)
  • Don't add spaces around CSS dashed idents when formatting math expressions (#18220)

v4.1.8

Added

  • Improve error messages when @apply fails (#18059)

Fixed

  • Upgrade: Do not migrate declarations that look like candidates in <style> blocks (#18057, 18068)
  • Upgrade: Don't error when looking for tailwindcss in pnpm monorepos (#18065)
  • Upgrade: Don't error when updating dependencies in pnpm monorepos (#18065)
  • Upgrade: Migrate deprecated order-none to order-0 (#18126)
  • Support Leptos class: attributes when extracting classes (#18093)
  • Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#18133)
  • Upgrade: Migrate -mt-[0px] to mt-[0px] instead of the other way around (#18154)
  • Fix Haml pre-processing crash when there is no \n at the end of the file (#18155)
  • Ignore .pnpm-store folders by default (can be overridden by @source … rules) (#18163)
  • Fix PostCSS crash when calling toJSON() (#18083)

v4.1.7

Added

  • Upgrade: Migrate bare values to named values (#18000)
  • Upgrade: Added cache to improve template migration performance (#18025)

Fixed

  • Allow _ before numbers during candidate extraction (#17961)
  • Prevent duplicate suggestions when using @theme and @utility together (#17675)
  • Ensure that media queries within ::before and ::after pseudo selectors create valid CSS rules in production builds (#17979)
  • Ensure that the standalone CLI does not leave temporary files behind (#17981)
  • Ensure -rotate-* utilities properly negate arbitrary values (#18014)
  • Ignore custom variants using :merge(…) selectors in legacy JS p...

    Description has been truncated

Pull Request Statistics
Commits:
1
Files Changed:
16
Additions:
+912
Deletions:
-897
Package Dependencies
Package:
@types/node
Ecosystem:
npm
Version Change:
22.14.1 → 24.0.3
Update Type:
Major
Ecosystem:
npm
Version Change:
19.0.0 → 19.1.8
Update Type:
Minor
Ecosystem:
npm
Version Change:
19.0.0 → 19.1.6
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.1.3 → 4.1.10
Update Type:
Patch
Package:
tailwindcss
Ecosystem:
npm
Version Change:
4.1.3 → 4.1.10
Update Type:
Patch
Package:
postcss
Ecosystem:
npm
Version Change:
8.5.3 → 8.5.6
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.51.1 → 1.53.0
Update Type:
Minor
Package:
prisma
Ecosystem:
npm
Version Change:
6.6.0 → 6.9.0
Update Type:
Minor
Package:
turbo
Ecosystem:
npm
Version Change:
2.5.0 → 2.5.4
Update Type:
Patch
Package:
tsx
Ecosystem:
npm
Version Change:
4.19.3 → 4.20.3
Update Type:
Minor
Ecosystem:
npm
Version Change:
2.0.11 → 2.0.12
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.9.4 → 2.0.0
Update Type:
Major
Package:
drizzle-kit
Ecosystem:
npm
Version Change:
0.30.5 → 0.31.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.8.2 → 0.9.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.2.2 → 3.6.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.2.3 → 3.4.2
Update Type:
Minor
Technical Details
ID: 1809363
UUID: 2599107004
Node ID: PR_kwDOOuk7MM6a6zm8
Host: GitHub
Repository: kernelai/next-learn
Merge State: Unknown