Skip to content

chore(deps): update dev-dependencies#931

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dev-dependencies
Open

chore(deps): update dev-dependencies#931
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dev-dependencies

Conversation

@renovate

@renovate renovate Bot commented Apr 1, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
adm-zip ^0.5.16^0.5.17 age confidence
diff ^8.0.3^8.0.4 age confidence
ethers (source) ^6.16.0^6.17.0 age confidence
fs-extra ^11.3.3^11.3.5 age confidence
js-yaml ^4.1.1^4.2.0 age confidence
prettier (source) ^3.8.1^3.8.4 age confidence
walk-sync ^4.0.1^4.0.2 age confidence

Release Notes

cthackers/adm-zip (adm-zip)

v0.5.17

Compare Source

What's Changed

New Contributors

Full Changelog: cthackers/adm-zip@v0.5.16...v0.5.17

kpdecker/jsdiff (diff)

v8.0.4

Compare Source

  • #​667 - fix another bug in diffWords when used with an Intl.Segmenter. If the text to be diffed included a combining mark after a whitespace character (i.e. roughly speaking, an accented space), diffWords would previously crash. Now this case is handled correctly.
ethers-io/ethers.js (ethers)

v6.17.0

Compare Source

  • Add requestRate throttle to calls (b48bfe3).
    • Added provider requestRate throttle support (b74b6d3).
    • Disable AlchemyProvider which does not provide the necessary API capacity for tests (1523ca8).
    • Map ResolverNotFound error to null for reverse lookup (d07cfb6).
    • Use bigint for coinType instead of number values (4f6ec03).
    • Updated AlchemyProvider endpoints for BNB (9bec2f9).
    • Added basic ENSv2 tests and fixed issues with EVM cointypes (0e9a73d).
    • Adding ENSv2 integrations from adraffy (a2d0af4).
    • Update Blockscout deffault API key and links (5647ae3).
    • Added transactionsRoot to Block (#​5077, #​5078; 5bd2ce9).
    • Preserve 301/302 method and support 307/308 (#​3106, #​5115; 999af5f).
    • Fix maxFeePerGas property for EtherscanProvider transactions (#​5080; ca45d23).
    • Added rich inspection for Network and Plugins (f2ffb86).
    • Tweaking API for Universal Resolver to be completely backward compatible (9a5c4b5).
    • Updated ENS Universal Resolver to latest API (0b3b12b).
    • Added CCIP to ENS Universal Resolver reverse resolution (982eef2).
    • Added reverse lookup for ENS UniversalResolver (9a9a11d).
    • Initial forward resolution using ENS UniversalResolver (51df7b9).
jprichardson/node-fs-extra (fs-extra)

v11.3.5

Compare Source

  • Fix ensureLink*/ensureSymlink* identical file detection on Windows (#​1068)
  • Fix error handling in timestamp preservation code (#​1065, #​1069)
  • Fix potential file descriptor leak on error in synchronous timestamp preservation code (#​1066)

v11.3.4

Compare Source

  • Fix bug where calling ensureSymlink/ensureSymlinkSync with a relative srcPath would fail if the symlink already existed (#​1038, #​1064)
nodeca/js-yaml (js-yaml)

v4.2.0

Compare Source

Added
  • Added docs/safety.md with notes about processing untrusted YAML.
  • Added maxDepth (100) loader option. Not a problem, but gives a better
    exception instead of RangeError on stack overflow.
  • Added maxMergeSeqLength (20) loader option. Not a problem after merge fix,
    but an additional restriction for safety.
  • Added sourcemaps to dist/ builds.
Changed
  • Stop resolving numbers with underscores as numeric scalars, #​627.
  • Switched dev toolchains to Vite / neostandard.
  • Updated demo.
  • Reorganized tests.
  • dist/ files are no longer kept in the repository.
Fixed
  • Fix parsing of properties on the first implicit block mapping key, #​62.
  • Fix trailing whitespace handling when folding flow scalar lines, #​307.
  • Reject top-level block scalars without content indentation, #​280.
  • Ensure numbers survive round-trip, #​737.
  • Fix test coverage for issue #​221.
  • Fix flow scalar trailing whitespace folding, #​307.
  • Fix digits in YAML named tag handles.
Security
  • Fix potential DoS via quadratic complexity in merge - deduplicate repeated
    elements (makes sense for malformed files > 10K).
prettier/prettier (prettier)

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

v3.8.3

Compare Source

diff

SCSS: Prevent trailing comma in if() function (#​18471 by @​kovsu)
// Input
$value: if(sass(false): 1; else: -1);

// Prettier 3.8.2
$value: if(
  sass(false): 1; else: -1,
);

// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

v3.8.2

Compare Source

diff

Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @&#8203; character, you should use the "&#&#8203;64;" HTML entity instead. (3:3)

<!-- Prettier 3.8.2 -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.1 -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.2 -->
@&#8203;let fn = (a) => (a ? 1 : 2);

{{ fn(a instanceof b) }}
joliss/node-walk-sync (walk-sync)

v4.0.2

Compare Source

  • Move @types/minimatch dependency to devDependencies

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • On day 1 of the month (* * 1 * *)
  • 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 requested a review from dcroote April 1, 2026 00:29
@github-actions

github-actions Bot commented Apr 1, 2026

Copy link
Copy Markdown
Contributor

Visit the preview URL for this PR (updated for commit 21038b4):

https://vitepress-docs--pr931-renovate-dev-depende-65viwpwt.web.app

(expires Thu, 09 Jul 2026 06:41:52 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Sign: e4c5db1acb62b36273dc03718b86834917dea599

@renovate renovate Bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from bae05d4 to 18ef4d2 Compare April 12, 2026 13:19
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 18ef4d2 to b1d3381 Compare April 16, 2026 09:43
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from 49b4037 to 89877ec Compare April 29, 2026 01:27
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from 89877ec to babbd52 Compare May 12, 2026 12:50
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from babbd52 to d5b8e83 Compare May 20, 2026 21:48
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from d5b8e83 to 4addc61 Compare May 30, 2026 21:34
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from 72b6ca6 to d5c2712 Compare June 17, 2026 05:56
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from 71ab0f3 to b95c997 Compare June 29, 2026 20:39
@renovate renovate Bot force-pushed the renovate/dev-dependencies branch from b95c997 to 21038b4 Compare July 2, 2026 06:40
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.

0 participants