Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 2, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@module-federation/storybook-addon (source) ^3.0.10 -> ^3.0.11 age adoption passing confidence
@rsbuild/core (source) ~1.1.6 -> ~1.1.7 age adoption passing confidence
@storybook/addon-essentials (source) ^8.4.5 -> ^8.4.6 age adoption passing confidence
@storybook/addon-interactions (source) ^8.4.5 -> ^8.4.6 age adoption passing confidence
@storybook/addon-links (source) ^8.4.5 -> ^8.4.6 age adoption passing confidence
@storybook/addon-onboarding (source) ^8.4.5 -> ^8.4.6 age adoption passing confidence
@storybook/blocks (source) ^8.4.5 -> ^8.4.6 age adoption passing confidence
@storybook/react (source) ^8.4.5 -> ^8.4.6 age adoption passing confidence
@storybook/test (source) ^8.4.5 -> ^8.4.6 age adoption passing confidence
memfs ^4.14.0 -> ^4.14.1 age adoption passing confidence
nx (source) ^20.1.3 -> ^20.1.4 age adoption passing confidence
rslib (source) 0.1.0 -> 0.1.1 age adoption passing confidence
storybook (source) ^8.4.5 -> ^8.4.6 age adoption passing confidence
zx (source) ^8.2.2 -> ^8.2.4 age adoption passing confidence

Release Notes

web-infra-dev/rsbuild (@​rsbuild/core)

v1.1.7

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.1.6...v1.1.7

storybookjs/storybook (@​storybook/addon-essentials)

v8.4.6

Compare Source

storybookjs/storybook (@​storybook/addon-onboarding)

v8.4.6

Compare Source

8.4.6

streamich/memfs (memfs)

v4.14.1

Compare Source

Bug Fixes
  • accept passing a FileHandle to createReadStream and createWriteStream (#​1077) (af163dc)
nrwl/nx (nx)

v20.1.4

Compare Source

20.1.4 (2024-11-28)

🚀 Features
  • misc: replace tutorials with social links in create-nx-workspace (#​29085)
  • nx-dev: update top-level navbar (0f330590b7)
🩹 Fixes
  • angular: ngrx-root-store generator check ngModule path (#​29068)
  • core: don't generate nxCloudId if running nx connect through nx console (#​29060)
  • core: update to the async version of getting powerpack information (#​29088)
  • misc: update artifact generator option descriptions and cleanup leftovers (#​29077)
  • module-federation: use 'hoisted' runtime for node to prevent issues with eager sharing (#​29104)
  • nest: Fix generators (guard, interceptor etc...) path to not duplicate when provided (#​29084)
  • nest: update project config to enable artifacts to be built as dev (#​29110)
  • nextjs: ensure next apps config is correctly checked when using jest (#​29066)
  • nextjs: Add support for next.config.ts for executors (#​29071)
❤️ Thank You
web-infra-dev/rslib (rslib)

v0.1.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: v0.1.0...v0.1.1

google/zx (zx)

v8.2.4: – Leaky Faucet

Compare Source

  • Fixed bun async_hooks compatibility #​959

v8.2.3: – Golden Wrench

Compare Source

This release continues the work on pipe API enhancements:

const { stdout } = await $({ halt: true })`echo "hello"`
 .pipe`awk '{print $1" world"}'`
 .pipe`tr '[a-z]' '[A-Z]'`
 .run()

stdout // 'HELLO WORLD'
  • Let $ be piped directly from streams #​953
const getUpperCaseTransform = () =>
  new Transform({
    transform(chunk, encoding, callback) {
      callback(null, String(chunk).toUpperCase())
    },
  })

// $ > stream (promisified) > $ 
const o1 = await $`echo "hello"`
  .pipe(getUpperCaseTransform())
  .pipe($`cat`)

o1.stdout //  'HELLO\n'

// stream > $
const file = tempfile()
await fs.writeFile(file, 'test')
const o2 = await fs
  .createReadStream(file)
  .pipe(getUpperCaseTransform())
  .pipe($`cat`)

o2.stdout //  'TEST'
const file = tempfile()
const fileStream = fs.createWriteStream(file)
const p = $`echo "hello"`
  .pipe(getUpperCaseTransform())
  .pipe(fileStream)
const o = await p

p instanceof WriteStream             // true
o instanceof WriteStream             // true
o.stdout                             // 'hello\n'
o.exitCode;                          // 0
(await fs.readFile(file)).toString() // 'HELLO\n'

We've also slightly tweaked up dist contents for better compatibility with bundlers #​957


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.

@netlify
Copy link

netlify bot commented Dec 2, 2024

Deploy Preview for rslib ready!

Name Link
🔨 Latest commit ca947d1
🔍 Latest deploy log https://app.netlify.com/sites/rslib/deploys/674d2aa092020600084fa670
😎 Deploy Preview https://deploy-preview-500--rslib.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Timeless0911
Timeless0911 previously approved these changes Dec 2, 2024
@codspeed-hq
Copy link

codspeed-hq bot commented Dec 2, 2024

CodSpeed Performance Report

Merging #500 will not alter performance

Comparing renovate/all-patch (ca947d1) with main (97909c2)

Summary

✅ 5 untouched benchmarks

@Timeless0911 Timeless0911 merged commit 2193677 into main Dec 2, 2024
18 checks passed
@Timeless0911 Timeless0911 deleted the renovate/all-patch branch December 2, 2024 03:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants