Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
cexbrayat merged 1 commit intomainfromrenovate/all-minor-patch
Jul 16, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovaterenovatebot commentedJul 14, 2025
edited
Loading

This PR contains the following updates:

PackageChangeAgeConfidence
@playwright/test (source)^1.53.2 ->^1.54.1ageconfidence
@types/node (source)^22.16.0 ->^22.16.4ageconfidence
cypress (source)^14.5.1 ->^14.5.2ageconfidence
pnpm (source)10.12.4 ->10.13.1ageconfidence
rolldown (source)1.0.0-beta.24 ->1.0.0-beta.27ageconfidence
zx (source)^8.6.1 ->^8.7.1ageconfidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.54.1

Compare Source

v1.54.0

Compare Source

Highlights

  • New cookie propertypartitionKey inbrowserContext.cookies() andbrowserContext.addCookies(). This property allows to save and restore partitioned cookies. SeeCHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New optionnoSnippets to disable code snippets in the html report.

    import{defineConfig}from'@​playwright/test';exportdefaultdefineConfig({reporter:[['html',{noSnippets:true}]]});
  • New propertylocation in test annotations, for example intestResult.annotations andtestInfo.annotations. It shows where the annotation liketest.skip ortest.fixme was added.

Command Line

  • New option--user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

    npx playwright codegen --user-data-dir=./user-data
  • Option-gv has been removed from thenpx playwright test command. Use--grep-invert instead.

  • npx playwright open does not open the test recorder anymore. Usenpx playwright codegen instead.

Miscellaneous

  • Support for Node.js 16 has been removed.
  • Support for Node.js 18 has been deprecated, and will be removed in the future.

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140
cypress-io/cypress (cypress)

v14.5.2

Compare Source

Changelog:https://docs.cypress.io/app/references/changelog#14-5-2

pnpm/pnpm (pnpm)

v10.13.1

Compare Source

Patch Changes
  • Run user defined pnpmfiles after pnpmfiles of plugins.

v10.13.0

Compare Source

Minor Changes
  • Added the possibility to load multiple pnpmfiles. Thepnpmfile setting can now accept a list of pnpmfile locations#​9702.

  • pnpm will now automatically load thepnpmfile.cjs file from anyconfig dependency named@pnpm/plugin-* orpnpm-plugin-*#​9729.

    The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to thepnpmfile.cjs files in the config dependencies can be explicitly listed using thepnpmfile setting inpnpm-workspace.yaml.

Patch Changes
  • When patching dependencies installed viapkg.pr.new, treat them as Git tarball URLs#​9694.
  • Prevent conflicts between local projects' config and the global config indangerouslyAllowAllBuilds,onlyBuiltDependencies,onlyBuiltDependenciesFile, andneverBuiltDependencies#​9628.
  • Sort keys inpnpm-workspace.yaml with deep#​9701.
  • Thepnpm rebuild command should not add pkgs included inignoredBuiltDependencies toignoredBuilds innode_modules/.modules.yaml#​9338.
  • Replacedshell-quote withshlex for quoting command arguments#​9381.
rolldown/rolldown (rolldown)

v1.0.0-beta.27

Compare Source

🚀 Features
🐛 Bug Fixes
⚡ Performance
⚙️ Miscellaneous Tasks

v1.0.0-beta.26

Compare Source

🐛 Bug Fixes
⚙️ Miscellaneous Tasks

v1.0.0-beta.25

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
🧪 Testing
  • rust: automatically run extented test forminify_internal_exports: true (#​5213) by@​hyf0
  • rust: add basic tests for minifying internal exports (#​5211) by@​hyf0
⚙️ Miscellaneous Tasks
google/zx (zx)

v8.7.1: — Pipe Whisperer

Compare Source

Continuesv8.7.0: handles newps() corner case and improves$.kill mechanics on Windows#​1266#​1267#​1269webpod/ps#14

v8.7.0: — Solder Savior

Compare Source

Important fixes for annoying flaky bugs

kill() 🐞

We've found an interesting case#​1262

constp=$`sleep 1000`const{pid}=p// 12345awaitp.kill()

If we kill the process again, the result might be unexpected:

awaitps({pid})// {pid: 12345, ppid: 67890, command: 'another command', ...}p.kill()

This happens because thepid may be reused by the system for another process, so we've added extra assertions to prevent indeterminacy:

p.kill()// Error: Too late to kill the process.p.abort()// Error: Too late to abort the process.

ps() 🐛

  • ps() useswmic internally on Windows, it relies onfragile heuristics to parse the output. We have improved this logic to handle more format variants, but over time (in v9 maybe) we're planning to change the approach.

#​1256#​1263webpod/ps#12webpod/ingrid#6

const[root]=awaitps.lookup({pid:process.pid})assert.equal(root.pid,process.pid)

v8.6.2: — Flow Unstoppable

Compare Source

Fixes$.prefix &$.postfix values settings via env variables#​1261#​1260


Configuration

📅Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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. Getconfig help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated byMend Renovate. View therepository job log.

@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 2 times, most recently frombf91ceb to79d93c3CompareJuly 15, 2025 09:04
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from79d93c3 toc9465b6CompareJuly 16, 2025 00:04
@cexbrayatcexbrayat merged commit1f5d8e1 intomainJul 16, 2025
52 checks passed
@renovaterenovatebot deleted the renovate/all-minor-patch branchJuly 16, 2025 07:39
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@cexbrayatcexbrayatcexbrayat approved these changes

Assignees
No one assigned
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

1 participant
@cexbrayat

[8]ページ先頭

©2009-2025 Movatter.jp