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): update all non-major dependencies #537

Merged
merged 1 commit into from
Jul 3, 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.1 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
cypress (source) ^13.12.0 -> ^13.13.0 age adoption passing confidence
vite (source) ^5.3.1 -> ^5.3.3 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.3.1 -> ^7.3.5 age adoption passing confidence
vue (source) ^3.4.29 -> ^3.4.31 age adoption passing confidence
vue-router ^4.3.3 -> ^4.4.0 age adoption passing confidence
vue-tsc (source) ^2.0.21 -> ^2.0.24 age adoption passing confidence
zx ^8.1.2 -> ^8.1.3 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.45.1

Compare Source

v1.45.0

Compare Source

giggio/node-chromedriver (chromedriver)

v126.0.4

Compare Source

v126.0.3

Compare Source

cypress-io/cypress (cypress)

v13.13.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-0

vitejs/vite (vite)

v5.3.3

Compare Source

v5.3.2

Compare Source

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

v7.3.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

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

Compare Source

Bug Fixes
Reverts
  • Revert "fix(reactivity): avoid infinite loop when render access a side effect computed (#​11135)" (e0df985)
  • Revert "fix(reactivity): fix side effect computed dirty level (#​11183)" (6c303ea), closes #​11183

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

Compare Source

Features
  • vscode: pop message box if new insiders version available insiders
  • vscode: if insiders versions information failed to fetch from GitHub, try to fetch from CDN insiders
  • language-service: better sfc-level tag name completion (#​4506) - Thanks @​KermanX
Bug Fixes
Refactors
  • language-server: reorganize the code structure (#​4507)
Other Changes
  • Upgrade Volar from v2.3.1 to v2.4.0-alpha.2.
  • docs: add nvim-cmp integration (#​4463) - Thanks @​RayGuo-ergou
  • docs: update mermaid
  • The following extensions have been added to Hybrid Mode’s compatibility whitelist (#​4206):
    • p42ai.refactor
    • nrwl.angular-console
    • styled-components.vscode-styled-components
    • Divlo.vscode-styled-jsx-languageserver

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 force-pushed the renovate/all-minor-patch branch 8 times, most recently from abf79ef to 33e98fb Compare July 1, 2024 22:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 33e98fb to 5e65388 Compare July 2, 2024 18:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5e65388 to 700b638 Compare July 3, 2024 06:41
@cexbrayat cexbrayat merged commit 12f0312 into main Jul 3, 2024
101 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch July 3, 2024 07:37
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.

1 participant