Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 8 updates#172

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-6292a05127
Open

chore(deps): bump the production-dependencies group across 1 directory with 8 updates#172
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-6292a05127

Conversation

@dependabot
Copy link
Contributor

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

Bumps the production-dependencies group with 8 updates in the / directory:

Package From To
@ianvs/prettier-plugin-sort-imports 4.7.0 4.7.1
pacote 21.1.0 21.3.1
typescript-eslint 8.54.0 8.55.0
eslint-plugin-react-refresh 0.4.26 0.5.0
globals 17.2.0 17.3.0
commander 14.0.2 14.0.3
@easyops-cn/docusaurus-search-local 0.52.3 0.55.0
lucide-react 0.563.0 0.564.0

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 pacote from 21.1.0 to 21.3.1

Release notes

Sourced from pacote's releases.

v21.3.1

21.3.1 (2026-02-10)

Bug Fixes

Chores

v21.3.0

21.3.0 (2026-02-09)

Features

v21.2.0

21.2.0 (2026-02-06)

Features

Changelog

Sourced from pacote's changelog.

21.3.1 (2026-02-10)

Bug Fixes

Chores

21.3.0 (2026-02-09)

Features

21.2.0 (2026-02-06)

Features

Commits

Updates typescript-eslint from 8.54.0 to 8.55.0

Release notes

Sourced from typescript-eslint'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.

Changelog

Sourced from typescript-eslint's changelog.

8.55.0 (2026-02-09)

This was a version bump only for typescript-eslint 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.

Commits

Updates eslint-plugin-react-refresh from 0.4.26 to 0.5.0

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.5.0

