Skip to content

Comments

chore(deps): bump the dependencies group across 1 directory with 12 updates#101

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-aaab957396
Closed

chore(deps): bump the dependencies group across 1 directory with 12 updates#101
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-aaab957396

Conversation

@dependabot
Copy link
Contributor

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

Bumps the dependencies group with 12 updates in the / directory:

Package From To
@gravity-ui/table 1.15.1 1.15.2
@gravity-ui/uikit 7.30.0 7.31.0
@hey-api/openapi-ts 0.90.10 0.91.1
@types/node 25.1.0 25.2.0
@vitejs/plugin-react 5.1.2 5.1.3
eslint-plugin-react-refresh 0.4.26 0.5.0
globals 17.2.0 17.3.0
knip 5.82.1 5.83.0
stylelint 17.0.0 17.1.0
stylelint-plugin-logical-css 1.2.3 1.3.0
stylelint-plugin-use-baseline 1.2.1 1.2.2
vite-bundle-analyzer 1.3.2 1.3.5

Updates @gravity-ui/table from 1.15.1 to 1.15.2

Release notes

Sourced from @​gravity-ui/table's releases.

v1.15.2

1.15.2 (2026-01-29)

Bug Fixes

  • use getFilteredRowModel when filtering is enabled (#141) (7aeff2a)
Changelog

Sourced from @​gravity-ui/table's changelog.

1.15.2 (2026-01-29)

Bug Fixes

  • use getFilteredRowModel when filtering is enabled (#141) (7aeff2a)
Commits

Updates @gravity-ui/uikit from 7.30.0 to 7.31.0

Release notes

Sourced from @​gravity-ui/uikit's releases.

v7.31.0

7.31.0 (2026-02-02)

Features

Bug Fixes

  • Button: avoid icon shrink (#2563) (98da73e)
  • Select: stop clearing filter value if filterProp is used (#2562) (f447583)
Changelog

Sourced from @​gravity-ui/uikit's changelog.

7.31.0 (2026-02-02)

Features

Bug Fixes

  • Button: avoid icon shrink (#2563) (98da73e)
  • Select: stop clearing filter value if filterProp is used (#2562) (f447583)
Commits

Updates @hey-api/openapi-ts from 0.90.10 to 0.91.1

Release notes

Sourced from @​hey-api/openapi-ts's releases.

@​hey-api/openapi-ts@​0.91.1

Patch Changes

Updated Dependencies:

  • @​hey-api/codegen-core@​0.6.1
  • @​hey-api/shared@​0.1.1

@​hey-api/openapi-ts@​0.91.0

Minor Changes

Removed CommonJS (CJS) support

@hey-api/openapi-ts is now ESM-only. This change simplifies the codebase, improves tree-shaking, and enables better integration with modern bundlers and TypeScript tooling.

CommonJS entry points (require(), module.exports) are no longer supported. If you are in a CJS environment, you can still load the package dynamically using import() like:

const { defineConfig } = await import('@hey-api/openapi-ts');

If you have previously written:

const { defineConfig } = require('@hey-api/openapi-ts');

Migrate by updating your static imports:

import { defineConfig } from '@hey-api/openapi-ts';

If your environment cannot use ESM, pin to a previous version.

Patch Changes

Updated Dependencies:

  • @​hey-api/shared@​0.1.0
  • @​hey-api/codegen-core@​0.6.0
  • @​hey-api/types@​0.1.3
Commits
  • ce5977e Merge pull request #3292 from hey-api/changeset-release/main
  • 1542a56 chore: update lock file
  • dd988e9 ci: release
  • caabc9f Merge pull request #3291 from hey-api/copilot/fix-duplicate-import-error
  • 3c08e38 Fix duplicate import error for symbols in planner
  • 3f23cef Remove unnecessary comments and add planner unit tests for import deduplication
  • 59efc7b Fix duplicate import error when same symbol is imported as both type and value
  • 6e7770d Initial plan
  • 124dc28 Merge pull request #3287 from hey-api/chore/py-typecheck
  • c7ebec3 chore: prepare Python typecheck
  • Additional commits viewable in compare view

Updates @types/node from 25.1.0 to 25.2.0

Commits

Updates @vitejs/plugin-react from 5.1.2 to 5.1.3

Changelog

Sourced from @​vitejs/plugin-react's changelog.

5.1.3 (2026-02-02)

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 knip from 5.82.1 to 5.83.0

Release notes

Sourced from knip's releases.

Release 5.83.0

  • fix: skip empty string entries in package.json exports (#1477) (6b64ac5b89916869a2361077a51dc28adb4679df) - thanks @​SBoudrias!
  • add LS version to serverInfo (#1468) (2c28cb8dc8923d83800959a7a259b439d5c50a0e) - thanks @​niklas-wortmann!
  • Avoid highlighting path-like specifiers (#1488) (c8fec09666ad0ce145e1d2bbf99737a6bc95fd05) - thanks @​azat-io!
  • Update avatar URLs (#1489) (d612ac2dab39a560875c53b9cccb3d920caafdd1) - thanks @​azat-io!
  • Copy fix-fixtures to tmp dir (bd1519c30bb0a4004cfae463f10f8b066b778d95)
  • Don't add excluded issue types (resolve #1486) (4eeeec602a8275f8f8d4252157ed6fa3cdd83f24)
  • Minor refactor (767b2c5927d940f8815d157c2fa50c67f0a80d63)
  • Edit docs (78111c96f54da3c41cfb84bd972bb5e836e1b859)
  • feat: add plugin for expressive-code (#1493) (fbf958a9bfb2d913c345c98283a793a7f10faae5) - thanks @​cylewaitforit!
  • Truncate file path left-side (resolves #1494) (235949c0b68e0bf2f3eb9ef0f3f88e750984e70a)
  • Revert fix-fixture format test (fails in outside cwd) (8e961259bddef4652ae3b98387d1afa8514429ec)
  • Skip empty manifest entries (resolve #1497) (d314ce43e7f9fe26125db167c1a8af4728329828)
  • Filter out empty issue objects in compact reporter (resolve #1482) (7df0b4d8ee888f524132cd96260e18b870e8c57c)
  • Lint/group import statements (61e7a24460e11bd2e9e27e9a791953eb004947df)
  • Update AGENTS.md & docs (7537f8a1c474ce931a05a06efcc238eef5806447)
  • Optimize relative path helper (ac8a45454f9e8d88898141e112897803c844f803)
  • Move postinstall script to non-production (360110bed44d77da4ed5e553a63986176d2ed716)
  • Ignore simple-git-hooks in production (like husky etc) (bbab35b144080d061641b6b6a6545176e5286553)
  • Move & add testimonials (5ab18133b0e375508b34014085e10b78dcfd88ff)
  • Update sponsors page (4534a55e37f804bfdef65522354b053f28a5a8f2)
  • Edit docs, add config hints page (1a73a053dad914025e330c03cabaf9ded2444e91)
  • Rename reporter to match project style (58f8c4e476b8a051dd27fdf27859014c4954289b)
  • Auto-format (854124f7b5436436d57c5249f9b64f53e71e1994)
  • Refactor fs helper to match project style (f22e7e94a48ac0dedf41985f3928ff556d04d727)
Commits
  • f056786 Release knip@5.83.0
  • f22e7e9 Refactor fs helper to match project style
  • 854124f Auto-format
  • 58f8c4e Rename reporter to match project style
  • 1a73a05 Edit docs, add config hints page
  • bbab35b Ignore simple-git-hooks in production (like husky etc)
  • 360110b Move postinstall script to non-production
  • ac8a454 Optimize relative path helper
  • 7537f8a Update AGENTS.md & docs
  • 7df0b4d Filter out empty issue objects in compact reporter (resolve #1482)
  • Additional commits viewable in compare view

Updates stylelint from 17.0.0 to 17.1.0

Release notes

Sourced from stylelint's releases.

17.1.0

It fixes 5 bugs and adds the display-notation rule. Before we turn it on in our standard config, we'd like to hear the community's thoughts on which options to use.

Changelog

Sourced from stylelint's changelog.

17.1.0 - 2026-01-30

It fixes 5 bugs and adds the display-notation rule. Before we turn it on in our standard config, we'd like to hear the community's thoughts on which options to use.

Commits
  • 48f6372 Release 17.1.0 (#9007)
  • 5bed108 Fix selector-type-no-unknown false positives for geolocation and `usermed...
  • 7b0b6f7 Revert "Fix resolution of configs, plugins, processors, and custom syntaxes i...
  • 9b30fbd Remove display-notation secondary options while the specification is in flu...
  • 17ebd25 Fix resolution of configs, plugins, processors, and custom syntaxes in Yarn P...
  • 590df52 Bump prettier from 3.8.0 to 3.8.1 (#9002)
  • d101b15 Remove ignoring ESLint major updates in Dependabot config (#9000)
  • 0d9df2f Add display-notation rule (#8981)
  • 5721667 Turn off skipLibCheck TypeScript configuration option (#8999)
  • 79cf2cf Fix GlobbyOptions TypeScript errors (#8992)
  • Additional commits viewable in compare view

Updates stylelint-plugin-logical-css from 1.2.3 to 1.3.0

Commits

Updates stylelint-plugin-use-baseline from 1.2.1 to 1.2.2

Release notes

Sourced from stylelint-plugin-use-baseline's releases.

v1.2.2

1.2.2 (2026-02-02)

Bug Fixes

Changelog

Sourced from stylelint-plugin-use-baseline's changelog.

1.2.2 (2026-02-02)

Bug Fixes

Commits

Updates vite-bundle-analyzer from 1.3.2 to 1.3.5

Release notes

Sourced from vite-bundle-analyzer's releases.

v1.3.5

  • Revert queue system.

v1.3.4

  • Deduce size.

v1.3.3

  • Limit zip tasks and reduce memory usage.
Changelog

Sourced from vite-bundle-analyzer's changelog.

1.3.5

  • Revert queue system.

1.3.4

  • Deduce size.

1.3.3

  • Limit zip tasks and reduce memory usage.
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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

…pdates

Bumps the dependencies group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@gravity-ui/table](https://github.com/gravity-ui/table) | `1.15.1` | `1.15.2` |
| [@gravity-ui/uikit](https://github.com/gravity-ui/uikit) | `7.30.0` | `7.31.0` |
| [@hey-api/openapi-ts](https://github.com/hey-api/openapi-ts) | `0.90.10` | `0.91.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.1.0` | `25.2.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.2` | `5.1.3` |
| [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` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.82.1` | `5.83.0` |
| [stylelint](https://github.com/stylelint/stylelint) | `17.0.0` | `17.1.0` |
| [stylelint-plugin-logical-css](https://github.com/yuschick/stylelint-plugin-logical-css) | `1.2.3` | `1.3.0` |
| [stylelint-plugin-use-baseline](https://github.com/ryo-manba/stylelint-plugin-use-baseline) | `1.2.1` | `1.2.2` |
| [vite-bundle-analyzer](https://github.com/nonzzz/vite-bundle-analyzer) | `1.3.2` | `1.3.5` |



Updates `@gravity-ui/table` from 1.15.1 to 1.15.2
- [Release notes](https://github.com/gravity-ui/table/releases)
- [Changelog](https://github.com/gravity-ui/table/blob/main/CHANGELOG.md)
- [Commits](gravity-ui/table@v1.15.1...v1.15.2)

Updates `@gravity-ui/uikit` from 7.30.0 to 7.31.0
- [Release notes](https://github.com/gravity-ui/uikit/releases)
- [Changelog](https://github.com/gravity-ui/uikit/blob/main/CHANGELOG.md)
- [Commits](gravity-ui/uikit@v7.30.0...v7.31.0)

Updates `@hey-api/openapi-ts` from 0.90.10 to 0.91.1
- [Release notes](https://github.com/hey-api/openapi-ts/releases)
- [Changelog](https://github.com/hey-api/openapi-ts/blob/main/docs/CHANGELOG.md)
- [Commits](https://github.com/hey-api/openapi-ts/compare/@hey-api/openapi-ts@0.90.10...@hey-api/openapi-ts@0.91.1)

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

Updates `@vitejs/plugin-react` from 5.1.2 to 5.1.3
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.1.3/packages/plugin-react)

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 `knip` from 5.82.1 to 5.83.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@5.83.0/packages/knip)

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

Updates `stylelint-plugin-logical-css` from 1.2.3 to 1.3.0
- [Commits](https://github.com/yuschick/stylelint-plugin-logical-css/commits)

Updates `stylelint-plugin-use-baseline` from 1.2.1 to 1.2.2
- [Release notes](https://github.com/ryo-manba/stylelint-plugin-use-baseline/releases)
- [Changelog](https://github.com/ryo-manba/stylelint-plugin-use-baseline/blob/main/CHANGELOG.md)
- [Commits](ryo-manba/stylelint-plugin-use-baseline@v1.2.1...v1.2.2)

Updates `vite-bundle-analyzer` from 1.3.2 to 1.3.5
- [Release notes](https://github.com/nonzzz/vite-bundle-analyzer/releases)
- [Changelog](https://github.com/nonzzz/vite-bundle-analyzer/blob/master/CHANGELOG.md)
- [Commits](nonzzz/vite-bundle-analyzer@v1.3.2...v1.3.5)

---
updated-dependencies:
- dependency-name: "@gravity-ui/table"
  dependency-version: 1.15.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@gravity-ui/uikit"
  dependency-version: 7.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@hey-api/openapi-ts"
  dependency-version: 0.91.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: globals
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: knip
  dependency-version: 5.83.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: stylelint
  dependency-version: 17.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: stylelint-plugin-logical-css
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: stylelint-plugin-use-baseline
  dependency-version: 1.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vite-bundle-analyzer
  dependency-version: 1.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 3, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 5, 2026

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

@dependabot dependabot bot closed this Feb 5, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-aaab957396 branch February 5, 2026 18:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants