chore(deps): update all digest updates #90

Merged
renovate[bot] merged 1 commits from renovate/all-digest into master 2026-07-22 04:02:56 +04:00
Collaborator

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.9.53.9.6 age confidence
sass 1.101.01.101.3 age confidence
satori 0.28.10.28.2 age confidence

Release Notes

prettier/prettier (prettier)

v3.9.6

Compare Source

diff

TypeScript: Preserve quotes for methods named new (#​19621 by @​kovsu)
// Input
interface Container {
  "new"(id: string): number;
}

// Prettier 3.9.5
interface Container {
  new(id: string): number;
}

// Prettier 3.9.6
interface Container {
  "new"(id: string): number;
}
TypeScript: Support import defer (#​19624, #​19675 by @​fisker)
// Input
import defer * as foo from "foo";

// Prettier 3.9.5
import * as foo from "foo";

// Prettier 3.9.6
import defer * as foo from "foo";
JavaScript: Added a new official plugin @prettier/plugin-yuku (#​19628, #​19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @​prettier/plugin-yuku
    
  2. Add it to your .prettierrc:

    plugins:
      - "@​prettier/plugin-yuku"
    

Due to package size limitations, this plugin is not bundled with the main prettier package and must be installed separately.

For more information, check the package homepage.

Big thanks to @​arshad-yaseen for his excellent work.

sass/dart-sass (sass)

v1.101.3

Compare Source

  • No user-visible changes.
vercel/satori (satori)

v0.28.2

Compare Source

Bug Fixes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 has been generated by Mend Renovate.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.9.5` → `3.9.6`](https://renovatebot.com/diffs/npm/prettier/3.9.5/3.9.6) | ![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.9.6?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.9.5/3.9.6?slim=true) | | [sass](https://github.com/sass/dart-sass) | [`1.101.0` → `1.101.3`](https://renovatebot.com/diffs/npm/sass/1.101.0/1.101.3) | ![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.101.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.101.0/1.101.3?slim=true) | | [satori](https://github.com/vercel/satori) | [`0.28.1` → `0.28.2`](https://renovatebot.com/diffs/npm/satori/0.28.1/0.28.2) | ![age](https://developer.mend.io/api/mc/badges/age/npm/satori/0.28.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/satori/0.28.1/0.28.2?slim=true) | --- ### Release Notes <details> <summary>prettier/prettier (prettier)</summary> ### [`v3.9.6`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#396) [Compare Source](https://github.com/prettier/prettier/compare/3.9.5...3.9.6) [diff](https://github.com/prettier/prettier/compare/3.9.5...3.9.6) ##### TypeScript: Preserve quotes for methods named `new` ([#&#8203;19621](https://github.com/prettier/prettier/pull/19621) by [@&#8203;kovsu](https://github.com/kovsu)) <!-- prettier-ignore --> ```tsx // Input interface Container { "new"(id: string): number; } // Prettier 3.9.5 interface Container { new(id: string): number; } // Prettier 3.9.6 interface Container { "new"(id: string): number; } ``` ##### TypeScript: Support `import defer` ([#&#8203;19624](https://github.com/prettier/prettier/pull/19624), [#&#8203;19675](https://github.com/prettier/prettier/pull/19675) by [@&#8203;fisker](https://github.com/fisker)) <!-- prettier-ignore --> ```tsx // Input import defer * as foo from "foo"; // Prettier 3.9.5 import * as foo from "foo"; // Prettier 3.9.6 import defer * as foo from "foo"; ``` ##### JavaScript: Added a new official plugin `@prettier/plugin-yuku` ([#&#8203;19628](https://github.com/prettier/prettier/pull/19628), [#&#8203;19629](https://github.com/prettier/prettier/pull/19629) by [@&#8203;fisker](https://github.com/fisker)) `@prettier/plugin-yuku` is powered by [Yuku](https://yuku.fyi/) (A high-performance JavaScript/TypeScript compiler toolchain written in Zig). This plugin includes two new parsers: `yuku` (JavaScript syntax) and `yuku-ts` (TypeScript syntax). **To use this plugin:** 1. Install the plugin: ```bash yarn add --dev prettier @&#8203;prettier/plugin-yuku ``` 2. Add it to your `.prettierrc`: ```yaml plugins: - "@&#8203;prettier/plugin-yuku" ``` Due to package size limitations, this plugin is not bundled with the main prettier package and must be installed separately. For more information, check [the package homepage](https://github.com/prettier/prettier/tree/main/packages/plugin-yuku). Big thanks to [@&#8203;arshad-yaseen](https://github.com/arshad-yaseen) for his excellent work. </details> <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.101.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#11013) [Compare Source](https://github.com/sass/dart-sass/compare/1.101.0...1.101.3) - No user-visible changes. </details> <details> <summary>vercel/satori (satori)</summary> ### [`v0.28.2`](https://github.com/vercel/satori/releases/tag/0.28.2) [Compare Source](https://github.com/vercel/satori/compare/0.28.1...0.28.2) ##### Bug Fixes - replace Yoga build flag for browsers ([#&#8203;774](https://github.com/vercel/satori/issues/774)) ([dc2e1c5](https://github.com/vercel/satori/commit/dc2e1c512209a4c8a399c44877e25fb9515fce76)), closes [#&#8203;749](https://github.com/vercel/satori/issues/749) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNjMuMyIsInVwZGF0ZWRJblZlciI6IjQzLjE2My4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tYXRlZCIsImRlcGVuZGVuY2llcyJdfQ==-->
renovate[bot] added 1 commit 2026-07-22 04:02:53 +04:00
chore(deps): update all digest updates
Test / npm test (pull_request) Successful in 43s
RenovateBot / renovate (push) Successful in 36s
Test / npm test (push) Successful in 46s
568eba94fb
renovate[bot] scheduled this pull request to auto merge when all checks succeed 2026-07-22 04:02:54 +04:00
renovate[bot] merged commit 568eba94fb into master 2026-07-22 04:02:56 +04:00
renovate[bot] deleted branch renovate/all-digest 2026-07-22 04:02:57 +04:00
Sign in to join this conversation.
No Reviewers
No labels
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: valentineus/popov.link#90