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

Bump the minor-and-patch-version-updates group with 4 updates #103

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the minor-and-patch-version-updates group with 4 updates: @seatsio/seatsio-types, @rollup/plugin-commonjs, @rollup/plugin-replace and zx.

Updates @seatsio/seatsio-types from 5.1.0 to 5.3.0

Release notes

Sourced from @​seatsio/seatsio-types's releases.

v5.3.0

What's Changed

Full Changelog: seatsio/seatsio-types@v5.2.0...v5.3.0

v5.2.0

What's Changed

Full Changelog: seatsio/seatsio-types@v5.1.0...v5.2.0

Commits

Updates @rollup/plugin-commonjs from 28.0.1 to 28.0.2

Changelog

Sourced from @​rollup/plugin-commonjs's changelog.

v28.0.2

2024-12-15

Updates

  • docs: output.exports recommendation also applies to IIFE (#1810)
Commits
  • 97e17ce chore(release): commonjs v28.0.2
  • 3efaf75 docs(commonjs): output.exports recommendation also applies to IIFE (#1810)
  • See full diff in compare view

Updates @rollup/plugin-replace from 6.0.1 to 6.0.2

Changelog

Sourced from @​rollup/plugin-replace's changelog.

v6.0.2

2024-12-15

Bugfixes

  • fix: add missing types for objectGuards option (#1818)
Commits
  • 0150c55 chore(repo): Add "directory" to package.json repository fields. (#826)
  • bed12cf chore(release): replace v2.4.2
  • 8752c2f docs(replace): document the values option (#814)
  • 4a11bbd chore(release): replace v2.4.1
  • 659ed59 fix(replace): add missing types for new preventAssignment option (#813)
  • fbcb8f2 chore(release): replace v2.4.0
  • See full diff in compare view

Updates zx from 8.2.4 to 8.3.0

Release notes

Sourced from zx's releases.

8.3.0 – Pipes of Steel

A few weeks ago zx took a part in OSS Library Night 🎉
Many thanks to the organizers and contributors who have boosted the project with their pull requests!

Today we are releasing the zx with a huge bunch of new features and improvements.

Features

API

  • Implemented [Symbol.asyncIterator] API for ProcessPromise #984 #998 #1000 Now you can iterate over the process output using for await loop from any point of the process execution.
const process = $`sleep 0.1; echo Chunk1; sleep 0.1; echo Chunk2; sleep 0.2; echo Chunk3; sleep 0.1; echo Chunk4;`
const chunks = []
await new Promise((resolve) => setTimeout(resolve, 250))
for await (const chunk of process) {
chunks.push(chunk)
}
chunks.length //  4
chunks[0]     // 'Chunk1'
chunks[3]     // 'Chunk4'

  • zx version is available via JS API #986
import { version } from 'zx'
const [major] = (version || '').split('.').map(Number)
if (major < 6)
  throw new Error('zx >= 6 is required')

Pipes

  • Enabled stream picking for pipe() #1023
const p = $`echo foo >&2; echo bar`
const o1 = (await p.pipe.stderr`cat`).toString()
const o2 = (await p.pipe.stdout`cat`).toString()
assert.equal(o1, 'foo\n')  // <- piped from stderr
assert.equal(o2, 'bar\n')  // <- stdout

  • Added signal handling on piping #992
const ac = new AbortController()
</tr></table> 

... (truncated)

Commits

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 commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 1, 2025
Bumps the minor-and-patch-version-updates group with 4 updates: [@seatsio/seatsio-types](https://github.com/seatsio/seatsio-types), [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs), [@rollup/plugin-replace](https://github.com/rollup/plugins/tree/HEAD/packages/replace) and [zx](https://github.com/google/zx).


Updates `@seatsio/seatsio-types` from 5.1.0 to 5.3.0
- [Release notes](https://github.com/seatsio/seatsio-types/releases)
- [Changelog](https://github.com/seatsio/seatsio-types/blob/main/release.mjs)
- [Commits](seatsio/seatsio-types@v5.1.0...v5.3.0)

Updates `@rollup/plugin-commonjs` from 28.0.1 to 28.0.2
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.2/packages/commonjs)

Updates `@rollup/plugin-replace` from 6.0.1 to 6.0.2
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/replace/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/babel-v6.0.2/packages/replace)

Updates `zx` from 8.2.4 to 8.3.0
- [Release notes](https://github.com/google/zx/releases)
- [Commits](google/zx@8.2.4...8.3.0)

---
updated-dependencies:
- dependency-name: "@seatsio/seatsio-types"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-version-updates
- dependency-name: "@rollup/plugin-commonjs"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-version-updates
- dependency-name: "@rollup/plugin-replace"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-version-updates
- dependency-name: zx
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-version-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/minor-and-patch-version-updates-73edf5995b branch from 10277ad to f41d6c1 Compare January 2, 2025 08:10
@mroloux mroloux merged commit 38960f0 into master Jan 2, 2025
1 check passed
@mroloux mroloux deleted the dependabot/npm_and_yarn/minor-and-patch-version-updates-73edf5995b branch January 2, 2025 08:10
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
Development

Successfully merging this pull request may close these issues.

1 participant