chore(deps): update all non-major dependencies #352

Open
renovatebot wants to merge 1 commits from renovate/all-minor-patch into main
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@​splinetool/runtime ^1.10.22 -> ^1.10.27 age adoption passing confidence
pnpm (source) 10.12.4 -> 10.13.1 age adoption passing confidence
vant (source) ^4.9.20 -> ^4.9.21 age adoption passing confidence
vue-data-ui (source) ^2.12.7 -> ^2.15.3 age adoption passing confidence

Release Notes

pnpm/pnpm (pnpm)

v10.13.1

Compare Source

Patch Changes
  • Run user defined pnpmfiles after pnpmfiles of plugins.

v10.13.0

Compare Source

Minor Changes
  • Added the possibility to load multiple pnpmfiles. The pnpmfile setting can now accept a list of pnpmfile locations #​9702.

  • pnpm will now automatically load the pnpmfile.cjs file from any config dependency named @pnpm/plugin-* or pnpm-plugin-* #​9729.

    The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the pnpmfile.cjs files in the config dependencies can be explicitly listed using the pnpmfile setting in pnpm-workspace.yaml.

Patch Changes
  • When patching dependencies installed via pkg.pr.new, treat them as Git tarball URLs #​9694.
  • Prevent conflicts between local projects' config and the global config in dangerouslyAllowAllBuilds, onlyBuiltDependencies, onlyBuiltDependenciesFile, and neverBuiltDependencies #​9628.
  • Sort keys in pnpm-workspace.yaml with deep #​9701.
  • The pnpm rebuild command should not add pkgs included in ignoredBuiltDependencies to ignoredBuilds in node_modules/.modules.yaml #​9338.
  • Replaced shell-quote with shlex for quoting command arguments #​9381.
vant-ui/vant (vant)

v4.9.21

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: https://github.com/youzan/vant/compare/v4.9.20...v4.9.21

graphieros/vue-data-ui (vue-data-ui)

v2.15.3

Compare Source

All charts with fullscreen feature #​222

  • Fix dimension calculations leading to scrollbars appearing when escaping fullscreen mode on a responsive chart

VueUiXy

  • Fix console error when toggling config attributes related to size calculations in responsive mode #​225
  • Fix wrong stacking order of area labels #​221

v2.15.2

Compare Source

VueUiDonut & VueUiNestedDonuts #​223

Add config attribute to set color of the donut arc when data is empty:

config.style.chart.layout.donut: string // default: '#E1E5E8'

v2.15.1

Compare Source

VueUiNestedDonuts

Improve graceful layout management of empty data.

v2.15.0

Compare Source

VueUiDonut #​218

  • Remove opacity on donut arcs

Multi-line labels #​217

  • Generate multiline datalabels when they include a line break \n

Example: "This is a long\nlabel to show"

The table below shows which components accept this feature and where:

Component Label displayed Where to use line breaks
VueUiXy Time labels (x axis) config.chart.grid.labels.xAxisLabels.values
VueUiDonutEvolution Time labels (x axis) config.style.chart.layout.grid.xAxis.dataLabels.values
VueUiHistoryPlot Plot labels dataset names
VueUiParallelCoordinatePlot Axis labels config.style.chart.yAxis.labels.axisNames
VueUiQuadrant Plot labels dataset names
VueUiQuickChart Time labels (x axis) config.xyPeriods
VueUiRidgeline Time labels (x axis) config.style.chart.xAxis.labels.values
VueUiStackbar Time labels (x axis) config.style.chart.grid.x.timeLabels.values
VueUiStripPlot x axis labels dataset names

VueUiWaffle

  • Show graceful layout when all datapoint values are empty arrays

v2.14.2

Compare Source

VueUiDonut & VueUiNestedDonuts #​215

  • Add width and height config attributes:
const config = ref({
  style: {
    chart: {
      width: 512,
      height: 360
    }
  }
})

Note: these dimensions will be ignored when responsive is set to true.

Docs are up to date:
VueUiDonut
VueUiNestedDonuts

v2.14.1

Compare Source

VueUiXy

  • Improve series layout in stacked mode

  • Add config option to set x axis crosshairs always on the bottom baseline, or on zero:

config.chart.grid.labels.xAxis.crosshairsAlwaysAtZero: boolean // default: false (previous behavior, always on the bottom baseline)

v2.14.0

Compare Source

Date time formatter

A config datetime formatter was added to the following components, to manage timestamp x axis values formatting:

  • VueUiXy
  • VueUiXyCanvas
  • VueUiStackbar
  • VueUiRidgeline
  • VueUiDonutEvolution
  • VueUiQuickChart
datetimeFormatter: {
  enable: boolean // default: false
  locale: string // default: 'en'
  useUTC: boolean // default: false
  januaryAsYear: boolean // default: false
  options: {
    year: string // default: 'yyyy'
    month: string // default: "MMM 'yy"
    day: string // default: 'dd MMM'
    hour: string // default: 'HH:mm'
    minute: string // default: 'HH:mm:ss'
    second: string // default: 'HH:mm:ss'
  }
}

DOCS are up to date

v2.13.4

Compare Source

Components with dual range zoom

  • Merge tooltips when they collide:

https://github.com/user-attachments/assets/79028bdd-abf3-484c-98e5-66837f09923d

v2.13.3

Compare Source

VueUiXy

  • Add responsiveProportionalSizing config option, (true by default = previous behavior). Set to true, it disables the text elements automatic resizing in responsive mode. #​212

  • Add useNiceScale config option to force a nice scale (false by default = previous behavior)

  • Fix errors on straight line datasets when dataset starts with a null value and cutNullValues is true

  • Add config options for xAxis and yAxis crosshair markers

  • Add optional yAxis annotations, to draw either a line or an area following one or two y values, with a label. You can create multiple annotations:

image

Docs and examples are up to date

All charts with user options

  • Add optional config callbacks to override default button behavior
const config = ref({
  userOptions: {
    // These callbacks will be called when user options buttons are clicked.
    callbacks: {
      pdf: (chart: HTMLElement) => {
        // use your own pdf solution
      },
      img: (base64: string) => {
        // do whatever you want with the base 64 image data of the chart
      },
      csv: (csvContent: string) => {
        // do whatever you want with the csv data
      },
      // all other buttons have also their callbacks (no params), with the same name as the button
    }
  }
})

v2.13.2

Compare Source

v2.13.1

Compare Source

v2.13.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @&#8203;splinetool/runtime | [`^1.10.22` -> `^1.10.27`](https://renovatebot.com/diffs/npm/@splinetool%2fruntime/1.10.22/1.10.27) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@splinetool%2fruntime/1.10.27?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@splinetool%2fruntime/1.10.27?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@splinetool%2fruntime/1.10.22/1.10.27?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@splinetool%2fruntime/1.10.22/1.10.27?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [pnpm](https://pnpm.io) ([source](https://github.com/pnpm/pnpm/tree/HEAD/pnpm)) | [`10.12.4` -> `10.13.1`](https://renovatebot.com/diffs/npm/pnpm/10.12.4/10.13.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/10.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/10.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/10.12.4/10.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/10.12.4/10.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [vant](https://github.com/vant-ui/vant) ([source](https://github.com/vant-ui/vant/tree/HEAD/packages/vant)) | [`^4.9.20` -> `^4.9.21`](https://renovatebot.com/diffs/npm/vant/4.9.20/4.9.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vant/4.9.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vant/4.9.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vant/4.9.20/4.9.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vant/4.9.20/4.9.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [vue-data-ui](https://vue-data-ui.graphieros.com/) ([source](https://github.com/graphieros/vue-data-ui)) | [`^2.12.7` -> `^2.15.3`](https://renovatebot.com/diffs/npm/vue-data-ui/2.12.7/2.15.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vue-data-ui/2.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vue-data-ui/2.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vue-data-ui/2.12.7/2.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue-data-ui/2.12.7/2.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>pnpm/pnpm (pnpm)</summary> ### [`v10.13.1`](https://github.com/pnpm/pnpm/blob/HEAD/pnpm/CHANGELOG.md#10131) [Compare Source](https://github.com/pnpm/pnpm/compare/v10.13.0...v10.13.1) ##### Patch Changes - Run user defined pnpmfiles after pnpmfiles of plugins. ### [`v10.13.0`](https://github.com/pnpm/pnpm/blob/HEAD/pnpm/CHANGELOG.md#10130) [Compare Source](https://github.com/pnpm/pnpm/compare/v10.12.4...v10.13.0) ##### Minor Changes - Added the possibility to load multiple pnpmfiles. The `pnpmfile` setting can now accept a list of pnpmfile locations [#&#8203;9702](https://github.com/pnpm/pnpm/pull/9702). - pnpm will now automatically load the `pnpmfile.cjs` file from any [config dependency](https://pnpm.io/config-dependencies) named `@pnpm/plugin-*` or `pnpm-plugin-*` [#&#8203;9729](https://github.com/pnpm/pnpm/pull/9729). The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the `pnpmfile.cjs` files in the config dependencies can be explicitly listed using the `pnpmfile` setting in `pnpm-workspace.yaml`. ##### Patch Changes - When patching dependencies installed via `pkg.pr.new`, treat them as Git tarball URLs [#&#8203;9694](https://github.com/pnpm/pnpm/pull/9694). - Prevent conflicts between local projects' config and the global config in `dangerouslyAllowAllBuilds`, `onlyBuiltDependencies`, `onlyBuiltDependenciesFile`, and `neverBuiltDependencies` [#&#8203;9628](https://github.com/pnpm/pnpm/issues/9628). - Sort keys in `pnpm-workspace.yaml` with deep [#&#8203;9701](https://github.com/pnpm/pnpm/pull/9701). - The `pnpm rebuild` command should not add pkgs included in `ignoredBuiltDependencies` to `ignoredBuilds` in `node_modules/.modules.yaml` [#&#8203;9338](https://github.com/pnpm/pnpm/issues/9338). - Replaced `shell-quote` with `shlex` for quoting command arguments [#&#8203;9381](https://github.com/pnpm/pnpm/issues/9381). </details> <details> <summary>vant-ui/vant (vant)</summary> ### [`v4.9.21`](https://github.com/youzan/vant/releases/tag/v4.9.21) [Compare Source](https://github.com/vant-ui/vant/compare/v4.9.20...v4.9.21) <!-- Release notes generated using configuration in .github/release.yml at v4.9.21 --> #### What's Changed ##### New Features 🎉 - feat(Tab): Add useAllTabStatus and replace useTabStatus by [@&#8203;yuhengshen](https://github.com/yuhengshen) in https://github.com/youzan/vant/pull/13516 ##### Bug Fixes 🐞 - fix(Progress): width overflow by [@&#8203;pany-ang](https://github.com/pany-ang) in https://github.com/youzan/vant/pull/13519 - fix(FloatingBubble): should handle negative gap values by [@&#8203;inottn](https://github.com/inottn) in https://github.com/youzan/vant/pull/13544 - fix(checkbox): apply 'checked-color' when 'checkbox' is indeterminate by [@&#8203;keeplearning66](https://github.com/keeplearning66) in https://github.com/youzan/vant/pull/13553 ##### Other Changes - chore(deps): update dependency terser to ^5.43.1 by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/youzan/vant/pull/13510 - chore(deps): update dependency commander to v14 by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/youzan/vant/pull/13511 - chore(deps): update dependency [@&#8203;rslib/core](https://github.com/rslib/core) to ^0.10.4 by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/youzan/vant/pull/13529 - chore(deps): update dependency prettier to ^3.6.2 - autoclosed by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/youzan/vant/pull/13541 - chore(deps): update dependency [@&#8203;babel/core](https://github.com/babel/core) to ^7.28.0 by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/youzan/vant/pull/13549 - chore(deps): update rsbuild to v1.4.6 by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/youzan/vant/pull/13540 - chore(deps): update all patch dependencies by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/youzan/vant/pull/13528 - chore(deps): update dependency [@&#8203;types/node](https://github.com/types/node) to ^22.16.3 by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/youzan/vant/pull/13550 #### New Contributors - [@&#8203;keeplearning66](https://github.com/keeplearning66) made their first contribution in https://github.com/youzan/vant/pull/13553 **Full Changelog**: https://github.com/youzan/vant/compare/v4.9.20...v4.9.21 </details> <details> <summary>graphieros/vue-data-ui (vue-data-ui)</summary> ### [`v2.15.3`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.15.3) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.15.2...v2.15.3) #### All charts with fullscreen feature [#&#8203;222](https://github.com/graphieros/vue-data-ui/issues/222) - Fix dimension calculations leading to scrollbars appearing when escaping fullscreen mode on a responsive chart #### VueUiXy - Fix console error when toggling config attributes related to size calculations in responsive mode [#&#8203;225](https://github.com/graphieros/vue-data-ui/issues/225) - Fix wrong stacking order of area labels [#&#8203;221](https://github.com/graphieros/vue-data-ui/issues/221) ### [`v2.15.2`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.15.2) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.15.1...v2.15.2) #### VueUiDonut & VueUiNestedDonuts [#&#8203;223](https://github.com/graphieros/vue-data-ui/issues/223) Add config attribute to set color of the donut arc when data is empty: `config.style.chart.layout.donut: string // default: '#E1E5E8'` ### [`v2.15.1`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.15.1) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.15.0...v2.15.1) #### VueUiNestedDonuts Improve graceful layout management of empty data. ### [`v2.15.0`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.15.0) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.14.2...v2.15.0) #### VueUiDonut [#&#8203;218](https://github.com/graphieros/vue-data-ui/issues/218) - Remove opacity on donut arcs #### Multi-line labels [#&#8203;217](https://github.com/graphieros/vue-data-ui/issues/217) - Generate multiline datalabels when they include a line break `\n` Example: `"This is a long\nlabel to show"` The table below shows which components accept this feature and where: | Component | Label displayed | Where to use line breaks | | --------------------------- | -------------------- | ------------------------------------------------------ | | VueUiXy | Time labels (x axis) | config.chart.grid.labels.xAxisLabels.values | | VueUiDonutEvolution | Time labels (x axis) | config.style.chart.layout.grid.xAxis.dataLabels.values | | VueUiHistoryPlot | Plot labels | dataset names | | VueUiParallelCoordinatePlot | Axis labels | config.style.chart.yAxis.labels.axisNames | | VueUiQuadrant | Plot labels | dataset names | | VueUiQuickChart | Time labels (x axis) | config.xyPeriods | | VueUiRidgeline | Time labels (x axis) | config.style.chart.xAxis.labels.values | | VueUiStackbar | Time labels (x axis) | config.style.chart.grid.x.timeLabels.values | | VueUiStripPlot | x axis labels | dataset names | #### VueUiWaffle - Show graceful layout when all datapoint values are empty arrays ### [`v2.14.2`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.14.2) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.14.1...v2.14.2) #### VueUiDonut & VueUiNestedDonuts [#&#8203;215](https://github.com/graphieros/vue-data-ui/issues/215) - Add width and height config attributes: ```js const config = ref({ style: { chart: { width: 512, height: 360 } } }) ``` Note: these dimensions will be ignored when `responsive` is set to `true`. Docs are up to date: [VueUiDonut](https://vue-data-ui.graphieros.com/docs#vue-ui-donut) [VueUiNestedDonuts](https://vue-data-ui.graphieros.com/docs#vue-ui-nested-donuts) ### [`v2.14.1`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.14.1) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.14.0...v2.14.1) #### VueUiXy - Improve series layout in stacked mode - Add config option to set x axis crosshairs always on the bottom baseline, or on zero: ```js config.chart.grid.labels.xAxis.crosshairsAlwaysAtZero: boolean // default: false (previous behavior, always on the bottom baseline) ``` ### [`v2.14.0`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.14.0) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.13.4...v2.14.0) #### Date time formatter A config datetime formatter was added to the following components, to manage timestamp x axis values formatting: - VueUiXy - VueUiXyCanvas - VueUiStackbar - VueUiRidgeline - VueUiDonutEvolution - VueUiQuickChart ```ts datetimeFormatter: { enable: boolean // default: false locale: string // default: 'en' useUTC: boolean // default: false januaryAsYear: boolean // default: false options: { year: string // default: 'yyyy' month: string // default: "MMM 'yy" day: string // default: 'dd MMM' hour: string // default: 'HH:mm' minute: string // default: 'HH:mm:ss' second: string // default: 'HH:mm:ss' } } ``` [DOCS](https://vue-data-ui.graphieros.com/docs#vue-ui-xy) are up to date ### [`v2.13.4`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.13.4) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.13.3...v2.13.4) #### Components with dual range zoom - Merge tooltips when they collide: https://github.com/user-attachments/assets/79028bdd-abf3-484c-98e5-66837f09923d ### [`v2.13.3`](https://github.com/graphieros/vue-data-ui/releases/tag/v2.13.3) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.13.2...v2.13.3) #### VueUiXy - Add `responsiveProportionalSizing` config option, (true by default = previous behavior). Set to true, it disables the text elements automatic resizing in responsive mode. [#&#8203;212](https://github.com/graphieros/vue-data-ui/issues/212) - Add `useNiceScale` config option to force a nice scale (false by default = previous behavior) - Fix errors on straight line datasets when dataset starts with a null value and `cutNullValues` is true - Add config options for xAxis and yAxis crosshair markers - Add optional yAxis annotations, to draw either a line or an area following one or two y values, with a label. You can create multiple annotations: ![image](https://github.com/user-attachments/assets/77811c94-ba70-4193-afd8-9b4f44807cd4) [Docs](https://vue-data-ui.graphieros.com/docs#vue-ui-xy) and [examples](https://vue-data-ui.graphieros.com/examples/categories#vue-ui-xy) are up to date #### All charts with user options - Add optional config callbacks to override default button behavior ```ts const config = ref({ userOptions: { // These callbacks will be called when user options buttons are clicked. callbacks: { pdf: (chart: HTMLElement) => { // use your own pdf solution }, img: (base64: string) => { // do whatever you want with the base 64 image data of the chart }, csv: (csvContent: string) => { // do whatever you want with the csv data }, // all other buttons have also their callbacks (no params), with the same name as the button } } }) ``` ### [`v2.13.2`](https://github.com/graphieros/vue-data-ui/compare/v2.13.1...v2.13.2) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.13.1...v2.13.2) ### [`v2.13.1`](https://github.com/graphieros/vue-data-ui/compare/2d2922acedf09e3c3faa05578b32aa1cba9c8e88...v2.13.1) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/2d2922acedf09e3c3faa05578b32aa1cba9c8e88...v2.13.1) ### [`v2.13.0`](https://github.com/graphieros/vue-data-ui/compare/v2.12.7...2d2922acedf09e3c3faa05578b32aa1cba9c8e88) [Compare Source](https://github.com/graphieros/vue-data-ui/compare/v2.12.7...2d2922acedf09e3c3faa05578b32aa1cba9c8e88) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMS4xIiwidXBkYXRlZEluVmVyIjoiNDEuMzEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
renovatebot added 1 commit 2025-07-06 23:49:18 +08:00
chore(deps): update dependency vue-data-ui to ^2.13.1
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
/ surge (push) Successful in 3m32s
/ playwright (push) Successful in 1m43s
/ cleanup_surge (push) Successful in 11s
/ lint-build-and-check (push) Successful in 6m59s
b83675603e
renovatebot force-pushed renovate/all-minor-patch from b83675603e to 228dc218f3 2025-07-07 08:43:35 +08:00 Compare
renovatebot changed title from chore(deps): update dependency vue-data-ui to ^2.13.1 to chore(deps): update dependency vue-data-ui to ^2.13.3 2025-07-07 08:44:00 +08:00
renovatebot force-pushed renovate/all-minor-patch from 228dc218f3 to 183183b51d 2025-07-07 16:38:22 +08:00 Compare
renovatebot changed title from chore(deps): update dependency vue-data-ui to ^2.13.3 to chore(deps): update dependency vue-data-ui to ^2.13.4 2025-07-07 16:38:48 +08:00
renovatebot force-pushed renovate/all-minor-patch from 183183b51d to 993e8cb663 2025-07-07 19:32:30 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 993e8cb663 to e4073c8f92 2025-07-08 15:42:28 +08:00 Compare
renovatebot changed title from chore(deps): update dependency vue-data-ui to ^2.13.4 to chore(deps): update dependency vue-data-ui to ^2.14.0 2025-07-08 15:43:01 +08:00
renovatebot force-pushed renovate/all-minor-patch from e4073c8f92 to 871a9527d5 2025-07-08 18:46:14 +08:00 Compare
renovatebot changed title from chore(deps): update dependency vue-data-ui to ^2.14.0 to chore(deps): update all non-major dependencies 2025-07-08 18:46:46 +08:00
renovatebot force-pushed renovate/all-minor-patch from 871a9527d5 to 894fb60481 2025-07-08 23:39:24 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 894fb60481 to 539d70fbbd 2025-07-09 02:06:32 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 539d70fbbd to cd868edb1b 2025-07-09 14:07:37 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from cd868edb1b to 21187546f7 2025-07-09 19:59:33 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 21187546f7 to b110af4f18 2025-07-09 22:48:01 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from b110af4f18 to 2cf6b8a9cd 2025-07-10 16:23:35 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 2cf6b8a9cd to e1315ced4d 2025-07-10 16:26:44 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from e1315ced4d to c0e1ec4cb7 2025-07-10 18:48:44 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from c0e1ec4cb7 to b97edbf7c0 2025-07-10 18:53:22 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from b97edbf7c0 to 4da588153a 2025-07-11 00:12:30 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 4da588153a to 51b6db1d21 2025-07-11 02:47:18 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 51b6db1d21 to 77cffe688d 2025-07-11 03:14:40 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 77cffe688d to f7a862e6f9 2025-07-11 17:03:21 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from f7a862e6f9 to 75ffbb8eb0 2025-07-12 01:58:37 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 75ffbb8eb0 to 12257f5769 2025-07-12 05:53:27 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 12257f5769 to 72959b4c6c 2025-07-12 15:10:03 +08:00 Compare
renovatebot force-pushed renovate/all-minor-patch from 72959b4c6c to c2700ec516 2025-07-12 17:55:02 +08:00 Compare
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
/ surge (push) Successful in 3m20s
/ playwright (push) Successful in 1m47s
/ cleanup_surge (push) Successful in 9s
/ lint-build-and-check (push) Successful in 6m7s
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all-minor-patch:renovate/all-minor-patch
git checkout renovate/all-minor-patch
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: examples/vue-ts-example#352
No description provided.