Thanks to visit codestin.com
Credit goes to github.com

Skip to content

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

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

Merged
merged 1 commit into from
Jun 27, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 24, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.44.1 -> ^1.45.0 age adoption passing confidence
@tanstack/vue-query (source) ^5.45.0 -> ^5.48.2 age adoption passing confidence
@types/node (source) ^20.14.5 -> ^20.14.9 age adoption passing confidence
chromedriver ^126.0.2 -> ^126.0.4 age adoption passing confidence
eslint-plugin-vuejs-accessibility ^2.3.0 -> ^2.3.1 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.3.1 -> ^7.3.4 age adoption passing confidence
vue (source) ^3.4.29 -> ^3.4.30 age adoption passing confidence
vue-router ^4.3.3 -> ^4.4.0 age adoption passing confidence
vue-tsc (source) ^2.0.21 -> ^2.0.22 age adoption passing confidence
zx ^8.1.2 -> ^8.1.3 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.45.0

Compare Source

TanStack/query (@​tanstack/vue-query)

v5.48.2

Compare Source

Version 5.48.2 - 6/26/24, 10:55 PM

Changes

Fix
  • vue-query: useQueries type inference (#​7416) (11e979e) by Damian Osipiuk

Packages

v5.48.1

Compare Source

v5.48.0

Compare Source

Version 5.48.0 - 6/25/24, 2:14 PM

Changes

Feat
  • core: Add possibility to pass a callback to enabled. (#​7566) (31b9ab4) by John

Packages

v5.47.0

Compare Source

Version 5.47.0 - 6/25/24, 12:27 PM

Changes

Feat
  • react-query: usePrefetchQuery (#​7582) (fbfe940) by Dominik Dorfmeister
Chore
Ci

Packages

giggio/node-chromedriver (chromedriver)

v126.0.4

Compare Source

v126.0.3

Compare Source

vue-a11y/eslint-plugin-vuejs-accessibility (eslint-plugin-vuejs-accessibility)

v2.3.1

Compare Source

vuejs/devtools-next (vite-plugin-vue-devtools)

v7.3.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.3.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.3.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (vue)

v3.4.30

Compare Source

Bug Fixes
Performance Improvements
vuejs/router (vue-router)

v4.4.0

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/language-tools (vue-tsc)

v2.0.22

Compare Source

Bug Fixes
Other Changes
  • Upgrade Volar from v2.3.0-alpha.14 to v2.3.1.
    • Error tolerant to contentChanges length (#​4457)
  • Add feature request template (#​4490) - Thanks @​so1ve
  • docs: fix wrong links in CHANGELOG.md (#​4475) - Thanks @​KermanX
google/zx (zx)

v8.1.3

Compare Source

Nothing special today. We just keep improving the implementation.

Features

import {$} from 'zx'
  • zx/cli exports its inners to allow more advanced usage.
    Imagine, your own CLI tool that uses zx as a base:
    #​828
#!/usr/bin/env node

import './index.mjs'
import {main} from 'zx/cli'

main()
  • Provide intermediate store configuration for fine-grained control of memory usage.
    #​650, #​849
const getFixedSizeArray = (size) => {
  const arr = []
  return new Proxy(arr, {
    get: (target, prop) =>
      prop === 'push' && arr.length >= size
        ? () => {}
        : target[prop],
  })
}
const store = {
  stdout: getFixedSizeArray(1),
  stderr: getFixedSizeArray(1),
  stdall: getFixedSizeArray(0),
}

const p = await $({ store })`echo foo`

p.stdout.trim() //  'foo'
p.toString()    // ''
  • Introduced sync methods for ps:
    #​840
import { ps } from 'zx'

const list1 = await ps()
const list2 = await tree()

// new methods
const list3 = ps.sync()
const list4 = tree.sync()

Chore


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 24, 2024
@renovate renovate bot requested a review from stanislavmihaylov as a code owner June 24, 2024 00:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a928438 to bd54731 Compare June 26, 2024 02:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bd54731 to ac9eca3 Compare June 27, 2024 00:47
@Yordan-Ramchev Yordan-Ramchev merged commit 51caa0e into main Jun 27, 2024
31 checks passed
@Yordan-Ramchev Yordan-Ramchev deleted the renovate/all-minor-patch branch June 27, 2024 05:11
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant