FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

chore(deps): update patch npm dependencies by renovate[bot] · Pull Request #15769 · web-infra-dev/rspack · GitHub

chore(deps): update patch npm dependencies - #15769

Merged
chenjiahan merged 1 commit into
mainfrom
renovate/patch-npm-dependencies
Sep 20, 2026
Merged

chenjiahan merged 1 commit into
mainfrom
renovate/patch-npm-dependencies

Conversation

renovate Bot commented Sep 18, 2026
edited
Loading

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rspress/core (source) ^2.0.21 → ^2.0.22
@rspress/plugin-algolia (source) ^2.0.21 → ^2.0.22
@rspress/plugin-client-redirects (source) ^2.0.21 → ^2.0.22
@rspress/plugin-rss (source) ^2.0.21 → ^2.0.22
@rspress/plugin-sitemap (source) ^2.0.21 → ^2.0.22
@rstackjs/create-toolkit 2.2.6 → 2.2.7
@testing-library/dom ^10.4.1 → ^10.4.2
cspell (source) ^10.3.0 → ^10.3.3
happy-dom ^20.14.3 → ^20.14.5
heading-case ^2.0.1 → ^2.0.2
jest-diff (source) ^30.5.1 → ^30.5.2
markdown-to-jsx (source) ^9.10.2 → ^9.10.3
open ^11.0.2 → ^11.0.4
prettier (source) 3.9.6 → 3.9.8
vue (source) ^3.5.42 → ^3.5.43

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

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

v2.0.22

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.21...v2.0.22

rstackjs/create-toolkit (@​rstackjs/create-toolkit)

v2.2.7

Compare Source

What's Changed

Full Changelog: rstackjs/create-toolkit@v2.2.6...v2.2.7

testing-library/dom-testing-library (@​testing-library/dom)

v10.4.2

Compare Source

Bug Fixes
streetsidesoftware/cspell (cspell)

v10.3.3

Compare Source

Fixes
fix: Add `--json` option to check text for use with AI (#​9254)
fix: Add --json option to check text for use with AI (#​9254)

This pull request adds support for a --json output mode to the check CLI command, enabling results to be emitted as structured JSON per file. It also introduces comprehensive test coverage for the new JSON output behavior, including error handling and exit code logic.

CLI Enhancements:

  • Added a --json flag to the check command, allowing users to receive results in JSON format. This includes proper handling of multiple files and error cases, such as missing files. [1] [2]
  • Updated the exit code logic to work with both standard and JSON output, respecting the --no-exit-code flag. [1] [2]

Implementation Details:

  • Introduced separate processing functions: processRequestAnsi for standard output and processRequestJSON for JSON output, with the latter aggregating results and errors per file. [1] [2]
  • Added a helper function to detect missing files and report them as JSON errors.

Testing Improvements:

  • Expanded CLI test coverage to include various --json scenarios, such as files with spelling errors, missing files, and the interaction with --no-exit-code. [1] [2]
  • Added utility functions and interfaces in tests to parse and validate the JSON output.

fix: Mark ParsedTags as read only. (#​9253)
fix: Mark ParsedTags as read only. (#​9253)

This pull request makes a small but important change to the ParsedText interface in several files, improving type safety by marking the tags property as a read-only type. This ensures that the tags associated with a parsed text segment cannot be modified after creation.

  • Updated the tags property in the ParsedText interface to use Readonly<ParsedTags> instead of ParsedTags, making the tags immutable in the following files:
    • packages/cspell-types/api/Parser/index.d.mts
    • packages/cspell-types/api/index.d.mts
    • packages/cspell-types/src/Parser/parser.ts

fix: Make sure Parser and DocumentParser can be used together. (#​9252)
fix: Make sure Parser and DocumentParser can be used together. (#​9252)

This pull request enhances the parser interface definitions in the cspell-types package to provide better flexibility and clarity for parser implementations. The main changes introduce optional parseDocument and parse methods to both the Parser and DocumentParser interfaces, across both type declaration and source files.

Parser interface enhancements:

  • Added an optional parseDocument method to the Parser interface, allowing parsers to optionally implement document-based parsing. (packages/cspell-types/api/Parser/index.d.mts [1] packages/cspell-types/api/index.d.mts [2] packages/cspell-types/src/Parser/parser.ts [3]
  • Added an optional parse method to the DocumentParser interface, enabling parsers to optionally implement content-and-filename-based parsing. (packages/cspell-types/api/Parser/index.d.mts [1] packages/cspell-types/api/index.d.mts [2] packages/cspell-types/src/Parser/parser.ts [3]

v10.3.2

Compare Source

Fixes
fix: Add tags to ParsedText (#​9237)
fix: Add tags to ParsedText (#​9237)

This pull request introduces the concept of "tags" for parsed text segments in the CSpell types, allowing each segment of text to be annotated with a set of named tags. These tags can hold boolean, string, or undefined values, supporting richer metadata for parsers and downstream consumers. The changes affect both the TypeScript source and the type definitions.

The most important changes are:

Tagging Support for Parsed Text
  • Added a new optional tags property to the ParsedText interface, allowing each parsed text segment to carry a set of tags as metadata. (ParsedText in parser.ts, index.d.mts, index.d.mts) [1] [2] [3]
  • Introduced the ParsedTag type (boolean | string | undefined) and the ParsedTags interface (a map of tag names to ParsedTag values) to define the structure of tags. (parser.ts, index.d.mts, index.d.mts) [1] [2] [3]
Type Exports and API Surface
  • Updated exports throughout the codebase to include ParsedTag and ParsedTags, making these types available to consumers. (src/Parser/index.ts, src/index.ts, index.d.mts, index.d.mts) [1] [2] [3] [4]
  • Changed the export style in src/Parser/index.mts from export * to export type *, ensuring only types are exported.

These changes lay the groundwork for parsers and other tools to annotate text with structured metadata, improving extensibility and downstream processing.


v10.3.1

Compare Source

Fixes
fix: CSpell-Tools support replacements (#​9205)
fix: CSpell-Tools support replacements (#​9205)

Support replacing word fragments before adding the word to the dictionary.

capricorn86/happy-dom (happy-dom)

v20.14.5

Compare Source

v20.14.4

Compare Source

👷‍♂️ Patch fixes
rstackjs/heading-case (heading-case)

v2.0.2

Compare Source

What's Changed

Full Changelog: rstackjs/heading-case@v2.0.1...v2.0.2

jestjs/jest (jest-diff)

v30.5.2

Compare Source

Features
  • [@jest/transform] Strip TypeScript types with Node when no transformer claims a .ts, .mts or .cts file (#​16421)
Fixes
  • [jest-core, jest-haste-map, jest-transform] Keep require('../package.json') external when bundling, so jest --version and the transform and haste-map cache keys report the released version instead of the previous one (#​16422)
  • [jest-each] Escape a table row's keys before building the $variable interpolation RegExp, so a column name such as count(*) no longer fails the whole table with Invalid regular expression, and a . or | in a column name is matched literally (#​16345)
  • [@jest/source-map] Resolve absolute Windows paths in a source map's sources and sourceRoot again, instead of appending them to the transformed file's directory (#​16439)
quantizor/markdown-to-jsx (markdown-to-jsx)

v9.10.3

Compare Source

Patch Changes
  • 9ce68bf: Link destinations now preserve punctuation such as underscores while markdown is streamed, preventing generated links from being changed or broken.

    Thanks Jacob Wisniewski and Jacob Wisniewski!

  • 1c8f5a3: Apply HTML tag overrides regardless of source casing (#​248)

    Thanks Yuzhong Zhang and Yuzhong Zhang!

  • 4d6add6: Shortcut reference links whose label is __proto__ or constructor no longer throw. Those labels now resolve like any other reference label.

    Fixes #​900.

sindresorhus/open (open)

v11.0.4

Compare Source

  • Fix browser/browserPrivate not detecting Safari or Brave as the default browser 6ae6196

v11.0.3

Compare Source

  • Fix Windows launches being killed when the parent process exits 734b821

prettier/prettier (prettier)

v3.9.8

Compare Source

v3.9.7

Compare Source

  • Support Angular 22.2
  • Fix regressions in v3.9

🔗 Changelog

vuejs/core (vue)

v3.5.43

Compare Source

Bug Fixes

Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • "before 8am on saturday"
  • 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 Bot added the dependencies Pull requests that update a dependency file label Sep 18, 2026
renovate Bot requested a review from chenjiahan as a code owner September 18, 2026 16:45
renovate Bot added the dependencies Pull requests that update a dependency file label Sep 18, 2026

github-actions Bot commented Sep 18, 2026
edited
Loading

Copy link
Copy Markdown
Contributor

📦 Binary Size-limit

Comparing 1be3022 to test: migrate case configs to TypeScript (batch 3) (#15776) by Jiahan Chen

🙈 Size remains the same at 68.97MB

github-actions Bot commented Sep 18, 2026
edited
Loading

Copy link
Copy Markdown
Contributor

Rsdoctor Bundle Diff Analysis

Found 5 projects in monorepo, 0 projects with changes.

📊 Quick Summary
Project Total Size Gzip Size Change Gzip Change
popular-libs 1.7 MB 529.8 KB 0 0
react-10k 5.4 MB 1.3 MB 0 0
react-1k 827.7 KB 226.6 KB 0 0
react-5k 2.6 MB 670.9 KB 0 0
ui-components 5.0 MB 1.4 MB 0 0

Generated by Rsdoctor GitHub Action

codspeed Bot commented Sep 18, 2026
edited
Loading

Copy link
Copy Markdown
Contributor

Merging this PR will not alter performance

✅ 54 untouched benchmarks
⏩ 47 skipped benchmarks1


Comparing renovate/patch-npm-dependencies (60bcbb0) with main (2a57a32)

Footnotes

  1. 47 benchmarks were skipped, so the baseline results were used instead. If they were deleted from the codebase, click here and archive them to remove them from the performance reports.

renovate Bot force-pushed the renovate/patch-npm-dependencies branch from d026ce0 to a47be1d Compare September 19, 2026 00:08
chenjiahan previously approved these changes Sep 19, 2026
chenjiahan enabled auto-merge (squash) September 19, 2026 09:44
renovate Bot force-pushed the renovate/patch-npm-dependencies branch from a47be1d to 1be3022 Compare September 19, 2026 09:46
renovate Bot force-pushed the renovate/patch-npm-dependencies branch from 1be3022 to 60bcbb0 Compare September 19, 2026 15:39
chenjiahan merged commit 2b845e3 into main Sep 20, 2026
45 of 46 checks passed
chenjiahan deleted the renovate/patch-npm-dependencies branch September 20, 2026 02:29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant


Back | FazBrowse Home | New Git URL