Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 4, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^20.17.1 -> ^20.17.6 age adoption passing confidence
chromedriver ^130.0.1 -> ^130.0.2 age adoption passing confidence
eslint-plugin-cypress ^4.0.0 -> ^4.1.0 age adoption passing confidence
pinia ^2.2.4 -> ^2.2.6 age adoption passing confidence
vitest (source) ^2.1.3 -> ^2.1.4 age adoption passing confidence
vue-tsc (source) ^2.1.8 -> ^2.1.10 age adoption passing confidence
zx (source) ^8.1.9 -> ^8.2.0 age adoption passing confidence

Release Notes

giggio/node-chromedriver (chromedriver)

v130.0.2

Compare Source

cypress-io/eslint-plugin-cypress (eslint-plugin-cypress)

v4.1.0

Compare Source

Features
  • docs: publish updated readme (2bc8d5a)
vuejs/pinia (pinia)

v2.2.6

Compare Source

v2.2.5

Compare Source

Please refer to CHANGELOG.md for details.

vitest-dev/vitest (vitest)

v2.1.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
vuejs/language-tools (vue-tsc)

v2.1.10

Compare Source

google/zx (zx)

v8.2.0

Compare Source

Pipes supercharge today! 🚀

Features

  • Delayed piping. You can fill dependent streams at any time during the origin process lifecycle (even when finished) without losing data. #​914
const result = $`echo 1; sleep 1; echo 2; sleep 1; echo 3`
const piped1 = result.pipe`cat`
let piped2

setTimeout(() => {
  piped2 = result.pipe`cat`
}, 1500)

await piped1
assert.equal((await piped1).toString(), '1\n2\n3\n')
assert.equal((await piped2).toString(), '1\n2\n3\n')
const file = tempfile()
const fileStream = fs.createWriteStream(file)
const p = $`echo "hello"`
  .pipe(
    new Transform({
      transform(chunk, encoding, callback) {
        callback(null, String(chunk).toUpperCase())
      },
    })
  )
  .pipe(fileStream)

p instanceof WriteStream             // true
await p === fileStream               // true
(await fs.readFile(file)).toString() // 'HELLO\n'

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Nov 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 99f4ab6 to 565fce4 Compare November 4, 2024 06:26
@cexbrayat cexbrayat merged commit bf5d533 into main Nov 4, 2024
101 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch November 4, 2024 06:43
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