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

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

Open
Number: #22
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 0
Created: August 01, 2025 at 03:04 PM UTC
(about 1 month ago)
Updated: August 01, 2025 at 03:04 PM UTC
(about 1 month ago)
Labels:
dependencies javascript
Description:

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

Package From To
@biomejs/biome 1.9.4 2.1.3
@types/node 22.14.1 24.1.0
dotenv-cli 8.0.0 10.0.0
turbo 2.5.0 2.5.5
typescript 5.8.3 5.9.2
@content-collections/core 0.8.2 0.10.0
@playwright/test 1.51.1 1.54.2
@shikijs/rehype 3.2.2 3.9.1
@tailwindcss/postcss 4.1.3 4.1.11
dotenv 16.5.0 17.2.1
postcss 8.5.3 8.5.6
start-server-and-test 2.0.11 2.0.12
tailwindcss 4.1.3 4.1.11
prisma 6.6.0 6.13.0
drizzle-kit 0.30.5 0.31.4
prisma-json-types-generator 3.2.3 3.5.1
tsx 4.19.3 4.20.3

Updates @biomejs/biome from 1.9.4 to 2.1.3

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.1.3

2.1.3

Patch Changes

  • #7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with # @biomejs/biome (like $el, $data, $props) and keys starting with _` in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>
    

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.1.3

Patch Changes

  • #7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with like $el, $data, $props) and keys starting with \_ in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>
    
    <script>
    

... (truncated)

Commits

Updates @types/node from 22.14.1 to 24.1.0

Commits

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

entropitor/dotenv-cli#129

Commits

Updates turbo from 2.5.0 to 2.5.5

Release notes

Sourced from turbo's releases.

Turborepo v2.5.5

What's Changed

Docs

Examples

... (truncated)