Breaking changes

  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig(
/* Main config */
reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig({
files: ["/*.ts", "/*.tsx"],
plugins: {
// other plugins
"react-refresh": reactRefresh.plugin,
},
rules: {
// other rules
"react-refresh/only-export-components": [
"warn",
{ extraHOCs: ["someLibHOC"] },
],
},
});

Why

This version follows a revamp of the internal logic to better make the difference between random call expressions like export const Enum = Object.keys(Record) and actual React HOC calls like export const MemoComponent = memo(Component). (fixes #93)

The rule now handles ternaries and patterns like export default customHOC(props)(Component) which makes it able to correctly support files like this one given this config:

... (truncated)

Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.5.0

Breaking changes

  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig(
/* Main config */
reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig({
files: ["/*.ts", "/*.tsx"],
plugins: {
// other plugins
"react-refresh": reactRefresh.plugin,
},
rules: {
// other rules
"react-refresh/only-export-components": [
"warn",
{ extraHOCs: ["someLibHOC"] },
],
},
});

Why

This version follows a revamp of the internal logic to better make the difference between random call expressions like export const Enum = Object.keys(Record) and actual React HOC calls like export const MemoComponent = memo(Component). (fixes #93)

The rule now handles ternaries and patterns like export default customHOC(props)(Component) which makes it able to correctly support files like this one given this config:

... (truncated)

Commits

Updates globals from 17.2.0 to 17.3.0

Release notes

Sourced from globals's releases.

v17.3.0

  • Update globals (2026-02-01) (#336) 295fba9

sindresorhus/globals@v17.2.0...v17.3.0

Commits

Updates commander from 14.0.2 to 14.0.3

Release notes

Sourced from commander's releases.

v14.0.3

Added

  • Release Policy document (#2462)

Changes

  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date (#2462)
  • clarify typing for deprecated callback parameter to .outputHelp() (#2427)
  • simple readability improvements to README (#2465)
Changelog

Sourced from commander's changelog.

[14.0.3] (2026-01-31)

Added

  • Release Policy document (#2462)

Changes

  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date (#2462)
  • clarify typing for deprecated callback parameter to .outputHelp() (#2427)
  • simple readability improvements to README (#2465)
Commits

Updates @easyops-cn/docusaurus-search-local from 0.52.3 to 0.55.0

Release notes

Sourced from @​easyops-cn/docusaurus-search-local's releases.

v0.55.0

0.55.0 (2026-02-13)

Features

  • make open-ask-ai opt-in via optional peer dependency (#563) (98d7888)

v0.54.1

0.54.1 (2026-02-10)

Bug Fixes

  • Cannot read properties of undefined (reading 'toLowerCase') (3f45515)

v0.54.0

0.54.0 (2026-02-08)

Features

  • make open-ask-ai async and optional (4c404ab)
  • make open-ask-ai async and optional (e031739), closes #558

v0.53.0

0.53.0 (2026-02-05)

Features

Commits

Updates lucide-react from 0.563.0 to 0.564.0

Release notes

Sourced from lucide-react's releases.

Version 0.564.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.563.1...0.564.0

Hotfix @lucide/svelte hasA11yProp.js import

What's Changed

Full Changelog: lucide-icons/lucide@0.563.0...0.563.1

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

@github-actions
Copy link
Contributor

github-actions bot commented Feb 16, 2026

⚠️ Changeset Validation Failed

The following packages have been modified but are not included in any changeset:

  • @grasdouble/cdn_autobuild-server
  • @grasdouble/lufa_config_eslint
  • @grasdouble/lufa_config_prettier
  • @grasdouble/lufa_design-system
  • @grasdouble/lufa_design-system-cli
  • @grasdouble/lufa_design-system-docusaurus
  • @grasdouble/lufa_design-system-playwright
  • @grasdouble/lufa_design-system-storybook
  • @grasdouble/lufa_design-system-themes
  • @grasdouble/lufa_design-system-tokens
  • @grasdouble/lufa_microfrontend_home
  • @grasdouble/lufa_microfrontend_main-container
  • @grasdouble/lufa_plugin_vite_vite-plugin-import-map-injector
  • @grasdouble/lufa_plugin_vite_vite-plugin-react-preamble

What you need to do:

  1. Run pnpm changeset to create a new changeset
  2. Select the modified packages that need version bumps
  3. Choose the appropriate version bump (major, minor, or patch)
  4. Write a clear description of the changes
  5. Commit the generated changeset file

All modified packages:

  • @grasdouble/cdn_autobuild-server
  • @grasdouble/lufa_config_eslint
  • @grasdouble/lufa_config_prettier
  • @grasdouble/lufa_design-system
  • @grasdouble/lufa_design-system-cli
  • @grasdouble/lufa_design-system-docusaurus
  • @grasdouble/lufa_design-system-playwright
  • @grasdouble/lufa_design-system-storybook
  • @grasdouble/lufa_design-system-themes
  • @grasdouble/lufa_design-system-tokens
  • @grasdouble/lufa_microfrontend_home
  • @grasdouble/lufa_microfrontend_main-container
  • @grasdouble/lufa_plugin_vite_vite-plugin-import-map-injector
  • @grasdouble/lufa_plugin_vite_vite-plugin-react-preamble

Why is this important?

Changesets ensure that:

  • All package changes are properly versioned
  • Changelogs are automatically generated
  • Dependent packages are updated correctly
  • Release notes are comprehensive

Need help?

@github-actions
Copy link
Contributor

github-actions bot commented Feb 16, 2026

⚡ Performance Budget Report

✅ All Performance Budgets Passed!

Your changes meet all performance requirements. Great work! 🎉

📊 Performance Metrics

Metric Current Budget Status
Bundle Size 233.91 KB 250 KB ✅ Pass
JS Size 87.96 KB - ℹ️ Info
CSS Size 145.95 KB - ℹ️ Info
Gzipped Size 39.98 KB 50 KB ✅ Pass
Build Time 16.48s 30s ✅ Pass
CSS Cascade 555ms 1000ms ✅ Pass

📦 Size Breakdown

JavaScript: 87.96 KB
CSS:        145.95 KB
────────────────────
Total:      233.91 KB
Gzipped:    39.98 KB (17% compression)

⏱️ Timing Breakdown

Build:         16.48s
CSS Cascade:   555ms

📈 Performance History

Track performance trends over time by comparing metrics across PRs.

🔧 Run Locally

# Build and check bundle size
pnpm ds:main:build
ls -lh packages/design-system/main/dist/

# Run performance tests
pnpm ds:test:ci

# Run CLI validation
cd packages/design-system/cli
pnpm exec tsx src/index.ts validate --theme <theme.css> --all

📊 View detailed report

@github-actions
Copy link
Contributor

github-actions bot commented Feb 16, 2026

🎭 Playwright Component Test Results

✅ All Tests Passed!

No visual regressions detected. All components render as expected! 🎉

Metric Count
Total Tests 721
Passed 721 ✅
Failed 0
Visual Diffs 0
Execution Time 107.69s / 120s ✅

📋 Components Tested

All design system components were tested in:

  • ☀️ Light mode
  • 🌙 Dark mode
  • 💻 Desktop viewport (1280x720)

Tested Components:

  • Box, Stack, Text, Icon
  • Button, Badge, Divider
  • Center, Container, Flex, Grid
  • Portal, VisuallyHidden, Label
  • Input, Card (compositions)

📊 View full test report

…y with 8 updates

Bumps the production-dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@ianvs/prettier-plugin-sort-imports](https://github.com/ianvs/prettier-plugin-sort-imports) | `4.7.0` | `4.7.1` |
| [pacote](https://github.com/npm/pacote) | `21.1.0` | `21.3.1` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.54.0` | `8.55.0` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.26` | `0.5.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.2.0` | `17.3.0` |
| [commander](https://github.com/tj/commander.js) | `14.0.2` | `14.0.3` |
| [@easyops-cn/docusaurus-search-local](https://github.com/easyops-cn/docusaurus-search-local/tree/HEAD/packages/docusaurus-search-local) | `0.52.3` | `0.55.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `0.564.0` |



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 `pacote` from 21.1.0 to 21.3.1
- [Release notes](https://github.com/npm/pacote/releases)
- [Changelog](https://github.com/npm/pacote/blob/main/CHANGELOG.md)
- [Commits](npm/pacote@v21.1.0...v21.3.1)

Updates `typescript-eslint` from 8.54.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/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.55.0/packages/typescript-eslint)

Updates `eslint-plugin-react-refresh` from 0.4.26 to 0.5.0
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.26...v0.5.0)

Updates `globals` from 17.2.0 to 17.3.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.2.0...v17.3.0)

Updates `commander` from 14.0.2 to 14.0.3
- [Release notes](https://github.com/tj/commander.js/releases)
- [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md)
- [Commits](tj/commander.js@v14.0.2...v14.0.3)

Updates `@easyops-cn/docusaurus-search-local` from 0.52.3 to 0.55.0
- [Release notes](https://github.com/easyops-cn/docusaurus-search-local/releases)
- [Commits](https://github.com/easyops-cn/docusaurus-search-local/commits/v0.55.0/packages/docusaurus-search-local)

Updates `lucide-react` from 0.563.0 to 0.564.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.564.0/packages/lucide-react)

---
updated-dependencies:
- dependency-name: "@ianvs/prettier-plugin-sort-imports"
  dependency-version: 4.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pacote
  dependency-version: 21.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: globals
  dependency-version: 17.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: commander
  dependency-version: 14.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@easyops-cn/docusaurus-search-local"
  dependency-version: 0.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 0.564.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-dependencies-6292a05127 branch from 917983c to 048a2c3 Compare February 17, 2026 20:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

Comments