Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the non-breaking-changes group across 1 directory with 10 updates #5491

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 6, 2025

Bumps the non-breaking-changes group with 10 updates in the / directory:

Package From To
@iconify/json 2.2.302 2.2.303
@nolebase/vitepress-plugin-git-changelog 2.12.1 2.13.0
lucide-vue-next 0.469.0 0.474.0
publint 0.2.12 0.3.3
sass 1.83.4 1.84.0
typescript 5.7.2 5.7.3
vue-tsc 2.1.10 2.2.0
vxe-pc-ui 4.3.79 4.3.80
vxe-table 4.10.0 4.10.5
@ast-grep/napi 0.32.3 0.34.4

Updates @iconify/json from 2.2.302 to 2.2.303

Commits
  • 61941af Update 3 icon sets: Octicons, Web3 Icons Branded, Web3 Icons
  • See full diff in compare view

Updates @nolebase/vitepress-plugin-git-changelog from 2.12.1 to 2.13.0

Release notes

Sourced from @​nolebase/vitepress-plugin-git-changelog's releases.

v2.13.0

What's Changed

New Contributors

Full Changelog: nolebase/integrations@v2.12.1...v2.13.0

Commits

Updates lucide-vue-next from 0.469.0 to 0.474.0

Release notes

Sourced from lucide-vue-next's releases.

New icons 0.474.0

Modified Icons 🔨

New icons 0.473.0

Modified Icons 🔨

New icons 0.472.0

New icons 🎨

What's Changed

Full Changelog: lucide-icons/lucide@0.471.1...0.472.0

Hotfix Lucide React exports

What's Changed

Dynamic Icon component Lucide React and new icons 0.471.0

New Dynamic Icon Component (lucide-react)

This is an easier approach than the previous dynamicIconImports we exported in the library. This one supports all environments. We removed the examples in the docs of how you can make a dynamic icon yourself with a dedicated DynamicIcon component. This one fetches the icon data itself and renders it instead of fetching the Icon component from the library. This makes it more flexible with all the frontend frameworks and libraries that exist for React.

🚨 Not recommended for regular applications that work fine with the regular static icon components. Using the dynamic icon component increases build time, separate bundles, and separate network requests for each icon.

How to use

DynamicIcon is useful for applications that want to show icons dynamically by icon name, for example when using a content management system where icon names are stored in a database.

const App = () => (
  <DynamicIcon name="camera" color="red" size={48} />
);
</tr></table> 

... (truncated)

Commits

Updates publint from 0.2.12 to 0.3.3

Release notes

Sourced from publint's releases.

[email protected]

