Skip to content

Bump the dev-dependencies group across 1 directory with 12 updates#1182

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-dependencies-321aedce9f
Closed

Bump the dev-dependencies group across 1 directory with 12 updates#1182
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-dependencies-321aedce9f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

Bumps the dev-dependencies group with 11 updates in the / directory:

Package From To
@mui/x-charts 8.25.0 8.27.0
@vercel/blob 2.0.0 2.2.0
@vercel/functions 3.3.6 3.4.1
@ianvs/prettier-plugin-sort-imports 4.7.0 4.7.1
@playwright/test 1.57.0 1.58.2
@types/node 25.0.9 25.2.2
@typescript-eslint/eslint-plugin 8.53.0 8.54.0
autoprefixer 10.4.23 10.4.24
eslint-config-next 16.1.3 16.1.6
glob-bin 1.0.0 1.1.0
prettier 3.8.0 3.8.1

Updates @mui/x-charts from 8.25.0 to 8.27.0

Release notes

Sourced from @​mui/x-charts's releases.

v8.27.0

We'd like to extend a big thank you to the 8 contributors who made this release possible. Here are some highlights ✨:

The following team members contributed to this release: @​alexfauquette, @​arminmeh, @​bernardobelchior, @​cherniavskii, @​flaviendelangle, @​JCQuintas, @​MBilalShafi, @​siriwatknp

Data Grid

@mui/x-data-grid@8.27.0

@mui/x-data-grid-pro@8.27.0 pro

Same changes as in @mui/x-data-grid@8.27.0.

@mui/x-data-grid-premium@8.27.0 premium