Commits
  • f70e972 publish 2.5.5 to registry
  • dd31af9 fix(query): pin to last graphiql version with artifacts (#10685)
  • 8f00a69 refactor: move config file discovery to shared util (#10677)
  • 73f7373 chore(deps-dev): bump eslint from 9.30.1 to 9.31.0 in /examples/non-monorepo ...
  • 9ac8faa chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with...
  • 7f11487 fix(examples): update vitest config paths for packages and apps in `with-vite...
  • be6f7ba chore(deps-dev): bump the basic group in /examples/basic with 3 updates (#10673)
  • 5794014 fix: typescript-config export form react-native-web (#10671)
  • 9b4f3d3 chore(deps-dev): bump the kitchen-sink group in /examples/kitchen-sink with 5...
  • d560d15 chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 3 u...
  • 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

Release notes pending.

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 for verbatimModuleSyntax (#62113)
  • 22ef577 LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...
  • d5a414c Don't use noErrorTruncation when printing types with maximumLength 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.10.0

Release notes

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

@​content-collections/core@​0.10.0

Minor Changes

Patch Changes

@​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.10.0

Minor Changes

Patch Changes

0.9.1

Patch Changes

0.9.0

Minor Changes

Commits
  • bf2e1bf chore(release): #610 version packages
  • 5aae6f3 fix(core): #612 resolve duplicate build events on Windows by switching to cho...
  • bec682f fix(core): #602 synchronizing of nested files on windows (#603)
  • 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
  • Additional commits viewable in compare view

Updates @playwright/test from 1.51.1 to 1.54.2

Release notes

Sourced from @​playwright/test's releases.

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

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.0

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

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

    export default defineConfig({ reporter: [['html', { noSnippets: true }]] });

  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

... (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.9.1

Release notes

Sourced from @​shikijs/rehype's releases.

v3.9.1

   🚀 Features

    View changes on GitHub

v3.9.0

   🐞 Bug Fixes

    View changes on GitHub

v3.8.1

   🐞 Bug Fixes

    View changes on GitHub

v3.8.0

   🚀 Features

    View changes on GitHub

v3.7.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.6.0

   🚀 Features

    View changes on GitHub

v3.5.0

   🚀 Features

... (truncated)

Commits

Updates @tailwindcss/postcss from 4.1.3 to 4.1.11

Release notes

Sourced from @​tailwindcss/postcss's releases.

v4.1.11

Fixed

  • Add heuristic to skip candidate migrations inside emit(…) (#18330)
  • Extract candidates with variants in Clojure/ClojureScript keywords (#18338)
  • Document --watch=always in the CLI's usage (#18337)
  • Add support for Vite 7 to @tailwindcss/vite (#18384)

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)

... (truncated)

Changelog

Sourced from @​tailwindcss/postcss's changelog.

[4.1.11] - 2025-06-26

Fixed

  • Add heuristic to skip candidate migrations inside emit(…) (#18330)
  • Extract candidates with variants in Clojure/ClojureScript keywords (#18338)
  • Document --watch=always in the CLI's usage (#18337)
  • Add support for Vite 7 to @tailwindcss/vite (#18384)

[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)

... (truncated)

Commits

Updates dotenv from 16.5.0 to 17.2.1

Changelog

Sourced from dotenv's changelog.

17.2.1 (2025-07-24)

Changed

  • Fix clickable tip links by removing parentheses (#897)

17.2.0 (2025-07-09)

Added

  • Optionally specify DOTENV_CONFIG_QUIET=true in your environment or .env file to quiet the runtime log (#889)
  • Just like dotenv any DOTENV_CONFIG_ environment variables take precedence over any code set options like ({quiet: false})
# .env
DOTENV_CONFIG_QUIET=true
HELLO="World"
// index.js
require('dotenv').config()
console.log(`Hello ${process.env.HELLO}`)
$ node index.js
Hello World

or

$ DOTENV_CONFIG_QUIET=true node index.js

17.1.0 (2025-07-07)

Added

  • Add additional security and configuration tips to the runtime log (#884)
  • Dim the tips text from the main injection information text
const TIPS = [
  '🔐 encrypt with dotenvx: https://dotenvx.com',
  '🔐 prevent committing .env to code: https://dotenvx.com/precommit',
  '🔐 prevent building .env in docker: https://dotenvx.com/prebuild',
  '🛠️  run anywhere with `dotenvx run -- yourcommand`',
  '⚙️  specify custom .env file path with { path: \'/custom/path/.env\' }',
  '⚙️  enable debug logging with { debug: true }',
  '⚙️  override existing env vars with { override: true }',
  '⚙️  suppress all logs with { quiet: true }',
  '⚙️  write to custom object with { processEnv: myObject }',
</tr></table> 

... (truncated)

Commits
Pull Request Statistics
Commits:
1
Files Changed:
16
Additions:
+1257
Deletions:
-1191
Package Dependencies
Package:
@types/node
Ecosystem:
npm
Version Change:
22.14.1 → 24.1.0
Update Type:
Major
Ecosystem:
npm
Version Change:
4.1.3 → 4.1.11
Update Type:
Patch
Package:
typescript
Ecosystem:
npm
Version Change:
5.8.3 → 5.9.2
Update Type:
Minor
Package:
tailwindcss
Ecosystem:
npm
Version Change:
4.1.3 → 4.1.11
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.54.2
Update Type:
Minor
Package:
prisma
Ecosystem:
npm
Version Change:
6.6.0 → 6.13.0
Update Type:
Minor
Package:
turbo
Ecosystem:
npm
Version Change:
2.5.0 → 2.5.5
Update Type:
Patch
Package:
tsx
Ecosystem:
npm
Version Change:
4.19.3 → 4.20.3
Update Type:
Minor
Package:
dotenv
Ecosystem:
npm
Version Change:
16.5.0 → 17.2.1
Update Type:
Major
Package:
dotenv-cli
Ecosystem:
npm
Version Change:
8.0.0 → 10.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
2.0.11 → 2.0.12
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.9.4 → 2.1.3
Update Type:
Major
Package:
drizzle-kit
Ecosystem:
npm
Version Change:
0.30.5 → 0.31.4
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.8.2 → 0.10.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.2.2 → 3.9.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.2.3 → 3.5.1
Update Type:
Minor
Technical Details
ID: 4440767
UUID: 2713508208
Node ID: PR_kwDOOuk7MM6hvNlw
Host: GitHub
Repository: kernelai/next-learn
Merge State: Unknown