Patch Changes

  • Rename EXPORT_TYPES_INVALID_FORMAT message to EXPORTS_TYPES_INVALID_FORMAT (#139)

  • Allow versioned types conditions (e.g. "types@>=5.2") in "exports" when checking for "types" condition ordering (#138)

[email protected]

Patch Changes

  • (Potentially breaking) Disable running lifecycle scripts, such as prepare, prepack, and postpack, when running the pack command internally. This returns to the behavior in v0.2. (Note that this change does not apply to yarn as it does not support ignoring lifecycle scripts for local projects) (#128)

    This change is made as running lifecycle scripts was an unintentional behavior during the v0.3 breaking change, which could cause the linting process to take longer than expected, or even cause infinite loops if publint is used in a lifecycle script.

  • Update repository and bugs URLs to point to the new publint organization (1eda033)

  • Updated dependencies [1eda033, 10e3891]:

    • @​publint/pack@​0.1.1

[email protected]

Patch Changes

  • Correctly process the pack option (#124)

[email protected]

Minor Changes

  • The vfs option is removed in favour of an extended support of pack: { tarball: ArrayBuffer | ReadableStream } and pack: { files: PackFile[] } APIs. Now, it is even easier to use publint in the browser or against a packed .tgz file in Node.js. See the docs for more examples of how to use these new options. (#122)

  • Bump node version support to >=18 (cb2ed8b)

  • publint now runs your project's package manager's pack command to get the list of packed files for linting. The previous npm-packlist dependency is now removed. (#120)

    NOTE: In this release (v0.3.0), the pack command also runs lifecycle scripts like prepare, prepack, and postpack. This behavior is unintentional and is fixed in v0.3.2, where they will no longer run (except for yarn as it does not support ignoring lifecycle scripts for local projects). This returns to the behavior in v0.2.

    A new pack option is added to the node API to allow configuring this. It defaults to 'auto' and will automatically detect your project's package manager using package-manager-detector. See its JSDoc for more information of the option.

    This change is made as package managers have different behaviors for packing files, so running their pack command directly allows for more accurate linting. However, as a result of executing these commands in a child process, it may take 200-500ms longer to lint depending on the package manager used and the project size. The new handling also does not support yarn 1. See this comment for more information.

    If you use yarn 1, you should upgrade to the latest yarn version or a different package manager. Otherwise, no other changes are required for this new behavior.

Patch Changes

  • Initial setup to publish with Changesets (24a62f5)

  • When a dependency with the file: or link: protocol is specified in the package.json, it will now error to prevent accidentally publishing dependencies that will likely not work when installed by end-users (6e6ab33)

  • Fix EXPORT_TYPES_INVALID_FORMAT linting to detect .d.mts and .d.cts files (af5e88b)

  • Updated dependencies [d0b406b]:

... (truncated)

Changelog

Sourced from publint's changelog.

0.3.3

Patch Changes

  • Rename EXPORT_TYPES_INVALID_FORMAT message to EXPORTS_TYPES_INVALID_FORMAT (#139)

  • Allow versioned types conditions (e.g. "types@>=5.2") in "exports" when checking for "types" condition ordering (#138)

0.3.2

Patch Changes

  • (Potentially breaking) Disable running lifecycle scripts, such as prepare, prepack, and postpack, when running the pack command internally. This returns to the behavior in v0.2. (Note that this change does not apply to yarn as it does not support ignoring lifecycle scripts for local projects) (#128)

    This change is made as running lifecycle scripts was an unintentional behavior during the v0.3 breaking change, which could cause the linting process to take longer than expected, or even cause infinite loops if publint is used in a lifecycle script.

  • Update repository and bugs URLs to point to the new publint organization (1eda033)

  • Updated dependencies [1eda033, 10e3891]:

    • @​publint/pack@​0.1.1

0.3.1

Patch Changes

  • Correctly process the pack option (#124)

0.3.0

Minor Changes

  • The vfs option is removed in favour of an extended support of pack: { tarball: ArrayBuffer | ReadableStream } and pack: { files: PackFile[] } APIs. Now, it is even easier to use publint in the browser or against a packed .tgz file in Node.js. See the docs for more examples of how to use these new options. (#122)

  • Bump node version support to >=18 (cb2ed8b)

  • publint now runs your project's package manager's pack command to get the list of packed files for linting. The previous npm-packlist dependency is now removed. (#120)

    NOTE: In this release (v0.3.0), the pack command also runs lifecycle scripts like prepare, prepack, and postpack. This behavior is unintentional and is fixed in v0.3.2, where they will no longer run (except for yarn as it does not support ignoring lifecycle scripts for local projects). This returns to the behavior in v0.2.

    A new pack option is added to the node API to allow configuring this. It defaults to 'auto' and will automatically detect your project's package manager using package-manager-detector. See its JSDoc for more information of the option.

    This change is made as package managers have different behaviors for packing files, so running their pack command directly allows for more accurate linting. However, as a result of executing these commands in a child process, it may take 200-500ms longer to lint depending on the package manager used and the project size. The new handling also does not support yarn 1. See this comment for more information.

    If you use yarn 1, you should upgrade to the latest yarn version or a different package manager. Otherwise, no other changes are required for this new behavior.

Patch Changes

  • Initial setup to publish with Changesets (24a62f5)

  • When a dependency with the file: or link: protocol is specified in the package.json, it will now error to prevent accidentally publishing dependencies that will likely not work when installed by end-users (6e6ab33)

... (truncated)

Commits

Updates sass from 1.83.4 to 1.84.0

Changelog

Sourced from sass's changelog.

1.84.0

  • Allow newlines in whitespace in the indented syntax.

  • Potentially breaking bug fix: Selectors with unmatched brackets now always produce a parser error. Previously, some edge cases like [foo#{"]:is(bar"}) {a: b} would compile without error, but this was an unintentional bug.

  • Fix a bug in which various Color Level 4 functions weren't allowed in plain CSS.

  • Fix the error message for @extend without a selector and possibly other parsing edge-cases in contexts that allow interpolation.

Embedded Host

  • Fixed the implementation of the SassBoolean type to adhere to the spec, now using a class instead of an interface.
Commits

Updates typescript from 5.7.2 to 5.7.3

Release notes

Sourced from typescript's releases.

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • a5e123d Update LKG
  • 8bc0204 🤖 Pick PR #60828 (Fix CodeQL configuration, releases) into release-5.7 (#60923)
  • 7aa63df 🤖 Pick PR #60393 (Don't try to add an implicit undefi...) into release-5.7 (#...
  • 9df7c36 Bump version to 5.7.3 and LKG
  • e167412 🤖 Pick PR #60794 (Harden sanitizeLog against incorr...) into release-5.7 (#...
  • 9ba364c Fix coverage build on release-5.7 (#60792)
  • 4b7441a 🤖 Pick PR #60680 (Mark the inherited any-based index ...) into release-5.7 (#...
  • e844dc3 Cherry-pick #60402, #60440, #60616 into release-5.7 (#60777)
  • 21b02a1 🤖 Pick PR #60749 (Do not require import attribute on ...) into release-5.7 (#...
  • b82fd16 🤖 Pick PR #60576 (Avoid incorrectly reusing assertion...) into release-5.7 (#...
  • Additional commits viewable in compare view

Updates vue-tsc from 2.1.10 to 2.2.0

Release notes

Sourced from vue-tsc's releases.

v2.2.0

Features

  • feat(language-core): support @vue-generic (#4971) - Thanks to @​KazariEX!
  • feat(vscode): add configuration for skipping automatic detection of Hybrid Mode (#5046) - Thanks to @​KazariEX!
  • feat(language-service): crawl html data of data-allow-mismatch - Thanks to @​KazariEX!
  • feat(language-core): type support of $attrs (#5076) - Thanks to @​KazariEX!
  • feat(language-core): type support of useSlots and $slots (#5055) - Thanks to @​KazariEX!
  • feat(language-core): type support of v-model modifiers (#5061) - Thanks to @​KazariEX!
  • feat(language-service): process references data at runtime to reduce bundle size (#5054) - Thanks to @​KazariEX!
  • feat(language-core): support the use of sfc root comment to configure vueCompilerOptions (#4987) - Thanks to @​KazariEX!
  • feat(vscode): add timeout logic for insiders fetching (#5048) - Thanks to @​KazariEX!
  • feat(vscode): add examples to inlay hints configuration (#5068) - Thanks to @​KazariEX!

Performance

  • perf(typescript-plugin): use named pipe servers more efficiently (#5070)

Bug Fixes

  • fix(language-core): generate script setup starting from last leading comment without @ts-check - Thanks to @​KazariEX!
  • fix(language-core): make model modifiers optional (#4978) - Thanks to @​stafyniaksacha!
  • fix(language-core): always report missing props on <slot> (#4982) - Thanks to @​KazariEX!
  • fix(language-core): avoid unchecked index access when parsing defineEmits (#5028) - Thanks to @​KazariEX!
  • fix(language-service): handle text edit of special closing tags completion correctly (#5016) - Thanks to @​KazariEX!
  • fix(language-core): don't generate variable access of template refs using useTemplateRef (#5032) - Thanks to @​KazariEX!
  • fix(vscode): update enabledHybridMode before activate extension (#5019) - Thanks to @​nieyuyao!
  • fix(tsc): point to shimmed tsc entry point to support ts 5.7 (#5020) - Thanks to @​davidmatter!
  • fix(vscode): add GitHub.copilot-chat to hybrid mode compatible list (#5047) - Thanks to @​KazariEX!
  • fix(language-core): generate generics normally when useTemplateRef has no parameters (#5051) - Thanks to @​KazariEX!
  • fix(language-core): avoid clipping prop name using .prop or .attr on v-model - Thanks to @​KazariEX!
  • fix(language-core): handle named default import of components correctly (#5066) - Thanks to @​KazariEX!
  • fix(language-core): disable navigation feature on non-binding prop values (#5040) - Thanks to @​KazariEX!
  • fix(language-core): do not generate useTemplateRef parameter repeatedly (#5009)
  • fix(language-core): generate macros after script setup content (#5071) - Thanks to @​KazariEX!
  • fix(language-core): correct type and completion support of vue: event (#4969) - Thanks to @​KazariEX!
  • fix(language-core): prevent visiting functional components for parseScriptSetupRanges (#5049) - Thanks to @​zhiyuanzmj!
  • fix(language-service): don't provide modifier completion for @ and : (#5052) - Thanks to @​KazariEX!
  • fix(language-core): consistent interpolation behavior of shorthand binding (#4975) - Thanks to @​KazariEX!
  • fix(language-core): resolve components with various name cases correctly (#5067) - Thanks to @​KazariEX!
  • fix(language-core): map v-slot correctly to report error when missing default slot - Thanks to @​KazariEX!
  • fix(language-core): map component loc to instance variable for verification - Thanks to @​KazariEX!

Other Changes

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

2.2.0 official, 2.2.1 insiders (2024-12-24)

Features

  • feat(language-core): support @vue-generic (#4971) - Thanks to @​KazariEX!
  • feat(vscode): add configuration for skipping automatic detection of Hybrid Mode (#5046) - Thanks to @​KazariEX!
  • feat(language-service): crawl html data of data-allow-mismatch - Thanks to @​KazariEX!
  • feat(language-core): type support of $attrs (#5076) - Thanks to @​KazariEX!
  • feat(language-core): type support of useSlots and $slots (#5055) - Thanks to @​KazariEX!
  • feat(language-core): type support of v-model modifiers (#5061) - Thanks to @​KazariEX!
  • feat(language-service): process references data at runtime to reduce bundle size (#5054) - Thanks to @​KazariEX!
  • feat(language-core): support the use of sfc root comment to configure vueCompilerOptions (#4987) - Thanks to @​KazariEX!
  • feat(vscode): add timeout logic for insiders fetching (#5048) - Thanks to @​KazariEX!
  • feat(vscode): add examples to inlay hints configuration (#5068) - Thanks to @​KazariEX!

Performance

  • perf(typescript-plugin): use named pipe servers more efficiently (#5070)

Bug Fixes

  • fix(language-core): generate script setup starting from last leading comment without @ts-check - Thanks to @​KazariEX!
  • fix(language-core): make model modifiers optional (#4978) - Thanks to @​stafyniaksacha!
  • fix(language-core): always report missing props on <slot> (#4982) - Thanks to @​KazariEX!
  • fix(language-core): avoid unchecked index access when parsing defineEmits (#5028) - Thanks to @​KazariEX!
  • fix(language-service): handle text edit of special closing tags completion correctly (#5016) - Thanks to @​KazariEX!
  • fix(language-core): don't generate variable access of template refs using useTemplateRef (#5032) - Thanks to @​KazariEX!
  • fix(vscode): update enabledHybridMode before activate extension (#5019) - Thanks to @​nieyuyao!
  • fix(tsc): point to shimmed tsc entry point to support ts 5.7 (#5020) - Thanks to @​davidmatter!
  • fix(vscode): add GitHub.copilot-chat to hybrid mode compatible list (#5047) - Thanks to @​KazariEX!
  • fix(language-core): generate generics normally when useTemplateRef has no parameters (#5051) - Thanks to @​KazariEX!
  • fix(language-core): avoid clipping prop name using .prop or .attr on v-model - Thanks to @​KazariEX!
  • fix(language-core): handle named default import of components correctly (#5066) - Thanks to @​KazariEX!
  • fix(language-core): disable navigation feature on non-binding prop values (#5040) - Thanks to @​KazariEX!
  • fix(language-core): do not generate useTemplateRef parameter repeatedly (#5009)
  • fix(language-core): generate macros after script setup content (#5071) - Thanks to @​KazariEX!
  • fix(language-core): correct type and completion support of vue: event (#4969) - Thanks to @​KazariEX!
  • fix(language-core): prevent visiting functional components for parseScriptSetupRanges (#5049) - Thanks to @​zhiyuanzmj!
  • fix(language-service): don't provide modifier completion for @ and : (#5052) - Thanks to @​KazariEX!
  • fix(language-core): consistent interpolation behavior of shorthand binding (#4975) - Thanks to @​KazariEX!
  • fix(language-core): resolve components with various name cases correctly (#5067) - Thanks to @​KazariEX!
  • fix(language-core): map v-slot correctly to report error when missing default slot - Thanks to @​KazariEX!
  • fix(language-core): map component loc to instance variable for verification - Thanks to @​KazariEX!

Other Changes

... (truncated)

Commits
  • 55638ff v2.2.0 (#5079)
  • 98489a1 refactor(tsc): removed handling for TS 5.7
  • 3f632f2 test: sort tsc result
  • 4fff892 fix(language-core): generate macros after script setup content (#5071)
  • 1e408b8 fix(language-core): only generate the props it needs in generic components
  • 06b98f5 feat(language-core): type support of v-model modifiers (#5061)
  • 1d0acb4 chore: update deps
  • 3fb59af fix(tsc): point to shimmed tsc entry point to support ts 5.7 (#5020)
  • 31d1484 test: pin TS version and update snapshot
  • d0a9e5f chore: bump volar
  • Additional commits viewable in compare view

Updates vxe-pc-ui from 4.3.79 to 4.3.80

Commits

Updates vxe-table from 4.10.0 to 4.10.5

Release notes

Sourced from vxe-table's releases.

v4.10.4

  • table
    • 修复复选框禁用显示问题
    • 优化树懒加载拖拽
    • 增加插槽 row-drag-icon #2732
    • 增加插槽 column-drag-icon

v4.10.1

  • table
    • 修复自定义状态不正确问题 #2717
    • 修复同级拖拽与跨级拖拽冲突问题
    • 增加参数 resizable-config.isDblclickAutoWidth
    • 增加参数 sort-config. iconVisibleMethod
    • 增加参数 filter-config. iconVisibleMethod
    • 优化动态行高虚拟渲染
  • grid
    • 参数 layouts 支持二维数组,更加灵活得我自定义布局
    • 增加插槽 asideLeft #2714
    • 增加插槽 asideRight #2714
Commits

Updates @ast-grep/napi from 0.32.3 to 0.34.4

Release notes

Sourced from @​ast-grep/napi's releases.

0.34.4

0.34.3

  • fix: fix binary command again 2c9034c

0.34.2

0.34.1

0.34.0

0.33.1

0.33.0

  • Breaking change: refactor: move pyo3 registration to CustomLang 4ddb08f
  • feat: introduce napi_lang for dynamic loading 1a8d782
  • chore(deps): update dependency @​ast-grep/napi to v0.32.3 713244f
Changelog

Sourced from @​ast-grep/napi's changelog.

0.34.4

0.34.3

27 January 2025

  • fix: fix binary command again 2c9034c

0.34.2

27 January 2025

0.34.1

26 January 2025

0.34.0

26 January 2025

0.33.1

12 January 2025

... (truncated)

Commits
  • ec147d3 0.34.4
  • a869713 chore(deps): update rust crate napi-build to v2.1.4
  • dd4fa0d chore(deps): update dependency @​types/node to v22.13.0
  • 3ebdd7e fix(deps): update rust crate serde_json to v1.0.138
  • 3eea108 fix(deps): update dependency @​swc/core to v1.10.12
  • 3221918 fix(deps): update rust crate similar to v2.7.0
  • 63fc143 fix(deps): update rust crate clap_complete to v4.5.44
  • 6939cca chore(deps): update rust crate tempfile to v3.16.0
  • 4df3f46 fix(deps): update rust crate toml_edit to v0.22.23
  • 2399a77 fix: fix bininstall
  • Additional commits viewable in compare view

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

Description has been truncated

…ith 10 updates

Bumps the non-breaking-changes group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.302` | `2.2.303` |
| [@nolebase/vitepress-plugin-git-changelog](https://github.com/nolebase/integrations/tree/HEAD/packages/vitepress-plugin-git-changelog) | `2.12.1` | `2.13.0` |
| [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next) | `0.469.0` | `0.474.0` |
| [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.2.12` | `0.3.3` |
| [sass](https://github.com/sass/dart-sass) | `1.83.4` | `1.84.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `2.1.10` | `2.2.0` |
| [vxe-pc-ui](https://github.com/x-extends/vxe-pc-ui) | `4.3.79` | `4.3.80` |
| [vxe-table](https://github.com/x-extends/vxe-table) | `4.10.0` | `4.10.5` |
| [@ast-grep/napi](https://github.com/ast-grep/ast-grep) | `0.32.3` | `0.34.4` |



Updates `@iconify/json` from 2.2.302 to 2.2.303
- [Commits](iconify/icon-sets@2.2.302...2.2.303)

Updates `@nolebase/vitepress-plugin-git-changelog` from 2.12.1 to 2.13.0
- [Release notes](https://github.com/nolebase/integrations/releases)
- [Commits](https://github.com/nolebase/integrations/commits/v2.13.0/packages/vitepress-plugin-git-changelog)

Updates `lucide-vue-next` from 0.469.0 to 0.474.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.474.0/packages/lucide-vue-next)

Updates `publint` from 0.2.12 to 0.3.3
- [Release notes](https://github.com/publint/publint/releases)
- [Changelog](https://github.com/publint/publint/blob/master/packages/publint/CHANGELOG.md)
- [Commits](https://github.com/publint/publint/commits/[email protected]/packages/publint)

Updates `sass` from 1.83.4 to 1.84.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.83.4...1.84.0)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

Updates `vue-tsc` from 2.1.10 to 2.2.0
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v2.2.0/packages/tsc)

Updates `vxe-pc-ui` from 4.3.79 to 4.3.80
- [Release notes](https://github.com/x-extends/vxe-pc-ui/releases)
- [Commits](https://github.com/x-extends/vxe-pc-ui/commits)

Updates `vxe-table` from 4.10.0 to 4.10.5
- [Release notes](https://github.com/x-extends/vxe-table/releases)
- [Commits](https://github.com/x-extends/vxe-table/commits)

Updates `@ast-grep/napi` from 0.32.3 to 0.34.4
- [Release notes](https://github.com/ast-grep/ast-grep/releases)
- [Changelog](https://github.com/ast-grep/ast-grep/blob/main/CHANGELOG.md)
- [Commits](ast-grep/ast-grep@0.32.3...0.34.4)

---
updated-dependencies:
- dependency-name: "@iconify/json"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@nolebase/vitepress-plugin-git-changelog"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: lucide-vue-next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: publint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vue-tsc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vxe-pc-ui
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vxe-table
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@ast-grep/napi"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 6, 2025
Copy link

changeset-bot bot commented Feb 6, 2025

⚠️ No Changeset found

Latest commit: 315c585

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

coderabbitai bot commented Feb 6, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 7, 2025

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

@dependabot dependabot bot closed this Feb 7, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-breaking-changes-d5e84b5c44 branch February 7, 2025 19:41
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