Same changes as in @mui/x-data-grid-pro@8.27.0, plus:

  • [DataGridPremium] Fix focus retention when undo/redo operations are done on the same cell (#21110) @​arminmeh

Date and Time Pickers

@mui/x-date-pickers@8.27.0

Internal changes.

@mui/x-date-pickers-pro@8.27.0 pro

Same changes as in @mui/x-date-pickers@8.27.0.

Charts

@mui/x-charts@8.27.0

  • [charts] Deprecate AxisId class in favour of to data-axis-id attribute (#21048) @​JCQuintas

@mui/x-charts-pro@8.27.0 pro

Same changes as in @mui/x-charts@8.27.0, plus:

@mui/x-charts-premium@8.27.0 premium

... (truncated)

Changelog

Sourced from @​mui/x-charts's changelog.

v8.27.0

Feb 2, 2026

We'd like to extend a big thank you to the 8 contributors who made this release possible. Here are some highlights ✨:

The following team members contributed to this release: @​alexfauquette, @​arminmeh, @​bernardobelchior, @​cherniavskii, @​flaviendelangle, @​JCQuintas, @​MBilalShafi, @​siriwatknp

Data Grid

@mui/x-data-grid@8.27.0

@mui/x-data-grid-pro@8.27.0 pro

Same changes as in @mui/x-data-grid@8.27.0.

@mui/x-data-grid-premium@8.27.0 premium

Same changes as in @mui/x-data-grid-pro@8.27.0, plus:

  • [DataGridPremium] Fix focus retention when undo/redo operations are done on the same cell (#21110) @​arminmeh

Date and Time Pickers

@mui/x-date-pickers@8.27.0

Internal changes.

@mui/x-date-pickers-pro@8.27.0 pro

Same changes as in @mui/x-date-pickers@8.27.0.

Charts

@mui/x-charts@8.27.0

  • [charts] Deprecate AxisId class in favour of to data-axis-id attribute (#21048) @​JCQuintas

@mui/x-charts-pro@8.27.0 pro

Same changes as in @mui/x-charts@8.27.0, plus:

... (truncated)

Commits

Updates @vercel/blob from 2.0.0 to 2.2.0

Release notes

Sourced from @​vercel/blob's releases.

@​vercel/blob@​2.2.0

Minor Changes

  • 2b1cbbc: Add ifMatch option to del() for conditional deletes (optimistic concurrency control). Only works for single-URL deletes.

@​vercel/blob@​2.1.0

Minor Changes

  • 6c68442: Add ETag support for conditional writes (optimistic concurrency control)

    • Return etag in all blob responses (put, copy, head, list, multipart)
    • Accept ifMatch option in put/copy/createMultipartUpload for conditional writes
    • Add BlobPreconditionFailedError for ETag mismatch (HTTP 412)

    Usage Example: Preventing Lost Updates

    When multiple users or processes might update the same blob concurrently, use ifMatch to ensure you don't overwrite someone else's changes:

    import { put, head, BlobPreconditionFailedError } from "@vercel/blob";
    // User 1: Read the current blob and get its ETag
    const metadata = await head("config.json");
    console.log(metadata.etag); // e.g., '"abc123"'
    // User 2: Also reads the same blob (same ETag)
    const metadata2 = await head("config.json");
    // User 1: Updates the blob with ifMatch
    // This succeeds because the ETag matches
    const result1 = await put(
    "config.json",
    JSON.stringify({ setting: "user1" }),
    {
    access: "public",
    allowOverwrite: true, // Required when updating existing blobs
    ifMatch: metadata.etag, // Only write if ETag still matches
    }
    );
    console.log(result1.etag); // New ETag: '"def456"'
    // User 2: Tries to update with their (now stale) ETag
    // This fails because User 1 already changed the blob
    try {
    await put("config.json", JSON.stringify({ setting: "user2" }), {
    access: "public",
    allowOverwrite: true,
    ifMatch: metadata2.etag, // Stale ETag - blob was modified!
    });
    } catch (error) {

... (truncated)

Changelog

Sourced from @​vercel/blob's changelog.

2.2.0

Minor Changes

  • 2b1cbbc: Add ifMatch option to del() for conditional deletes (optimistic concurrency control). Only works for single-URL deletes.

2.1.0

Minor Changes

  • 6c68442: Add ETag support for conditional writes (optimistic concurrency control)

    • Return etag in all blob responses (put, copy, head, list, multipart)
    • Accept ifMatch option in put/copy/createMultipartUpload for conditional writes
    • Add BlobPreconditionFailedError for ETag mismatch (HTTP 412)

    Usage Example: Preventing Lost Updates

    When multiple users or processes might update the same blob concurrently, use ifMatch to ensure you don't overwrite someone else's changes:

    import { put, head, BlobPreconditionFailedError } from "@vercel/blob";
    // User 1: Read the current blob and get its ETag
    const metadata = await head("config.json");
    console.log(metadata.etag); // e.g., '"abc123"'
    // User 2: Also reads the same blob (same ETag)
    const metadata2 = await head("config.json");
    // User 1: Updates the blob with ifMatch
    // This succeeds because the ETag matches
    const result1 = await put(
    "config.json",
    JSON.stringify({ setting: "user1" }),
    {
    access: "public",
    allowOverwrite: true, // Required when updating existing blobs
    ifMatch: metadata.etag, // Only write if ETag still matches
    }
    );
    console.log(result1.etag); // New ETag: '"def456"'
    // User 2: Tries to update with their (now stale) ETag
    // This fails because User 1 already changed the blob
    try {
    await put("config.json", JSON.stringify({ setting: "user2" }), {
    access: "public",
    allowOverwrite: true,
    ifMatch: metadata2.etag, // Stale ETag - blob was modified!

... (truncated)

Commits
  • 238dccf Version Packages (#966)
  • 2b1cbbc feat(blob): add ifMatch option to del() for conditional deletes (#965)
  • e626a0a chore(deps): update dependency @​types/node to v24.10.11 (#964)
  • 28b27b0 Version Packages (#963)
  • 6c68442 feat(blob): add ETag support for conditional writes (#960)
  • dbc8c78 chore(deps): update dependency @​types/node to v24.10.10 (#958)
  • 9879fa0 chore(deps): update dependency @​types/node to v24 (#944)
  • c58c32d chore(deps): update dependency @​types/node to v22.19.7 (#931)
  • 63738c2 chore(deps): update deps all at once (#932)
  • d912c27 Version Packages (#930)
  • Additional commits viewable in compare view

Updates @vercel/functions from 3.3.6 to 3.4.1

Changelog

Sourced from @​vercel/functions's changelog.

3.4.1

Patch Changes

  • Fix InMemoryCache to use JSON serialization for consistency with RuntimeCache (#14751)

    InMemoryCache now serializes values with JSON.stringify() on set and deserializes with JSON.parse() on get, matching the behavior of RuntimeCache. This ensures consistent behavior when switching between cache implementations (e.g., in-memory for development, remote for production), particularly for types that don't survive JSON round-trips like Date, Map, Set, and undefined.

3.4.0

Minor Changes

  • Fix cache tags to be URL encoded before being sent to the cache API. Tags containing special characters (spaces, commas, ampersands, etc.) are now properly encoded using encodeURIComponent. This (#14749) ensures tags like "my tag" or "category,item" are correctly handled when setting cache entries or expiring tags.
Commits

Updates @ianvs/prettier-plugin-sort-imports from 4.7.0 to 4.7.1

Release notes

Sourced from @​ianvs/prettier-plugin-sort-imports's releases.

v4.7.1

What's Changed

Fixes

Dependencies

Docs

New Contributors

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.7.0...v4.7.1

Commits

Updates @playwright/test from 1.57.0 to 1.58.2

Release notes

Sourced from @​playwright/test's releases.

v1.58.2

Highlights

#39121 fix(trace viewer): make paths via stdin work #39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.1

Highlights

#39036 fix(msedge): fix local network permissions #39037 chore: update cft download location #38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.0

📣 Playwright CLI+SKILLs 📣

We are adding a new token-efficient CLI mode of operation to Playwright with the skills located at playwright-cli. This brings the long-awaited official SKILL-focused CLI mode to our story and makes it more coding agent-friendly.

It is the first snapshot with the essential command set (which is already larger than the original MCP!), but we expect it to grow rapidly. Unlike the token use, that one we expect to go down since snapshots are no longer forced into the LLM!

Timeline

If you're using merged reports, the HTML report Speedboard tab now shows the Timeline:

Timeline chart in the HTML report

UI Mode and Trace Viewer Improvements

  • New 'system' theme option follows your OS dark/light mode preference
  • Search functionality (Cmd/Ctrl+F) is now available in code editors
  • Network details panel has been reorganized for better usability
  • JSON responses are now automatically formatted for readability

Thanks to @​cpAdm for contributing these improvements!

Miscellaneous

browserType.connectOverCDP() now accepts an isLocal option. When set to true, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.

Breaking Changes ⚠️

  • Removed _react and _vue selectors. See locators guide for alternatives.

... (truncated)

Commits

Updates @types/node from 25.0.9 to 25.2.2

Commits

Updates @typescript-eslint/eslint-plugin from 8.53.0 to 8.54.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.54.0

8.54.0 (2026-01-26)

🚀 Features

  • eslint-plugin-internal: add prefer-tsutils-methods rule (#11974, #11625)
  • scope-manager: support ScopeManager#addGlobals (#11914)
  • typescript-estree: add shortcut methods to ParserServicesWithTypeInformation (#11965, #11955)

🩹 Fixes

  • eslint-plugin: [no-unused-private-class-members] private destructured class member is defined but used (#11785)
  • eslint-plugin: [no-unnecessary-type-assertion] check both base constraint and actual type for non-null assertions (#11967, #11559)
  • scope-manager: fix catch clause scopes def.name (#11982)
  • scope-manager: prevent misidentification of "use strict" directives (#11995)
  • utils: handle missing FlatESLint and LegacyESLint (#11958)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.53.1

8.53.1 (2026-01-19)

🩹 Fixes

  • eslint-plugin: [consistent-indexed-object-style] skip fixer if interface is a default export (#11951)
  • utils: make RuleCreator root defaultOptions optional (#11956)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.54.0 (2026-01-26)

🚀 Features

  • eslint-plugin-internal: add prefer-tsutils-methods rule (#11974, #11625)
  • typescript-estree: add shortcut methods to ParserServicesWithTypeInformation (#11965, #11955)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-assertion] check both base constraint and actual type for non-null assertions (#11967, #11559)
  • deps: update dependency prettier to v3.8.0 (#11991)
  • scope-manager: fix catch clause scopes def.name (#11982)
  • eslint-plugin: [no-unused-private-class-members] private destructured class member is defined but used (#11785)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.53.1 (2026-01-19)

🩹 Fixes

  • utils: make RuleCreator root defaultOptions optional (#11956)
  • eslint-plugin: [consistent-indexed-object-style] skip fixer if interface is a default export (#11951)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • d423e57 chore(release): publish 8.54.0
  • 80e33ff feat(eslint-plugin-internal): add prefer-tsutils-methods rule (#11974)
  • ec4f73a feat(typescript-estree): add shortcut methods to ParserServicesWithTypeInform...
  • d32f909 test(eslint-plugin): skip rules tests in windows ci (#11988)
  • 17fa993 test(eslint-plugin): improve vitest performance with isolate: false (#11754)
  • 1c66ab4 fix(eslint-plugin): [no-unnecessary-type-assertion] check both base constrain...
  • aaa7ca2 fix(deps): update dependency prettier to v3.8.0 (#11991)
  • d50aa18 fix(scope-manager): fix catch clause scopes def.name (#11982)
  • 4c0b379 fix(eslint-plugin): [no-unused-private-class-members] private destructured cl...
  • 9940e53 chore(release): publish 8.53.1
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 8.53.0 to 8.55.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.55.0

8.55.0 (2026-02-09)

🚀 Features

  • utils: deprecate defaultOptions in favor of meta.defaultOptions (#11992)

🩹 Fixes

  • eslint-plugin: [no-unused-vars] remove trailing newline when removing entire import (#11990)
  • eslint-plugin: [no-useless-default-assignment] require strictNullChecks (#11966, #12000)
  • eslint-plugin: [no-useless-default-assignment] report unnecessary defaults in ternary expressions (#11984)
  • eslint-plugin: [no-useless-default-assignment] reduce param index to ts this handling (#11949)
  • typescript-estree: forbid invalid modifier in object expression (#11931)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.54.0

8.54.0 (2026-01-26)

🚀 Features

  • eslint-plugin-internal: add prefer-tsutils-methods rule (#11974, #11625)
  • scope-manager: support ScopeManager#addGlobals (#11914)
  • typescript-estree: add shortcut methods to ParserServicesWithTypeInformation (#11965, #11955)

🩹 Fixes

  • eslint-plugin: [no-unused-private-class-members] private destructured class member is defined but used (#11785)
  • eslint-plugin: [no-unnecessary-type-assertion] check both base constraint and actual type for non-null assertions (#11967, #11559)
  • scope-manager: fix catch clause scopes def.name (#11982)
  • scope-manager: prevent misidentification of "use strict" directives (#11995)
  • utils: handle missing FlatESLint and LegacyESLint (#11958)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.55.0 (2026-02-09)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.54.0 (2026-01-26)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.53.1 (2026-01-19)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates autoprefixer from 10.4.23 to 10.4.24

Release notes

Sourced from autoprefixer's releases.

10.4.24

  • Made Autoprefixer a little faster (by @​Cherry).
Changelog

Sourced from autoprefixer's changelog.

10.4.24

  • Made Autoprefixer a little faster (by @​Cherry).
Commits

Updates eslint-config-next from 16.1.3 to 16.1.6

Release notes

Sourced from eslint-config-next's releases.

v16.1.6

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Upgrade to swc 54 (#88207)
  • implement LRU cache with invocation ID scoping for minimal mode response cache (#88509)
  • tweak LRU sentinel key (#89123)

Credits

Huge thanks to @​mischnic, @​wyattjoh, and @​ztanner for helping!

v16.1.5

Please refer the following changelogs for more information about this security release:

https://vercel.com/changelog/summaries-of-cve-2025-59471-and-cve-2025-59472 https://vercel.com/changelog/summary-of-cve-2026-23864

v16.1.4

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Only filter next config if experimental flag is enabled (#88733)

Credits

Huge thanks to @​mischnic for helping!

Commits

Updates glob-bin from 1.0.0 to 1.1.0

Changelog

Sourced from glob-bin's changelog.

changeglob

1.1

  • Export the bin as glob, which is what it should've been all along.

1

  • Split the glob CLI out from the main node-glob project into this one so that it can be maintained separately.
Commits
Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates prettier from 3.8.0 to 3.8.1

Release notes

Sourced from prettier's releases.

3.8.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.8.1

diff

Include available printers in plugin type declarations (#18706 by @​porada)

// Input
import * as prettierPluginEstree from "prettier/plugins/estree";
// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any
// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

Commits

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

Bumps the dev-dependencies group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@mui/x-charts](https://github.com/mui/mui-x/tree/HEAD/packages/x-charts) | `8.25.0` | `8.27.0` |
| [@vercel/blob](https://github.com/vercel/storage/tree/HEAD/packages/blob) | `2.0.0` | `2.2.0` |
| [@vercel/functions](https://github.com/vercel/vercel/tree/HEAD/packages/functions) | `3.3.6` | `3.4.1` |
| [@ianvs/prettier-plugin-sort-imports](https://github.com/ianvs/prettier-plugin-sort-imports) | `4.7.0` | `4.7.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.57.0` | `1.58.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.9` | `25.2.2` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.53.0` | `8.54.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.23` | `10.4.24` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.1.3` | `16.1.6` |
| [glob-bin](https://github.com/isaacs/glob-bin) | `1.0.0` | `1.1.0` |
| [prettier](https://github.com/prettier/prettier) | `3.8.0` | `3.8.1` |



Updates `@mui/x-charts` from 8.25.0 to 8.27.0
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/v8.27.0/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v8.27.0/packages/x-charts)

Updates `@vercel/blob` from 2.0.0 to 2.2.0
- [Release notes](https://github.com/vercel/storage/releases)
- [Changelog](https://github.com/vercel/storage/blob/main/packages/blob/CHANGELOG.md)
- [Commits](https://github.com/vercel/storage/commits/@vercel/blob@2.2.0/packages/blob)

Updates `@vercel/functions` from 3.3.6 to 3.4.1
- [Release notes](https://github.com/vercel/vercel/releases)
- [Changelog](https://github.com/vercel/vercel/blob/main/packages/functions/CHANGELOG.md)
- [Commits](https://github.com/vercel/vercel/commits/@vercel/functions@3.4.1/packages/functions)

Updates `@ianvs/prettier-plugin-sort-imports` from 4.7.0 to 4.7.1
- [Release notes](https://github.com/ianvs/prettier-plugin-sort-imports/releases)
- [Changelog](https://github.com/IanVS/prettier-plugin-sort-imports/blob/main/CHANGELOG.md)
- [Commits](IanVS/prettier-plugin-sort-imports@v4.7.0...v4.7.1)

Updates `@playwright/test` from 1.57.0 to 1.58.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.57.0...v1.58.2)

Updates `@types/node` from 25.0.9 to 25.2.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@typescript-eslint/eslint-plugin` from 8.53.0 to 8.54.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.54.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.53.0 to 8.55.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.55.0/packages/parser)

Updates `autoprefixer` from 10.4.23 to 10.4.24
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.23...10.4.24)

Updates `eslint-config-next` from 16.1.3 to 16.1.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v16.1.6/packages/eslint-config-next)

Updates `glob-bin` from 1.0.0 to 1.1.0
- [Changelog](https://github.com/isaacs/glob-bin/blob/main/changelog.md)
- [Commits](isaacs/glob-bin@v1.0.0...v1.1.0)

Updates `prettier` from 3.8.0 to 3.8.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.0...3.8.1)

---
updated-dependencies:
- dependency-name: "@mui/x-charts"
  dependency-version: 8.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@vercel/blob"
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@vercel/functions"
  dependency-version: 3.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@ianvs/prettier-plugin-sort-imports"
  dependency-version: 4.7.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.54.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.55.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: eslint-config-next
  dependency-version: 16.1.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: glob-bin
  dependency-version: 1.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Aktualizace závislostí javascript Pull requests that update javascript code labels Feb 16, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Feb 23, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 23, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-dependencies-321aedce9f branch February 23, 2026 01:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Aktualizace závislostí javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants