docs: migrate input options content from options to auto gen docs#7663
docs: migrate input options content from options to auto gen docs#7663
Conversation
…g exports options
…ns in input and checks configurations
✅ Deploy Preview for rolldown-rs canceled.
|
There was a problem hiding this comment.
Pull request overview
This PR migrates documentation content from manually written options to auto-generated documentation. The changes add comprehensive JSDoc comments to TypeScript interfaces and create separate markdown documentation files that can be included via references.
Key Changes
- Enhanced TreeshakingOptions with detailed inline documentation for all properties
- Added comprehensive JSDoc comments to InputOptions properties
- Created separate markdown documentation files for reusable content (tsconfig, platform, external, etc.)
- Improved consistency in documentation formatting with standardized @example and @default tags
Reviewed changes
Copilot reviewed 9 out of 10 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
packages/rolldown/src/types/module-side-effects.ts |
Added extensive JSDoc documentation to TreeshakingOptions type including moduleSideEffects, annotations, manualPureFunctions, and other tree-shaking related properties |
packages/rolldown/src/options/input-options.ts |
Enhanced InputOptions with JSDoc comments for input, external, resolve options, platform, treeshake, experimental features, and other configuration properties |
packages/rolldown/src/options/generated/checks-options.ts |
Added detailed documentation for pluginTimings option explaining detection thresholds and performance measurement |
packages/rolldown/src/options/docs/tsconfig.md |
New markdown file documenting tsconfig option with auto-discovery mode, explicit paths, and usage examples |
packages/rolldown/src/options/docs/shim-missing-exports.md |
New markdown file explaining shimMissingExports with practical examples |
packages/rolldown/src/options/docs/preserve-entry-signatures.md |
New markdown file detailing preserve entry signatures behavior, facade chunks, and per-entry overrides |
packages/rolldown/src/options/docs/platform.md |
New markdown file documenting platform options (node, browser, neutral) with examples and differences from esbuild |
packages/rolldown/src/options/docs/input.md |
New markdown file showing input option examples for single, multiple, and named entries |
packages/rolldown/src/options/docs/external.md |
New markdown file covering external option patterns, performance warnings, and best practices |
packages/rolldown/src/options/docs/context.md |
New markdown file explaining context option and its default behavior across different formats |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com> Signed-off-by: Michael Dong <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Michael Dong <[email protected]>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 9 out of 9 changed files in this pull request and generated 5 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <[email protected]> Signed-off-by: Michael Dong <[email protected]>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 9 out of 9 changed files in this pull request and generated 9 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 10 out of 10 changed files in this pull request and generated 6 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 9 out of 9 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
) This PR copies over all the manually written input options content from [/options](https://deploy-preview-7663--rolldown-rs.netlify.app/options/input) to [/reference](https://deploy-preview-7663--rolldown-rs.netlify.app/reference/). > NOTE: None of the content itself was changed Depending on length, content is either written directly in JSDocs or @include in a separate markdown file. **`context` as an example** [Option: ](https://rolldown.rs/options/context) <img width="937" height="754" alt="image" src="https://github.com/user-attachments/assets/12ef84b1-cf8f-4051-9d90-58304ea0a680" /> [Reference: ](https://deploy-preview-7663--rolldown-rs.netlify.app/reference/InputOptions.context)<img width="984" height="767" alt="image" src="https://github.com/user-attachments/assets/15231c3b-bbb3-4b15-91fe-5a42104fb55c" /> Additional todos for auto-gen docs - [ ] migrate output option content - [ ] Unify the option interface / type page (e.g. /reference/OptimizationOptions) and the property page (e.g. /reference/InputOptions.optimization) - [ ] Improve the - Type output --------- Signed-off-by: Michael Dong <[email protected]> Co-authored-by: mdong1909 <[email protected]> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com> Co-authored-by: Copilot <[email protected]>
refactor: use nodejs-built-in-modules v1.0.0 directly in callsites (#7667) - Upgrade `nodejs-built-in-modules` from v0.0.1 to v1.0.0 - Remove custom wrapper in `rolldown_common` and use the crate's function directly at callsites - Move dependency from `rolldown_common` to the specific crates that need it (`rolldown_plugin` and `rolldown_plugin_esm_external_require`) - **Removed**: `crates/rolldown_common/src/ecmascript/node_builtin_modules.rs` (32 lines) - **Updated**: Direct imports of `is_nodejs_builtin_module` from `nodejs-built-in-modules` crate in callsites - **Cleaner architecture**: Dependencies are now only in crates that actually use them - Simpler codebase with less custom code to maintain - More accurate Node.js builtin module detection (v1.0.0 includes Node.js v24 modules) - Better dependency organization (only added where needed) - 24 fewer lines of code overall --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> docs: migrate input options content from options to auto gen docs (#7663) This PR copies over all the manually written input options content from [/options](https://deploy-preview-7663--rolldown-rs.netlify.app/options/input) to [/reference](https://deploy-preview-7663--rolldown-rs.netlify.app/reference/). > NOTE: None of the content itself was changed Depending on length, content is either written directly in JSDocs or @include in a separate markdown file. **`context` as an example** [Option: ](https://rolldown.rs/options/context) <img width="937" height="754" alt="image" src="https://github.com/user-attachments/assets/12ef84b1-cf8f-4051-9d90-58304ea0a680" /> [Reference: ](https://deploy-preview-7663--rolldown-rs.netlify.app/reference/InputOptions.context)<img width="984" height="767" alt="image" src="https://github.com/user-attachments/assets/15231c3b-bbb3-4b15-91fe-5a42104fb55c" /> Additional todos for auto-gen docs - [ ] migrate output option content - [ ] Unify the option interface / type page (e.g. /reference/OptimizationOptions) and the property page (e.g. /reference/InputOptions.optimization) - [ ] Improve the - Type output --------- Signed-off-by: Michael Dong <[email protected]> Co-authored-by: mdong1909 <[email protected]> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com> Co-authored-by: Copilot <[email protected]> refactor(rolldown_error): remove dependency on rolldown_utils (#7672) As the foundational error-handling crate in Rolldown, `rolldown_error` should not have dependencies on other crates. refactor: use `InvalidOption` for hash placeholder generation errors (#7674) closes #4021 chore(deps): update rust crates (#7678) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [derive_more](https://redirect.github.com/JelteF/derive_more) | workspace.dependencies | patch | `2.1.0` -> `2.1.1` | | [itoa](https://redirect.github.com/dtolnay/itoa) | workspace.dependencies | patch | `1.0.16` -> `1.0.17` | | [jsonschema](https://redirect.github.com/Stranger6667/jsonschema) | workspace.dependencies | minor | `0.37.0` -> `0.38.0` | | [proc-macro2](https://redirect.github.com/dtolnay/proc-macro2) | workspace.dependencies | patch | `1.0.103` -> `1.0.104` | | [schemars](https://graham.cool/schemars/) ([source](https://redirect.github.com/GREsau/schemars)) | workspace.dependencies | minor | `1.1.0` -> `1.2.0` | | [serde_json](https://redirect.github.com/serde-rs/json) | workspace.dependencies | patch | `1.0.145` -> `1.0.148` | --- <details> <summary>JelteF/derive_more (derive_more)</summary> [`v2.1.1`](https://redirect.github.com/JelteF/derive_more/blob/HEAD/CHANGELOG.md#211---2025-12-22) [Compare Source](https://redirect.github.com/JelteF/derive_more/compare/v2.1.0...v2.1.1) - `.as_dyn_error()` method hygiene inside `Error` derive expansion. ([#​527](https://redirect.github.com/JelteF/derive_more/pull/527)) </details> <details> <summary>dtolnay/itoa (itoa)</summary> [`v1.0.17`](https://redirect.github.com/dtolnay/itoa/compare/1.0.16...1.0.17) [Compare Source](https://redirect.github.com/dtolnay/itoa/compare/1.0.16...1.0.17) </details> <details> <summary>Stranger6667/jsonschema (jsonschema)</summary> [`v0.38.1`](https://redirect.github.com/Stranger6667/jsonschema/blob/HEAD/CHANGELOG.md#0381---2025-12-25) - `multipleOf` validation for integer values between `2^53` and `i64::MAX` with `arbitrary-precision` feature. [`v0.38.0`](https://redirect.github.com/Stranger6667/jsonschema/blob/HEAD/CHANGELOG.md#0380---2025-12-24) - `EmailOptions` for configuring `email` format validation. [#​903](https://redirect.github.com/Stranger6667/jsonschema/pull/903) - Use-after-free in async `$ref` resolution when multiple refs target the same external URL with different fragments. [#​906](https://redirect.github.com/Stranger6667/jsonschema/issues/906) - `multipleOf` validation for large u64 values beyond `i64::MAX` with `arbitrary-precision` feature. - `Validator` not being `Send + Sync` on WASM targets. [#​915](https://redirect.github.com/Stranger6667/jsonschema/issues/915) </details> <details> <summary>dtolnay/proc-macro2 (proc-macro2)</summary> [`v1.0.104`](https://redirect.github.com/dtolnay/proc-macro2/releases/tag/1.0.104) [Compare Source](https://redirect.github.com/dtolnay/proc-macro2/compare/1.0.103...1.0.104) - Add Rust 1.92.0's TokenStream Extend impls ([#​527](https://redirect.github.com/dtolnay/proc-macro2/issues/527), [rust-lang/rust#145722](https://redirect.github.com/rust-lang/rust/pull/145722)) </details> <details> <summary>GREsau/schemars (schemars)</summary> [`v1.2.0`](https://redirect.github.com/GREsau/schemars/blob/HEAD/CHANGELOG.md#120---2025-12-25-) [Compare Source](https://redirect.github.com/GREsau/schemars/compare/v1.1.0...v1.2.0) - Add smol\_str03 feature ([#​486](https://redirect.github.com/GREsau/schemars/pull/486)) - Schemas generated for `HashMap`/`BTreeMap` with enum keys are now more specific ([#​452](https://redirect.github.com/GREsau/schemars/pull/452)) </details> <details> <summary>serde-rs/json (serde_json)</summary> [`v1.0.148`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.148) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.147...v1.0.148) - Update `zmij` dependency to 1.0 [`v1.0.147`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.147) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.146...v1.0.147) - Switch float-to-string algorithm from Ryū to Żmij for better f32 and f64 serialization performance ([#​1304](https://redirect.github.com/serde-rs/json/issues/1304)) [`v1.0.146`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.146) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.145...v1.0.146) - Set fast\_arithmetic=64 for riscv64 ([#​1305](https://redirect.github.com/serde-rs/json/issues/1305), thanks [@​Xeonacid](https://redirect.github.com/Xeonacid)) </details> --- 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, 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://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/rolldown/rolldown). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update npm packages (#7680) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [knip](https://knip.dev) ([source](https://redirect.github.com/webpro-nl/knip/tree/HEAD/packages/knip)) | [`5.75.1` -> `5.77.1`](https://renovatebot.com/diffs/npm/knip/5.75.1/5.77.1) |  |  |  |  | | [typedoc](https://typedoc.org) ([source](https://redirect.github.com/TypeStrong/TypeDoc)) | [`0.28.14` -> `0.28.15`](https://renovatebot.com/diffs/npm/typedoc/0.28.14/0.28.15) |  |  |  |  | --- <details> <summary>webpro-nl/knip (knip)</summary> [`v5.77.1`](https://redirect.github.com/webpro-nl/knip/releases/tag/knip%405.77.1): Release 5.77.1 [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/[email protected]@5.77.1) - Fix docs in MCP ([`31029ec`](https://redirect.github.com/webpro-nl/knip/commit/31029ecc)) - Improve a few notes here & there ([`f0fdef4`](https://redirect.github.com/webpro-nl/knip/commit/f0fdef45)) - Patch create-typescript-app ([`7827890`](https://redirect.github.com/webpro-nl/knip/commit/7827890f)) - Exposed WorkspaceConfig ([#​1417](https://redirect.github.com/webpro-nl/knip/issues/1417)) ([`3d8d88d`](https://redirect.github.com/webpro-nl/knip/commit/3d8d88d1)) - Fix plugin title ([`eafb9d4`](https://redirect.github.com/webpro-nl/knip/commit/eafb9d4d)) - Complete the release flow ([`431d530`](https://redirect.github.com/webpro-nl/knip/commit/431d530a)) [`v5.77.0`](https://redirect.github.com/webpro-nl/knip/releases/tag/knip%405.77.0): Release 5.77.0 [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/[email protected]@5.77.0) - read options after help or version ([#​1412](https://redirect.github.com/webpro-nl/knip/issues/1412)) ([`9120432`](https://redirect.github.com/webpro-nl/knip/commit/9120432e1c274b3a421975796019191018fdfc14)) - thanks [@​GameRoMan](https://redirect.github.com/GameRoMan)! - [#​1355](https://redirect.github.com/webpro-nl/knip/issues/1355) vitepress plugin ([#​1414](https://redirect.github.com/webpro-nl/knip/issues/1414)) ([`dc5bb2a`](https://redirect.github.com/webpro-nl/knip/commit/dc5bb2a683e17011cb159130e5c8a3bea5be97b6)) - thanks [@​AlexanderKaran](https://redirect.github.com/AlexanderKaran)! - Improve config hints for redundant entry patterns ([`2a3b456`](https://redirect.github.com/webpro-nl/knip/commit/2a3b456bbda188030daa4085ff97ef9f83c5736e)) - Add a few notes here & there ([`f2f4986`](https://redirect.github.com/webpro-nl/knip/commit/f2f4986b14f2fa2e3c7540409c6c39b388e6d1f0)) - Fix lint/format issues ([`3cc5bc2`](https://redirect.github.com/webpro-nl/knip/commit/3cc5bc2c5c877d35beeed6ed57520d988cd3d648)) - Use release-it to publish all the things ([`a009cb3`](https://redirect.github.com/webpro-nl/knip/commit/a009cb38489a774e94d0c6cd3c06c496e1a0ed20)) [`v5.76.3`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.76.3) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/[email protected]) - [#​1381](https://redirect.github.com/webpro-nl/knip/issues/1381) Config default to packageManager if present in PackageJSON ([#​1402](https://redirect.github.com/webpro-nl/knip/issues/1402)) ([`da7045b`](https://redirect.github.com/webpro-nl/knip/commit/da7045bfe195accb4162a62a94220a279a22b25a)) - thanks [@​AlexanderKaran](https://redirect.github.com/AlexanderKaran)! - Release v0.0.7 packages ([`c9b2625`](https://redirect.github.com/webpro-nl/knip/commit/c9b2625c677b5cbec35cdc7895e1dcc45c1c1430)) - Release vscode-knip\@​0.0.11 ([`593e7ac`](https://redirect.github.com/webpro-nl/knip/commit/593e7ac19e6a30be7f52ead5648cf4f2e39b4b33)) - Read package.json only once ([`b523889`](https://redirect.github.com/webpro-nl/knip/commit/b5238895acc314c6e7b490e29c02b8819f2fb602)) - Release [@​knip/create-config](https://redirect.github.com/knip/create-config)@​1.1.0 ([`805ee2e`](https://redirect.github.com/webpro-nl/knip/commit/805ee2ed4eae96e6b930db768e17c416764247b9)) - Add release script for [@​knip/create-config](https://redirect.github.com/knip/create-config) ([`7e6de6e`](https://redirect.github.com/webpro-nl/knip/commit/7e6de6e48f6c7dbeb7f3c7a2bc51bbed22f78ecc)) - Improve `bunx` handler (resolve [#​1410](https://redirect.github.com/webpro-nl/knip/issues/1410)) ([`5ab0488`](https://redirect.github.com/webpro-nl/knip/commit/5ab0488ae59b9f06d82709df86b038c2fc125e93)) - Improve bun/node test runner handling (resolve [#​1411](https://redirect.github.com/webpro-nl/knip/issues/1411)) ([`d668345`](https://redirect.github.com/webpro-nl/knip/commit/d66834572e89d9baa7cdac8fe9a7d692ed6eda13)) - Skip `externalRefs` work if we're not in a session ([`0fc6194`](https://redirect.github.com/webpro-nl/knip/commit/0fc619424771e7d00e7c2718aca64f261944ecd9)) - Skip work for e.g. `--files` or `--dependencies` runs ([`60d760c`](https://redirect.github.com/webpro-nl/knip/commit/60d760cb7630ceec3868073b0d41b9c49744d844)) - Skip work if we're not reporting dependency issues ([`2456dcf`](https://redirect.github.com/webpro-nl/knip/commit/2456dcf29a829454f222701edd7ecf7ec8b1050d)) - Auto-format ([`95cf1a9`](https://redirect.github.com/webpro-nl/knip/commit/95cf1a96e7035ff7d0cadac1757eb4f86f2bb20f)) [`v5.76.2`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.76.2) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/5.76.1...5.76.2) - fix docs url ([#​1408](https://redirect.github.com/webpro-nl/knip/issues/1408)) ([`bcbb1dd`](https://redirect.github.com/webpro-nl/knip/commit/bcbb1dd2a96eebb0ba673c011bb82f5bb331cecb)) - thanks [@​GameRoMan](https://redirect.github.com/GameRoMan)! - Release v0.0.5 packages ([`e92537e`](https://redirect.github.com/webpro-nl/knip/commit/e92537e424e4f3e5130efc3b0d39eb23b843db59)) - Release v0.0.10 vscode-knip ([`c4b8c31`](https://redirect.github.com/webpro-nl/knip/commit/c4b8c318593e49f17b8c080091a44fa307bd0d5a)) - Less foo-ing ([`b71704a`](https://redirect.github.com/webpro-nl/knip/commit/b71704ab05a63bb529a56064ec0ecbed4a74e15d)) - Add link to extension on openvsx registry ([`2923c97`](https://redirect.github.com/webpro-nl/knip/commit/2923c971861ace5c65b10c2e4117ea521e0bef00)) - Extend biome config ([`696b8e6`](https://redirect.github.com/webpro-nl/knip/commit/696b8e65102b8b13f62ccc3c32b25198701a4d97)) - Extend AGENTS.md ([`a02e0b5`](https://redirect.github.com/webpro-nl/knip/commit/a02e0b59e739702abeecf5e264bf78edbca7f4e7)) - Add note re. internal workspaces in Nx setting ([#​1395](https://redirect.github.com/webpro-nl/knip/issues/1395)) ([`f8cfcf1`](https://redirect.github.com/webpro-nl/knip/commit/f8cfcf140374c179eb491a365e2969ceadb62ace)) - Update release scripts ([`95c2f51`](https://redirect.github.com/webpro-nl/knip/commit/95c2f516dad6bcbb011aa3669e3ba99b49f9ca29)) - Release v0.0.6 packages ([`38c3fde`](https://redirect.github.com/webpro-nl/knip/commit/38c3fdea710387b398b64f0dbad78faa2ab5bce6)) - Re-gen plugin list ([`419b8ef`](https://redirect.github.com/webpro-nl/knip/commit/419b8ef19baeba9365afa777c48980bfe7e1b1ba)) - Update sponsors page ([`6096578`](https://redirect.github.com/webpro-nl/knip/commit/60965788d91698d00fee0522d489069f4f1fe3b5)) - Add note to Nx plugin (close [#​1395](https://redirect.github.com/webpro-nl/knip/issues/1395)) ([`527d64e`](https://redirect.github.com/webpro-nl/knip/commit/527d64ea778850a6b82d3bb3bf2799eb36891e4f)) - Improve bun script file resolver (resolve [#​1409](https://redirect.github.com/webpro-nl/knip/issues/1409)) ([`e1ca76e`](https://redirect.github.com/webpro-nl/knip/commit/e1ca76e90845b0724191f0dba20cf205716b169f)) - Improve script handling ([#​1404](https://redirect.github.com/webpro-nl/knip/issues/1404)) ([`8d47360`](https://redirect.github.com/webpro-nl/knip/commit/8d47360686859d38d73c41fb322ac2680590ab4f)) - Add enabled plugins to tool results (avoid unnecessary entries) ([`906a49f`](https://redirect.github.com/webpro-nl/knip/commit/906a49f7136fa36f241aba022afee24580a055c6)) - Fix var name in ci job error handler ([`9d0ebe0`](https://redirect.github.com/webpro-nl/knip/commit/9d0ebe0794dd62dfdab0cc1fee72207eb0bab5dc)) [`v5.76.1`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.76.1) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/5.76.0...5.76.1) - Session re-export monorepo test setup ([#​1407](https://redirect.github.com/webpro-nl/knip/issues/1407)) ([`6905088`](https://redirect.github.com/webpro-nl/knip/commit/69050886a9e62b51bfba9b716841643f08b81854)) - thanks [@​Sheraff](https://redirect.github.com/Sheraff)! - Release v0.0.3 packages ([`344fab2`](https://redirect.github.com/webpro-nl/knip/commit/344fab2057419c7ef5fd275bef7bde6c12b6c83b)) - Fix jiti src + mcp docs ([`fa6cf89`](https://redirect.github.com/webpro-nl/knip/commit/fa6cf89431a1ff079ec113857871bf7f8c4faa81)) - Release v0.0.9 vscode-knip ([`69b32a9`](https://redirect.github.com/webpro-nl/knip/commit/69b32a9612cfca1410cb8d1166eab508d1a8ed0d)) - Walk through entry files (resolve [#​1397](https://redirect.github.com/webpro-nl/knip/issues/1397)) ([`96f884e`](https://redirect.github.com/webpro-nl/knip/commit/96f884eae5baaac5c9c0707ce7344657364fcf99)) - Fix glob-likes & links in workspaces in imports tree view ([`413cc8c`](https://redirect.github.com/webpro-nl/knip/commit/413cc8c57ca0e56b2cd541d6348733e3e4ed362b)) - Improve extension build script ([`dad8a8c`](https://redirect.github.com/webpro-nl/knip/commit/dad8a8c1e25bb107ab49eae85a3ae752d6064ca4)) [`v5.76.0`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.76.0) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/5.75.2...5.76.0) - fix: Unexpected error when pnpm catalogs are empty ([#​1406](https://redirect.github.com/webpro-nl/knip/issues/1406)) ([`e2dc8ba`](https://redirect.github.com/webpro-nl/knip/commit/e2dc8ba8f935f07bad08d2d7e7562f111fa65da7)) - thanks [@​Promise2679](https://redirect.github.com/Promise2679)! - Release v0.0.3 packages ([`b4baaa0`](https://redirect.github.com/webpro-nl/knip/commit/b4baaa03f4247b1e8470a2e10f1fa91262c3efd2)) - Release v0.0.8 vscode-knip ([`3af5727`](https://redirect.github.com/webpro-nl/knip/commit/3af5727104099ad3a9bac60af59c0db60ee61f90)) - Fix link to self ([`63e5143`](https://redirect.github.com/webpro-nl/knip/commit/63e51438551b48cac2e723d430a677e5997d3d7b)) - Fix excessive output/handling for files outside project scope ([`7df0da8`](https://redirect.github.com/webpro-nl/knip/commit/7df0da846dae10bea15f12514051c926793a9e85)) - Add `getDependencyUsage` operation to explorer ([`3ff7afa`](https://redirect.github.com/webpro-nl/knip/commit/3ff7afae57245bdba9801839b561b2276c2d0871)) - Add `--trace-dependency` flag + trace reporter ([`a4a8528`](https://redirect.github.com/webpro-nl/knip/commit/a4a8528528f60576f727761380e3e2fb11711ff1)) - Add dependency-usage-on-hover to LS + extension ([`c44d15b`](https://redirect.github.com/webpro-nl/knip/commit/c44d15be091eade246e846eb59e561fac8f5ec3a)) - Refactor getReferencedInputsHandler → createInputHandler ([`5b48fec`](https://redirect.github.com/webpro-nl/knip/commit/5b48fec78c0f999f2da64e55756602149c891b1f)) - Add & use `imports.externalRefs` ([`136ff8a`](https://redirect.github.com/webpro-nl/knip/commit/136ff8afc814a01860f715be8aee6bb478f3c299)) - Restore `workspace:*` protocol ([`e1eaa5e`](https://redirect.github.com/webpro-nl/knip/commit/e1eaa5ee6a59fe88913a574861505c5ef9067b53)) - Fix up test ([`9a2af6c`](https://redirect.github.com/webpro-nl/knip/commit/9a2af6c40b7e91236e75e7728ed3ac512fc878a1)) - Wrap up the refactors ([`c9f5abe`](https://redirect.github.com/webpro-nl/knip/commit/c9f5abe639bd085a5811503e928c7476b95ab286)) - Dedupe dependency trace output ([`0950f66`](https://redirect.github.com/webpro-nl/knip/commit/0950f661f6335f5a5d7e084f9be8d22d3378dee3)) - Add entries + screenshot to docs ([`444b567`](https://redirect.github.com/webpro-nl/knip/commit/444b5678f70b2d705aee9bd967eec23b78e3710f)) - Conditions apply ([`65168ec`](https://redirect.github.com/webpro-nl/knip/commit/65168ece74749c60cab3840103b96ef2699e3fe1)) - Prepare for `ovsx publish` ([`ed49b41`](https://redirect.github.com/webpro-nl/knip/commit/ed49b41b920392868e98900d4c67ee037de8d859)) - Deterministic order for issues/hints + fix up specs ([`0faa3b8`](https://redirect.github.com/webpro-nl/knip/commit/0faa3b8babc5708c9c719f0f5756c3655ef00cfd)) [`v5.75.2`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.75.2) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/5.75.1...5.75.2) - Release v0.0.2 packages ([`a4f7f32`](https://redirect.github.com/webpro-nl/knip/commit/a4f7f32e170805fe4f2c845ce2b65572871e508e)) - Wrap up blog post ([`ef4b300`](https://redirect.github.com/webpro-nl/knip/commit/ef4b300eb37fd121748aeac67f9074172b5139eb)) - Add build & publish script for `vscode-knip` ([`fc88bd8`](https://redirect.github.com/webpro-nl/knip/commit/fc88bd82a7015d99c0983fcd9bec640e1c0e8e55)) - Refactor session tests a bit ([`c8a7104`](https://redirect.github.com/webpro-nl/knip/commit/c8a7104f2f02da4209090799fa14e8ebfcf08b1c)) - Add fixture for re-export count ([#​1397](https://redirect.github.com/webpro-nl/knip/issues/1397)) ([`0f11b65`](https://redirect.github.com/webpro-nl/knip/commit/0f11b65edee595e83cd9fa603b7b841a1fcf18b4)) - Externalize jiti (resolve [#​1400](https://redirect.github.com/webpro-nl/knip/issues/1400)) ([`a54aa6b`](https://redirect.github.com/webpro-nl/knip/commit/a54aa6b15ea3064214c364065675336661063316)) - Add `op` to `endOfCommandBinaries` (resolve [#​1399](https://redirect.github.com/webpro-nl/knip/issues/1399)) ([`164532d`](https://redirect.github.com/webpro-nl/knip/commit/164532dbdc43b5a2387ec5afacf086da10e7e7ed)) - Rename parsedCLIArgs → args ([`0432ce5`](https://redirect.github.com/webpro-nl/knip/commit/0432ce50d9db35fba68a3e2187e2c481fa0195f8)) - Add `configFilePath` setting ([`843c2ff`](https://redirect.github.com/webpro-nl/knip/commit/843c2ff950e74cc16351e0d026914f3e783793ee)) - Remove unused imports ([`6ecf4e7`](https://redirect.github.com/webpro-nl/knip/commit/6ecf4e7211eb4cb286c84ce2bc9147194abdd497)) </details> <details> <summary>TypeStrong/TypeDoc (typedoc)</summary> [`v0.28.15`](https://redirect.github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v02815-2025-11-29) [Compare Source](https://redirect.github.com/TypeStrong/TypeDoc/compare/v0.28.14...v0.28.15) - The `gitRevision` option now accepts the special value `{branch}`, which indicates source links should use the current git branch for links, [#​3041](https://redirect.github.com/TypeStrong/TypeDoc/issues/3041). - Introduced `validation.invalidPath` for suppressing warnings caused by referencing relative paths which do not exist when building the documentation, [#​3033](https://redirect.github.com/TypeStrong/TypeDoc/issues/3033). - API: Introduced `Logger.validationWarning` for validation which occurs during conversion rather than during TypeDoc's normal validation step, [#​3033](https://redirect.github.com/TypeStrong/TypeDoc/issues/3033). </details> --- 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, 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://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/rolldown/rolldown). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update github-actions (#7679) > **Note:** This PR body was truncated due to platform limits. This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [CodSpeedHQ/action](https://redirect.github.com/CodSpeedHQ/action) | action | minor | `v4.4.1` -> `v4.5.1` | | [actions-cool/issues-helper](https://redirect.github.com/actions-cool/issues-helper) | action | patch | `v3.7.4` -> `v3.7.5` | | [oxc-project/setup-node](https://redirect.github.com/oxc-project/setup-node) | action | patch | `v1.0.5` -> `v1.0.6` | | [taiki-e/install-action](https://redirect.github.com/taiki-e/install-action) | action | patch | `v2.65.1` -> `v2.65.6` | --- <details> <summary>CodSpeedHQ/action (CodSpeedHQ/action)</summary> [`v4.5.1`](https://redirect.github.com/CodSpeedHQ/action/releases/tag/v4.5.1) [Compare Source](https://redirect.github.com/CodSpeedHQ/action/compare/v4.4.1...v4.5.1) - Remove projects query from the exec polling by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​173](https://redirect.github.com/CodSpeedHQ/runner/pull/173) - Fetch project from API when running outside of git repo by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add get or create project repository query by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Automatically install exec-harness for exec subcommand by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Auto install codspeed-memtrack during executor setup by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Serialize events serially to allow streamed decoding by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​172](https://redirect.github.com/CodSpeedHQ/runner/pull/172) - Parse perf file for memmap events instead of relying on /proc/pid/maps by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Use the projects upload enpdoint in exec command by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add exec subcommand and refactor run subcommand by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add exec-harness binary by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add memory executor by [@​not-matthias](https://redirect.github.com/not-matthias) - Add memtrack crate by [@​not-matthias](https://redirect.github.com/not-matthias) - Add artifact types by [@​not-matthias](https://redirect.github.com/not-matthias) - Add shared fifo by [@​not-matthias](https://redirect.github.com/not-matthias) - Add new fifo commands by [@​not-matthias](https://redirect.github.com/not-matthias) - Support simulation for free-threaded python by [@​adriencaccia](https://redirect.github.com/adriencaccia) in [#​167](https://redirect.github.com/CodSpeedHQ/runner/pull/167) - fix: specify package when using branch/ref by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​162](https://redirect.github.com/CodSpeedHQ/action/pull/162) - fix: properly check for allow\_empty input by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​164](https://redirect.github.com/CodSpeedHQ/action/pull/164) - Filter out arm debugging symbols by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​179](https://redirect.github.com/CodSpeedHQ/runner/pull/179) - Filter out empty named symbols when building perf-map by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​176](https://redirect.github.com/CodSpeedHQ/runner/pull/176) - Do not break support for no reason when changing integration hooks protocol version by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​175](https://redirect.github.com/CodSpeedHQ/runner/pull/175) - Remove dirty retry on timeout and simply increase timeout for GQL client by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Stop hanging indefinitely if process fails to start in memory executor by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​171](https://redirect.github.com/CodSpeedHQ/runner/pull/171) - Remove the password prompt from the run\_with\_sudo dialog by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Collect events in thread to avoid mutex overhead by [@​not-matthias](https://redirect.github.com/not-matthias) - Convert events in thread to avoid blocking at the end by [@​not-matthias](https://redirect.github.com/not-matthias) - Compress only when size exceeds threshold by [@​not-matthias](https://redirect.github.com/not-matthias) - Forward environment in memory executor by [@​not-matthias](https://redirect.github.com/not-matthias) - Fix plan test in CI by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​165](https://redirect.github.com/CodSpeedHQ/runner/pull/165) - Prevent nextest from running valgrind and memcheck concurrently by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Stop ignoring samples by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Use correct name for unwind\_data trait declaration by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Stop filtering out zero sized symbol by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Request OIDC token after creating profile archive by [@​fargito](https://redirect.github.com/fargito) in [#​170](https://redirect.github.com/CodSpeedHQ/runner/pull/170) - Remove snapshots that were not part of lfs by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​166](https://redirect.github.com/CodSpeedHQ/runner/pull/166) - Always print memory mapping logs by [@​not-matthias](https://redirect.github.com/not-matthias) - Create a dedicated execution\_context that holds runtime information by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Move executor and instruments modules out of `run` module by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - docs(examples): add go and cpp examples by [@​fargito](https://redirect.github.com/fargito) in [#​161](https://redirect.github.com/CodSpeedHQ/action/pull/161) - Ignore some tags in the changelog - Bump protocol version by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​174](https://redirect.github.com/CodSpeedHQ/runner/pull/174) - Add CONTRIBUTING.md by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add cargo-dist arguments for release by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Reset exec-harness and memtrack crate versions to 1.0.0 ahead of first release by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Switch to pr run mode plan only for pr by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add test to ensure path is properly forwarded by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​169](https://redirect.github.com/CodSpeedHQ/runner/pull/169) - Make the exec command work outside of git repos by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Do not publish memtrack to crates.io by [@​adriencaccia](https://redirect.github.com/adriencaccia) - Dont run valgrind and memory tests at the same time by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​164](https://redirect.github.com/CodSpeedHQ/runner/pull/164) - Add test-log to see output on failures by [@​not-matthias](https://redirect.github.com/not-matthias) - Add workspace dependencies by [@​not-matthias](https://redirect.github.com/not-matthias) ```sh curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-installer.sh | sh ``` | File | Platform | Checksum | | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------- | | [codspeed-runner-aarch64-unknown-linux-musl.tar.gz](https://redirect.github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-aarch64-unknown-linux-musl.tar.gz) | ARM64 MUSL Linux | [checksum](https://redirect.github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-aarch64-unknown-linux-musl.tar.gz.sha256) | | [codspeed-runner-x86\_64-unknown-linux-musl.tar.gz](https://redirect.github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-x86_64-unknown-linux-musl.tar.gz) | x64 MUSL Linux | [checksum](https://redirect.github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-x86_64-unknown-linux-musl.tar.gz.sha256) | **Full Runner Changelog**: <https://github.com/CodSpeedHQ/runner/blob/main/CHANGELOG.md> **Full Changelog**: <https://github.com/CodSpeedHQ/action/compare/v4.4.1...v4.5.1> </details> <details> <summary>actions-cool/issues-helper (actions-cool/issues-helper)</summary> [`v3.7.5`](https://redirect.github.com/actions-cool/issues-helper/blob/HEAD/CHANGELOG.md#v375) [Compare Source](https://redirect.github.com/actions-cool/issues-helper/compare/v3.7.4...v3.7.5) `2025.12.24` - 🐞 fix: the total of inactive issues output is incorrect. [#​222](https://redirect.github.com/actions-cool/issues-helper/pull/222) [@​btea](https://redirect.github.com/btea) </details> <details> <summary>oxc-project/setup-node (oxc-project/setup-node)</summary> [`v1.0.6`](https://redirect.github.com/oxc-project/setup-node/compare/v1.0.5...v1.0.6) [Compare Source](https://redirect.github.com/oxc-project/setup-node/compare/v1.0.5...v1.0.6) </details> <details> <summary>taiki-e/install-action (taiki-e/install-action)</summary> [`v2.65.6`](https://redirect.github.com/taiki-e/install-action/blob/HEAD/CHANGELOG.md#100---2021-12-30) [Compare Source](https://redirect.github.com/taiki-e/install-action/compare/v2.65.5...v2.65.6) Initial release [Unreleased]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.6...HEAD [2.65.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.5...v2.65.6 [2.65.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.4...v2.65.5 [2.65.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.3...v2.65.4 [2.65.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.2...v2.65.3 [2.65.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.1...v2.65.2 [2.65.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.0...v2.65.1 [2.65.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.64.2...v2.65.0 [2.64.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.64.1...v2.64.2 [2.64.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.64.0...v2.64.1 [2.64.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.63.3...v2.64.0 [2.63.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.63.2...v2.63.3 [2.63.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.63.1...v2.63.2 [2.63.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.63.0...v2.63.1 [2.63.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.67...v2.63.0 [2.62.67]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.66...v2.62.67 [2.62.66]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.65...v2.62.66 [2.62.65]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.64...v2.62.65 [2.62.64]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.63...v2.62.64 [2.62.63]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.62...v2.62.63 [2.62.62]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.61...v2.62.62 [2.62.61]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.60...v2.62.61 [2.62.60]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.59...v2.62.60 [2.62.59]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.58...v2.62.59 [2.62.58]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.57...v2.62.58 [2.62.57]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.56...v2.62.57 [2.62.56]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.55...v2.62.56 [2.62.55]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.54...v2.62.55 [2.62.54]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.53...v2.62.54 [2.62.53]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.52...v2.62.53 [2.62.52]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.51...v2.62.52 [2.62.51]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.50...v2.62.51 [2.62.50]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.49...v2.62.50 [2.62.49]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.48...v2.62.49 [2.62.48]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.47...v2.62.48 [2.62.47]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.46...v2.62.47 [2.62.46]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.45...v2.62.46 [2.62.45]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.44...v2.62.45 [2.62.44]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.43...v2.62.44 [2.62.43]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.42...v2.62.43 [2.62.42]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.41...v2.62.42 [2.62.41]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.40...v2.62.41 [2.62.40]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.39...v2.62.40 [2.62.39]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.38...v2.62.39 [2.62.38]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.37...v2.62.38 [2.62.37]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.36...v2.62.37 [2.62.36]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.35...v2.62.36 [2.62.35]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.34...v2.62.35 [2.62.34]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.33...v2.62.34 [2.62.33]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.32...v2.62.33 [2.62.32]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.31...v2.62.32 [2.62.31]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.30...v2.62.31 [2.62.30]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.29...v2.62.30 [2.62.29]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.28...v2.62.29 [2.62.28]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.27...v2.62.28 [2.62.27]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.26...v2.62.27 [2.62.26]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.25...v2.62.26 [2.62.25]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.24...v2.62.25 [2.62.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.23...v2.62.24 [2.62.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.22...v2.62.23 [2.62.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.21...v2.62.22 [2.62.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.20...v2.62.21 [2.62.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.19...v2.62.20 [2.62.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.18...v2.62.19 [2.62.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.17...v2.62.18 [2.62.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.16...v2.62.17 [2.62.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.15...v2.62.16 [2.62.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.14...v2.62.15 [2.62.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.13...v2.62.14 [2.62.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.12...v2.62.13 [2.62.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.11...v2.62.12 [2.62.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.10...v2.62.11 [2.62.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.9...v2.62.10 [2.62.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.8...v2.62.9 [2.62.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.7...v2.62.8 [2.62.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.6...v2.62.7 [2.62.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.5...v2.62.6 [2.62.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.4...v2.62.5 [2.62.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.3...v2.62.4 [2.62.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.2...v2.62.3 [2.62.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.1...v2.62.2 [2.62.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.0...v2.62.1 [2.62.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.13...v2.62.0 [2.61.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.12...v2.61.13 [2.61.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.11...v2.61.12 [2.61.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.10...v2.61.11 [2.61.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.9...v2.61.10 [2.61.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.8...v2.61.9 [2.61.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.7...v2.61.8 [2.61.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.6...v2.61.7 [2.61.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.5...v2.61.6 [2.61.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.4...v2.61.5 [2.61.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.3...v2.61.4 [2.61.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.2...v2.61.3 [2.61.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.1...v2.61.2 [2.61.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.0...v2.61.1 [2.61.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.60.0...v2.61.0 [2.60.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.59.1...v2.60.0 [2.59.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.59.0...v2.59.1 [2.59.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.33...v2.59.0 [2.58.33]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.32...v2.58.33 [2.58.32]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.31...v2.58.32 [2.58.31]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.30...v2.58.31 [2.58.30]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.29...v2.58.30 [2.58.29]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.28...v2.58.29 [2.58.28]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.27...v2.58.28 [2.58.27]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.26...v2.58.27 [2.58.26]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.25...v2.58.26 [2.58.25]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.24...v2.58.25 [2.58.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.23...v2.58.24 [2.58.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.22...v2.58.23 [2.58.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.21...v2.58.22 [2.58.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.20...v2.58.21 [2.58.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.19...v2.58.20 [2.58.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.18...v2.58.19 [2.58.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.17...v2.58.18 [2.58.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.16...v2.58.17 [2.58.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.15...v2.58.16 [2.58.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.14...v2.58.15 [2.58.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.13...v2.58.14 [2.58.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.12...v2.58.13 [2.58.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.11...v2.58.12 [2.58.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.10...v2.58.11 [2.58.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.9...v2.58.10 [2.58.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.8...v2.58.9 [2.58.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.7...v2.58.8 [2.58.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.6...v2.58.7 [2.58.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.5...v2.58.6 [2.58.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.4...v2.58.5 [2.58.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.3...v2.58.4 [2.58.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.2...v2.58.3 [2.58.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.1...v2.58.2 [2.58.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.0...v2.58.1 [2.58.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.8...v2.58.0 [2.57.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.7...v2.57.8 [2.57.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.6...v2.57.7 [2.57.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.5...v2.57.6 [2.57.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.4...v2.57.5 [2.57.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.3...v2.57.4 [2.57.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.2...v2.57.3 [2.57.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.1...v2.57.2 [2.57.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.0...v2.57.1 [2.57.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.24...v2.57.0 [2.56.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.23...v2.56.24 [2.56.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.22...v2.56.23 [2.56.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.21...v2.56.22 [2.56.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.20...v2.56.21 [2.56.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.19...v2.56.20 [2.56.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.18...v2.56.19 [2.56.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.17...v2.56.18 [2.56.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.16...v2.56.17 [2.56.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.15...v2.56.16 [2.56.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.14...v2.56.15 [2.56.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.13...v2.56.14 [2.56.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.12...v2.56.13 [2.56.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.11...v2.56.12 [2.56.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.10...v2.56.11 [2.56.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.9...v2.56.10 [2.56.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.8...v2.56.9 [2.56.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.7...v2.56.8 [2.56.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.6...v2.56.7 [2.56.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.5...v2.56.6 [2.56.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.4...v2.56.5 [2.56.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.3...v2.56.4 [2.56.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.2...v2.56.3 [2.56.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.1...v2.56.2 [2.56.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.0...v2.56.1 [2.56.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.4...v2.56.0 [2.55.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.3...v2.55.4 [2.55.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.2...v2.55.3 [2.55.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.1...v2.55.2 [2.55.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.0...v2.55.1 [2.55.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.54.3...v2.55.0 [2.54.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.54.2...v2.54.3 [2.54.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.54.1...v2.54.2 [2.54.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.54.0...v2.54.1 [2.54.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.53.2...v2.54.0 [2.53.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.53.1...v2.53.2 [2.53.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.53.0...v2.53.1 [2.53.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.8...v2.53.0 [2.52.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.7...v2.52.8 [2.52.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.6...v2.52.7 [2.52.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.5...v2.52.6 [2.52.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.4...v2.52.5 [2.52.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.3...v2.52.4 [2.52.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.2...v2.52.3 [2.52.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.1...v2.52.2 [2.52.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.0...v2.52.1 [2.52.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.51.3...v2.52.0 [2.51.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.51.2...v2.51.3 [2.51.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.51.1...v2.51.2 [2.51.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.51.0...v2.51.1 [2.51.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.10...v2.51.0 [2.50.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.9...v2.50.10 [2.50.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.8...v2.50.9 [2.50.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.7...v2.50.8 [2.50.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.6...v2.50.7 [2.50.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.5...v2.50.6 [2.50.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.4...v2.50.5 [2.50.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.3...v2.50.4 [2.50.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.2...v2.50.3 [2.50.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.1...v2.50.2 [2.50.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.0...v2.50.1 [2.50.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.50...v2.50.0 [2.49.50]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.49...v2.49.50 [2.49.49]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.48...v2.49.49 [2.49.48]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.47...v2.49.48 [2.49.47]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.46...v2.49.47 [2.49.46]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.45...v2.49.46 [2.49.45]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.44...v2.49.45 [2.49.44]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.43...v2.49.44 [2.49.43]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.42...v2.49.43 [2.49.42]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.41...v2.49.42 [2.49.41]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.40...v2.49.41 [2.49.40]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.39...v2.49.40 [2.49.39]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.38...v2.49.39 [2.49.38]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.37...v2.49.38 [2.49.37]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.36...v2.49.37 [2.49.36]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.35...v2.49.36 [2.49.35]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.34...v2.49.35 [2.49.34]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.33...v2.49.34 [2.49.33]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.32...v2.49.33 [2.49.32]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.31...v2.49.32 [2.49.31]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.30...v2.49.31 [2.49.30]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.29...v2.49.30 [2.49.29]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.28...v2.49.29 [2.49.28]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.27...v2.49.28 [2.49.27]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.26...v2.49.27 [2.49.26]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.25...v2.49.26 [2.49.25]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.24...v2.49.25 [2.49.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.23...v2.49.24 [2.49.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.22...v2.49.23 [2.49.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.21...v2.49.22 [2.49.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.20...v2.49.21 [2.49.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.19...v2.49.20 [2.49.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.18...v2.49.19 [2.49.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.17...v2.49.18 [2.49.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.16...v2.49.17 [2.49.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.15...v2.49.16 [2.49.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.14...v2.49.15 [2.49.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.13...v2.49.14 [2.49.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.12...v2.49.13 [2.49.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.11...v2.49.12 [2.49.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.10...v2.49.11 [2.49.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.9...v2.49.10 [2.49.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.8...v2.49.9 [2.49.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.7...v2.49.8 [2.49.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.6...v2.49.7 [2.49.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.5...v2.49.6 [2.49.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.4...v2.49.5 [2.49.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.3...v2.49.4 [2.49.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.2...v2.49.3 [2.49.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.1...v2.49.2 [2.49.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.0...v2.49.1 [2.49.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.22...v2.49.0 [2.48.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.21...v2.48.22 [2.48.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.20...v2.48.21 [2.48.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.19...v2.48.20 [2.48.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.18...v2.48.19 [2.48.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.17...v2.48.18 [2.48.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.16...v2.48.17 [2.48.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.15...v2.48.16 [2.48.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.14...v2.48.15 [2.48.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.13...v2.48.14 [2.48.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.12...v2.48.13 [2.48.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.11...v2.48.12 [2.48.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.10...v2.48.11 [2.48.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.9...v2.48.10 [2.48.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.8...v2.48.9 [2.48.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.7...v2.48.8 [2.48.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.6...v2.48.7 [2.48.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.5...v2.48.6 [2.48.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.4...v2.48.5 [2.48.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.3...v2.48.4 [2.48.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.2...v2.48.3 [2.48.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.1...v2.48.2 [2.48.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.0...v2.48.1 [2.48.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.32...v2.48.0 [2.47.32]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.31...v2.47.32 [2.47.31]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.30...v2.47.31 [2.47.30]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.29...v2.47.30 [2.47.29]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.28...v2.47.29 [2.47.28]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.27...v2.47.28 [2.47.27]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.26...v2.47.27 [2.47.26]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.25...v2.47.26 [2.47.25]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.24...v2.47.25 [2.47.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.23...v2.47.24 [2.47.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.22...v2.47.23 [2.47.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.21...v2.47.22 [2.47.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.20...v2.47.21 [2.47.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.19...v2.47.20 [2.47.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.18...v2.47.19 [2.47.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.17...v2.47.18 [2.47.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.16...v2.47.17 [2.47.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.15...v2.47.16 [2.47.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.14...v2.47.15 [2.47.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.13...v2.47.14 [2.47.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.12...v2.47.13 [2.47.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.11...v2.47.12 [2.47.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.10...v2.47.11 [2.47.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.9...v2.47.10 [2.47.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.8...v2.47.9 [2.47.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.7...v2.47.8 [2.47.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.6...v2.47.7 [2.47.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.5...v2.47.6 [2.47.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.4...v2.47.5 [2.47.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.3...v2.47.4 [2.47.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.2...v2.47.3 [2.47.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.1...v2.47.2 [2.47.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.0...v2.47.1 [2.47.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.20...v2.47.0 [2.46.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.19...v2.46.20 [2.46.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.18...v2.46.19 [2.46.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.17...v2.46.18 [2.46.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.16...v2.46.17 [2.46.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.15...v2.46.16 [2.46.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.14...v2.46.15 [2.46.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.13...v2.46.14 [2.46.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.12...v2.46.13 [2.46.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.11...v2.46.12 [2.46.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.10...v2.46.11 [2.46.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.9...v2.46.10 [2.46.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.8...v2.46.9 [2.46.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.7...v2.46.8 [2.46.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.6...v2.46.7 [2.46.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.5...v2.46.6 [2.46.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.4...v2.46.5 [2.46.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.3...v2.46.4 [2.46.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.2...v2.46.3 [2.46.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.1...v2.46.2 [2.46.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.0...v2.46.1 [2.46.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.45.15...v2.46.0 [2.45.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.45.14...v2.45.15 [2.45.14]: https://r…
refactor: use nodejs-built-in-modules v1.0.0 directly in callsites (#7667) - Upgrade `nodejs-built-in-modules` from v0.0.1 to v1.0.0 - Remove custom wrapper in `rolldown_common` and use the crate's function directly at callsites - Move dependency from `rolldown_common` to the specific crates that need it (`rolldown_plugin` and `rolldown_plugin_esm_external_require`) - **Removed**: `crates/rolldown_common/src/ecmascript/node_builtin_modules.rs` (32 lines) - **Updated**: Direct imports of `is_nodejs_builtin_module` from `nodejs-built-in-modules` crate in callsites - **Cleaner architecture**: Dependencies are now only in crates that actually use them - Simpler codebase with less custom code to maintain - More accurate Node.js builtin module detection (v1.0.0 includes Node.js v24 modules) - Better dependency organization (only added where needed) - 24 fewer lines of code overall --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> docs: migrate input options content from options to auto gen docs (#7663) This PR copies over all the manually written input options content from [/options](https://deploy-preview-7663--rolldown-rs.netlify.app/options/input) to [/reference](https://deploy-preview-7663--rolldown-rs.netlify.app/reference/). > NOTE: None of the content itself was changed Depending on length, content is either written directly in JSDocs or @include in a separate markdown file. **`context` as an example** [Option: ](https://rolldown.rs/options/context) <img width="937" height="754" alt="image" src="https://github.com/user-attachments/assets/12ef84b1-cf8f-4051-9d90-58304ea0a680" /> [Reference: ](https://deploy-preview-7663--rolldown-rs.netlify.app/reference/InputOptions.context)<img width="984" height="767" alt="image" src="https://github.com/user-attachments/assets/15231c3b-bbb3-4b15-91fe-5a42104fb55c" /> Additional todos for auto-gen docs - [ ] migrate output option content - [ ] Unify the option interface / type page (e.g. /reference/OptimizationOptions) and the property page (e.g. /reference/InputOptions.optimization) - [ ] Improve the - Type output --------- Signed-off-by: Michael Dong <[email protected]> Co-authored-by: mdong1909 <[email protected]> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com> Co-authored-by: Copilot <[email protected]> refactor(rolldown_error): remove dependency on rolldown_utils (#7672) As the foundational error-handling crate in Rolldown, `rolldown_error` should not have dependencies on other crates. refactor: use `InvalidOption` for hash placeholder generation errors (#7674) closes #4021 chore(deps): update rust crates (#7678) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [derive_more](https://redirect.github.com/JelteF/derive_more) | workspace.dependencies | patch | `2.1.0` -> `2.1.1` | | [itoa](https://redirect.github.com/dtolnay/itoa) | workspace.dependencies | patch | `1.0.16` -> `1.0.17` | | [jsonschema](https://redirect.github.com/Stranger6667/jsonschema) | workspace.dependencies | minor | `0.37.0` -> `0.38.0` | | [proc-macro2](https://redirect.github.com/dtolnay/proc-macro2) | workspace.dependencies | patch | `1.0.103` -> `1.0.104` | | [schemars](https://graham.cool/schemars/) ([source](https://redirect.github.com/GREsau/schemars)) | workspace.dependencies | minor | `1.1.0` -> `1.2.0` | | [serde_json](https://redirect.github.com/serde-rs/json) | workspace.dependencies | patch | `1.0.145` -> `1.0.148` | --- <details> <summary>JelteF/derive_more (derive_more)</summary> [`v2.1.1`](https://redirect.github.com/JelteF/derive_more/blob/HEAD/CHANGELOG.md#211---2025-12-22) [Compare Source](https://redirect.github.com/JelteF/derive_more/compare/v2.1.0...v2.1.1) - `.as_dyn_error()` method hygiene inside `Error` derive expansion. ([#​527](https://redirect.github.com/JelteF/derive_more/pull/527)) </details> <details> <summary>dtolnay/itoa (itoa)</summary> [`v1.0.17`](https://redirect.github.com/dtolnay/itoa/compare/1.0.16...1.0.17) [Compare Source](https://redirect.github.com/dtolnay/itoa/compare/1.0.16...1.0.17) </details> <details> <summary>Stranger6667/jsonschema (jsonschema)</summary> [`v0.38.1`](https://redirect.github.com/Stranger6667/jsonschema/blob/HEAD/CHANGELOG.md#0381---2025-12-25) - `multipleOf` validation for integer values between `2^53` and `i64::MAX` with `arbitrary-precision` feature. [`v0.38.0`](https://redirect.github.com/Stranger6667/jsonschema/blob/HEAD/CHANGELOG.md#0380---2025-12-24) - `EmailOptions` for configuring `email` format validation. [#​903](https://redirect.github.com/Stranger6667/jsonschema/pull/903) - Use-after-free in async `$ref` resolution when multiple refs target the same external URL with different fragments. [#​906](https://redirect.github.com/Stranger6667/jsonschema/issues/906) - `multipleOf` validation for large u64 values beyond `i64::MAX` with `arbitrary-precision` feature. - `Validator` not being `Send + Sync` on WASM targets. [#​915](https://redirect.github.com/Stranger6667/jsonschema/issues/915) </details> <details> <summary>dtolnay/proc-macro2 (proc-macro2)</summary> [`v1.0.104`](https://redirect.github.com/dtolnay/proc-macro2/releases/tag/1.0.104) [Compare Source](https://redirect.github.com/dtolnay/proc-macro2/compare/1.0.103...1.0.104) - Add Rust 1.92.0's TokenStream Extend impls ([#​527](https://redirect.github.com/dtolnay/proc-macro2/issues/527), [rust-lang/rust#145722](https://redirect.github.com/rust-lang/rust/pull/145722)) </details> <details> <summary>GREsau/schemars (schemars)</summary> [`v1.2.0`](https://redirect.github.com/GREsau/schemars/blob/HEAD/CHANGELOG.md#120---2025-12-25-) [Compare Source](https://redirect.github.com/GREsau/schemars/compare/v1.1.0...v1.2.0) - Add smol\_str03 feature ([#​486](https://redirect.github.com/GREsau/schemars/pull/486)) - Schemas generated for `HashMap`/`BTreeMap` with enum keys are now more specific ([#​452](https://redirect.github.com/GREsau/schemars/pull/452)) </details> <details> <summary>serde-rs/json (serde_json)</summary> [`v1.0.148`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.148) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.147...v1.0.148) - Update `zmij` dependency to 1.0 [`v1.0.147`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.147) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.146...v1.0.147) - Switch float-to-string algorithm from Ryū to Żmij for better f32 and f64 serialization performance ([#​1304](https://redirect.github.com/serde-rs/json/issues/1304)) [`v1.0.146`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.146) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.145...v1.0.146) - Set fast\_arithmetic=64 for riscv64 ([#​1305](https://redirect.github.com/serde-rs/json/issues/1305), thanks [@​Xeonacid](https://redirect.github.com/Xeonacid)) </details> --- 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, 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://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/rolldown/rolldown). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update npm packages (#7680) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [knip](https://knip.dev) ([source](https://redirect.github.com/webpro-nl/knip/tree/HEAD/packages/knip)) | [`5.75.1` -> `5.77.1`](https://renovatebot.com/diffs/npm/knip/5.75.1/5.77.1) |  |  |  |  | | [typedoc](https://typedoc.org) ([source](https://redirect.github.com/TypeStrong/TypeDoc)) | [`0.28.14` -> `0.28.15`](https://renovatebot.com/diffs/npm/typedoc/0.28.14/0.28.15) |  |  |  |  | --- <details> <summary>webpro-nl/knip (knip)</summary> [`v5.77.1`](https://redirect.github.com/webpro-nl/knip/releases/tag/knip%405.77.1): Release 5.77.1 [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/[email protected]@5.77.1) - Fix docs in MCP ([`31029ec`](https://redirect.github.com/webpro-nl/knip/commit/31029ecc)) - Improve a few notes here & there ([`f0fdef4`](https://redirect.github.com/webpro-nl/knip/commit/f0fdef45)) - Patch create-typescript-app ([`7827890`](https://redirect.github.com/webpro-nl/knip/commit/7827890f)) - Exposed WorkspaceConfig ([#​1417](https://redirect.github.com/webpro-nl/knip/issues/1417)) ([`3d8d88d`](https://redirect.github.com/webpro-nl/knip/commit/3d8d88d1)) - Fix plugin title ([`eafb9d4`](https://redirect.github.com/webpro-nl/knip/commit/eafb9d4d)) - Complete the release flow ([`431d530`](https://redirect.github.com/webpro-nl/knip/commit/431d530a)) [`v5.77.0`](https://redirect.github.com/webpro-nl/knip/releases/tag/knip%405.77.0): Release 5.77.0 [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/[email protected]@5.77.0) - read options after help or version ([#​1412](https://redirect.github.com/webpro-nl/knip/issues/1412)) ([`9120432`](https://redirect.github.com/webpro-nl/knip/commit/9120432e1c274b3a421975796019191018fdfc14)) - thanks [@​GameRoMan](https://redirect.github.com/GameRoMan)! - [#​1355](https://redirect.github.com/webpro-nl/knip/issues/1355) vitepress plugin ([#​1414](https://redirect.github.com/webpro-nl/knip/issues/1414)) ([`dc5bb2a`](https://redirect.github.com/webpro-nl/knip/commit/dc5bb2a683e17011cb159130e5c8a3bea5be97b6)) - thanks [@​AlexanderKaran](https://redirect.github.com/AlexanderKaran)! - Improve config hints for redundant entry patterns ([`2a3b456`](https://redirect.github.com/webpro-nl/knip/commit/2a3b456bbda188030daa4085ff97ef9f83c5736e)) - Add a few notes here & there ([`f2f4986`](https://redirect.github.com/webpro-nl/knip/commit/f2f4986b14f2fa2e3c7540409c6c39b388e6d1f0)) - Fix lint/format issues ([`3cc5bc2`](https://redirect.github.com/webpro-nl/knip/commit/3cc5bc2c5c877d35beeed6ed57520d988cd3d648)) - Use release-it to publish all the things ([`a009cb3`](https://redirect.github.com/webpro-nl/knip/commit/a009cb38489a774e94d0c6cd3c06c496e1a0ed20)) [`v5.76.3`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.76.3) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/[email protected]) - [#​1381](https://redirect.github.com/webpro-nl/knip/issues/1381) Config default to packageManager if present in PackageJSON ([#​1402](https://redirect.github.com/webpro-nl/knip/issues/1402)) ([`da7045b`](https://redirect.github.com/webpro-nl/knip/commit/da7045bfe195accb4162a62a94220a279a22b25a)) - thanks [@​AlexanderKaran](https://redirect.github.com/AlexanderKaran)! - Release v0.0.7 packages ([`c9b2625`](https://redirect.github.com/webpro-nl/knip/commit/c9b2625c677b5cbec35cdc7895e1dcc45c1c1430)) - Release vscode-knip\@​0.0.11 ([`593e7ac`](https://redirect.github.com/webpro-nl/knip/commit/593e7ac19e6a30be7f52ead5648cf4f2e39b4b33)) - Read package.json only once ([`b523889`](https://redirect.github.com/webpro-nl/knip/commit/b5238895acc314c6e7b490e29c02b8819f2fb602)) - Release [@​knip/create-config](https://redirect.github.com/knip/create-config)@​1.1.0 ([`805ee2e`](https://redirect.github.com/webpro-nl/knip/commit/805ee2ed4eae96e6b930db768e17c416764247b9)) - Add release script for [@​knip/create-config](https://redirect.github.com/knip/create-config) ([`7e6de6e`](https://redirect.github.com/webpro-nl/knip/commit/7e6de6e48f6c7dbeb7f3c7a2bc51bbed22f78ecc)) - Improve `bunx` handler (resolve [#​1410](https://redirect.github.com/webpro-nl/knip/issues/1410)) ([`5ab0488`](https://redirect.github.com/webpro-nl/knip/commit/5ab0488ae59b9f06d82709df86b038c2fc125e93)) - Improve bun/node test runner handling (resolve [#​1411](https://redirect.github.com/webpro-nl/knip/issues/1411)) ([`d668345`](https://redirect.github.com/webpro-nl/knip/commit/d66834572e89d9baa7cdac8fe9a7d692ed6eda13)) - Skip `externalRefs` work if we're not in a session ([`0fc6194`](https://redirect.github.com/webpro-nl/knip/commit/0fc619424771e7d00e7c2718aca64f261944ecd9)) - Skip work for e.g. `--files` or `--dependencies` runs ([`60d760c`](https://redirect.github.com/webpro-nl/knip/commit/60d760cb7630ceec3868073b0d41b9c49744d844)) - Skip work if we're not reporting dependency issues ([`2456dcf`](https://redirect.github.com/webpro-nl/knip/commit/2456dcf29a829454f222701edd7ecf7ec8b1050d)) - Auto-format ([`95cf1a9`](https://redirect.github.com/webpro-nl/knip/commit/95cf1a96e7035ff7d0cadac1757eb4f86f2bb20f)) [`v5.76.2`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.76.2) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/5.76.1...5.76.2) - fix docs url ([#​1408](https://redirect.github.com/webpro-nl/knip/issues/1408)) ([`bcbb1dd`](https://redirect.github.com/webpro-nl/knip/commit/bcbb1dd2a96eebb0ba673c011bb82f5bb331cecb)) - thanks [@​GameRoMan](https://redirect.github.com/GameRoMan)! - Release v0.0.5 packages ([`e92537e`](https://redirect.github.com/webpro-nl/knip/commit/e92537e424e4f3e5130efc3b0d39eb23b843db59)) - Release v0.0.10 vscode-knip ([`c4b8c31`](https://redirect.github.com/webpro-nl/knip/commit/c4b8c318593e49f17b8c080091a44fa307bd0d5a)) - Less foo-ing ([`b71704a`](https://redirect.github.com/webpro-nl/knip/commit/b71704ab05a63bb529a56064ec0ecbed4a74e15d)) - Add link to extension on openvsx registry ([`2923c97`](https://redirect.github.com/webpro-nl/knip/commit/2923c971861ace5c65b10c2e4117ea521e0bef00)) - Extend biome config ([`696b8e6`](https://redirect.github.com/webpro-nl/knip/commit/696b8e65102b8b13f62ccc3c32b25198701a4d97)) - Extend AGENTS.md ([`a02e0b5`](https://redirect.github.com/webpro-nl/knip/commit/a02e0b59e739702abeecf5e264bf78edbca7f4e7)) - Add note re. internal workspaces in Nx setting ([#​1395](https://redirect.github.com/webpro-nl/knip/issues/1395)) ([`f8cfcf1`](https://redirect.github.com/webpro-nl/knip/commit/f8cfcf140374c179eb491a365e2969ceadb62ace)) - Update release scripts ([`95c2f51`](https://redirect.github.com/webpro-nl/knip/commit/95c2f516dad6bcbb011aa3669e3ba99b49f9ca29)) - Release v0.0.6 packages ([`38c3fde`](https://redirect.github.com/webpro-nl/knip/commit/38c3fdea710387b398b64f0dbad78faa2ab5bce6)) - Re-gen plugin list ([`419b8ef`](https://redirect.github.com/webpro-nl/knip/commit/419b8ef19baeba9365afa777c48980bfe7e1b1ba)) - Update sponsors page ([`6096578`](https://redirect.github.com/webpro-nl/knip/commit/60965788d91698d00fee0522d489069f4f1fe3b5)) - Add note to Nx plugin (close [#​1395](https://redirect.github.com/webpro-nl/knip/issues/1395)) ([`527d64e`](https://redirect.github.com/webpro-nl/knip/commit/527d64ea778850a6b82d3bb3bf2799eb36891e4f)) - Improve bun script file resolver (resolve [#​1409](https://redirect.github.com/webpro-nl/knip/issues/1409)) ([`e1ca76e`](https://redirect.github.com/webpro-nl/knip/commit/e1ca76e90845b0724191f0dba20cf205716b169f)) - Improve script handling ([#​1404](https://redirect.github.com/webpro-nl/knip/issues/1404)) ([`8d47360`](https://redirect.github.com/webpro-nl/knip/commit/8d47360686859d38d73c41fb322ac2680590ab4f)) - Add enabled plugins to tool results (avoid unnecessary entries) ([`906a49f`](https://redirect.github.com/webpro-nl/knip/commit/906a49f7136fa36f241aba022afee24580a055c6)) - Fix var name in ci job error handler ([`9d0ebe0`](https://redirect.github.com/webpro-nl/knip/commit/9d0ebe0794dd62dfdab0cc1fee72207eb0bab5dc)) [`v5.76.1`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.76.1) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/5.76.0...5.76.1) - Session re-export monorepo test setup ([#​1407](https://redirect.github.com/webpro-nl/knip/issues/1407)) ([`6905088`](https://redirect.github.com/webpro-nl/knip/commit/69050886a9e62b51bfba9b716841643f08b81854)) - thanks [@​Sheraff](https://redirect.github.com/Sheraff)! - Release v0.0.3 packages ([`344fab2`](https://redirect.github.com/webpro-nl/knip/commit/344fab2057419c7ef5fd275bef7bde6c12b6c83b)) - Fix jiti src + mcp docs ([`fa6cf89`](https://redirect.github.com/webpro-nl/knip/commit/fa6cf89431a1ff079ec113857871bf7f8c4faa81)) - Release v0.0.9 vscode-knip ([`69b32a9`](https://redirect.github.com/webpro-nl/knip/commit/69b32a9612cfca1410cb8d1166eab508d1a8ed0d)) - Walk through entry files (resolve [#​1397](https://redirect.github.com/webpro-nl/knip/issues/1397)) ([`96f884e`](https://redirect.github.com/webpro-nl/knip/commit/96f884eae5baaac5c9c0707ce7344657364fcf99)) - Fix glob-likes & links in workspaces in imports tree view ([`413cc8c`](https://redirect.github.com/webpro-nl/knip/commit/413cc8c57ca0e56b2cd541d6348733e3e4ed362b)) - Improve extension build script ([`dad8a8c`](https://redirect.github.com/webpro-nl/knip/commit/dad8a8c1e25bb107ab49eae85a3ae752d6064ca4)) [`v5.76.0`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.76.0) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/5.75.2...5.76.0) - fix: Unexpected error when pnpm catalogs are empty ([#​1406](https://redirect.github.com/webpro-nl/knip/issues/1406)) ([`e2dc8ba`](https://redirect.github.com/webpro-nl/knip/commit/e2dc8ba8f935f07bad08d2d7e7562f111fa65da7)) - thanks [@​Promise2679](https://redirect.github.com/Promise2679)! - Release v0.0.3 packages ([`b4baaa0`](https://redirect.github.com/webpro-nl/knip/commit/b4baaa03f4247b1e8470a2e10f1fa91262c3efd2)) - Release v0.0.8 vscode-knip ([`3af5727`](https://redirect.github.com/webpro-nl/knip/commit/3af5727104099ad3a9bac60af59c0db60ee61f90)) - Fix link to self ([`63e5143`](https://redirect.github.com/webpro-nl/knip/commit/63e51438551b48cac2e723d430a677e5997d3d7b)) - Fix excessive output/handling for files outside project scope ([`7df0da8`](https://redirect.github.com/webpro-nl/knip/commit/7df0da846dae10bea15f12514051c926793a9e85)) - Add `getDependencyUsage` operation to explorer ([`3ff7afa`](https://redirect.github.com/webpro-nl/knip/commit/3ff7afae57245bdba9801839b561b2276c2d0871)) - Add `--trace-dependency` flag + trace reporter ([`a4a8528`](https://redirect.github.com/webpro-nl/knip/commit/a4a8528528f60576f727761380e3e2fb11711ff1)) - Add dependency-usage-on-hover to LS + extension ([`c44d15b`](https://redirect.github.com/webpro-nl/knip/commit/c44d15be091eade246e846eb59e561fac8f5ec3a)) - Refactor getReferencedInputsHandler → createInputHandler ([`5b48fec`](https://redirect.github.com/webpro-nl/knip/commit/5b48fec78c0f999f2da64e55756602149c891b1f)) - Add & use `imports.externalRefs` ([`136ff8a`](https://redirect.github.com/webpro-nl/knip/commit/136ff8afc814a01860f715be8aee6bb478f3c299)) - Restore `workspace:*` protocol ([`e1eaa5e`](https://redirect.github.com/webpro-nl/knip/commit/e1eaa5ee6a59fe88913a574861505c5ef9067b53)) - Fix up test ([`9a2af6c`](https://redirect.github.com/webpro-nl/knip/commit/9a2af6c40b7e91236e75e7728ed3ac512fc878a1)) - Wrap up the refactors ([`c9f5abe`](https://redirect.github.com/webpro-nl/knip/commit/c9f5abe639bd085a5811503e928c7476b95ab286)) - Dedupe dependency trace output ([`0950f66`](https://redirect.github.com/webpro-nl/knip/commit/0950f661f6335f5a5d7e084f9be8d22d3378dee3)) - Add entries + screenshot to docs ([`444b567`](https://redirect.github.com/webpro-nl/knip/commit/444b5678f70b2d705aee9bd967eec23b78e3710f)) - Conditions apply ([`65168ec`](https://redirect.github.com/webpro-nl/knip/commit/65168ece74749c60cab3840103b96ef2699e3fe1)) - Prepare for `ovsx publish` ([`ed49b41`](https://redirect.github.com/webpro-nl/knip/commit/ed49b41b920392868e98900d4c67ee037de8d859)) - Deterministic order for issues/hints + fix up specs ([`0faa3b8`](https://redirect.github.com/webpro-nl/knip/commit/0faa3b8babc5708c9c719f0f5756c3655ef00cfd)) [`v5.75.2`](https://redirect.github.com/webpro-nl/knip/releases/tag/5.75.2) [Compare Source](https://redirect.github.com/webpro-nl/knip/compare/5.75.1...5.75.2) - Release v0.0.2 packages ([`a4f7f32`](https://redirect.github.com/webpro-nl/knip/commit/a4f7f32e170805fe4f2c845ce2b65572871e508e)) - Wrap up blog post ([`ef4b300`](https://redirect.github.com/webpro-nl/knip/commit/ef4b300eb37fd121748aeac67f9074172b5139eb)) - Add build & publish script for `vscode-knip` ([`fc88bd8`](https://redirect.github.com/webpro-nl/knip/commit/fc88bd82a7015d99c0983fcd9bec640e1c0e8e55)) - Refactor session tests a bit ([`c8a7104`](https://redirect.github.com/webpro-nl/knip/commit/c8a7104f2f02da4209090799fa14e8ebfcf08b1c)) - Add fixture for re-export count ([#​1397](https://redirect.github.com/webpro-nl/knip/issues/1397)) ([`0f11b65`](https://redirect.github.com/webpro-nl/knip/commit/0f11b65edee595e83cd9fa603b7b841a1fcf18b4)) - Externalize jiti (resolve [#​1400](https://redirect.github.com/webpro-nl/knip/issues/1400)) ([`a54aa6b`](https://redirect.github.com/webpro-nl/knip/commit/a54aa6b15ea3064214c364065675336661063316)) - Add `op` to `endOfCommandBinaries` (resolve [#​1399](https://redirect.github.com/webpro-nl/knip/issues/1399)) ([`164532d`](https://redirect.github.com/webpro-nl/knip/commit/164532dbdc43b5a2387ec5afacf086da10e7e7ed)) - Rename parsedCLIArgs → args ([`0432ce5`](https://redirect.github.com/webpro-nl/knip/commit/0432ce50d9db35fba68a3e2187e2c481fa0195f8)) - Add `configFilePath` setting ([`843c2ff`](https://redirect.github.com/webpro-nl/knip/commit/843c2ff950e74cc16351e0d026914f3e783793ee)) - Remove unused imports ([`6ecf4e7`](https://redirect.github.com/webpro-nl/knip/commit/6ecf4e7211eb4cb286c84ce2bc9147194abdd497)) </details> <details> <summary>TypeStrong/TypeDoc (typedoc)</summary> [`v0.28.15`](https://redirect.github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v02815-2025-11-29) [Compare Source](https://redirect.github.com/TypeStrong/TypeDoc/compare/v0.28.14...v0.28.15) - The `gitRevision` option now accepts the special value `{branch}`, which indicates source links should use the current git branch for links, [#​3041](https://redirect.github.com/TypeStrong/TypeDoc/issues/3041). - Introduced `validation.invalidPath` for suppressing warnings caused by referencing relative paths which do not exist when building the documentation, [#​3033](https://redirect.github.com/TypeStrong/TypeDoc/issues/3033). - API: Introduced `Logger.validationWarning` for validation which occurs during conversion rather than during TypeDoc's normal validation step, [#​3033](https://redirect.github.com/TypeStrong/TypeDoc/issues/3033). </details> --- 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, 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://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/rolldown/rolldown). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update github-actions (#7679) > **Note:** This PR body was truncated due to platform limits. This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [CodSpeedHQ/action](https://redirect.github.com/CodSpeedHQ/action) | action | minor | `v4.4.1` -> `v4.5.1` | | [actions-cool/issues-helper](https://redirect.github.com/actions-cool/issues-helper) | action | patch | `v3.7.4` -> `v3.7.5` | | [oxc-project/setup-node](https://redirect.github.com/oxc-project/setup-node) | action | patch | `v1.0.5` -> `v1.0.6` | | [taiki-e/install-action](https://redirect.github.com/taiki-e/install-action) | action | patch | `v2.65.1` -> `v2.65.6` | --- <details> <summary>CodSpeedHQ/action (CodSpeedHQ/action)</summary> [`v4.5.1`](https://redirect.github.com/CodSpeedHQ/action/releases/tag/v4.5.1) [Compare Source](https://redirect.github.com/CodSpeedHQ/action/compare/v4.4.1...v4.5.1) - Remove projects query from the exec polling by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​173](https://redirect.github.com/CodSpeedHQ/runner/pull/173) - Fetch project from API when running outside of git repo by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add get or create project repository query by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Automatically install exec-harness for exec subcommand by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Auto install codspeed-memtrack during executor setup by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Serialize events serially to allow streamed decoding by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​172](https://redirect.github.com/CodSpeedHQ/runner/pull/172) - Parse perf file for memmap events instead of relying on /proc/pid/maps by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Use the projects upload enpdoint in exec command by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add exec subcommand and refactor run subcommand by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add exec-harness binary by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add memory executor by [@​not-matthias](https://redirect.github.com/not-matthias) - Add memtrack crate by [@​not-matthias](https://redirect.github.com/not-matthias) - Add artifact types by [@​not-matthias](https://redirect.github.com/not-matthias) - Add shared fifo by [@​not-matthias](https://redirect.github.com/not-matthias) - Add new fifo commands by [@​not-matthias](https://redirect.github.com/not-matthias) - Support simulation for free-threaded python by [@​adriencaccia](https://redirect.github.com/adriencaccia) in [#​167](https://redirect.github.com/CodSpeedHQ/runner/pull/167) - fix: specify package when using branch/ref by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​162](https://redirect.github.com/CodSpeedHQ/action/pull/162) - fix: properly check for allow\_empty input by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​164](https://redirect.github.com/CodSpeedHQ/action/pull/164) - Filter out arm debugging symbols by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​179](https://redirect.github.com/CodSpeedHQ/runner/pull/179) - Filter out empty named symbols when building perf-map by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​176](https://redirect.github.com/CodSpeedHQ/runner/pull/176) - Do not break support for no reason when changing integration hooks protocol version by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​175](https://redirect.github.com/CodSpeedHQ/runner/pull/175) - Remove dirty retry on timeout and simply increase timeout for GQL client by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Stop hanging indefinitely if process fails to start in memory executor by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​171](https://redirect.github.com/CodSpeedHQ/runner/pull/171) - Remove the password prompt from the run\_with\_sudo dialog by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Collect events in thread to avoid mutex overhead by [@​not-matthias](https://redirect.github.com/not-matthias) - Convert events in thread to avoid blocking at the end by [@​not-matthias](https://redirect.github.com/not-matthias) - Compress only when size exceeds threshold by [@​not-matthias](https://redirect.github.com/not-matthias) - Forward environment in memory executor by [@​not-matthias](https://redirect.github.com/not-matthias) - Fix plan test in CI by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#​165](https://redirect.github.com/CodSpeedHQ/runner/pull/165) - Prevent nextest from running valgrind and memcheck concurrently by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Stop ignoring samples by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Use correct name for unwind\_data trait declaration by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Stop filtering out zero sized symbol by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Request OIDC token after creating profile archive by [@​fargito](https://redirect.github.com/fargito) in [#​170](https://redirect.github.com/CodSpeedHQ/runner/pull/170) - Remove snapshots that were not part of lfs by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​166](https://redirect.github.com/CodSpeedHQ/runner/pull/166) - Always print memory mapping logs by [@​not-matthias](https://redirect.github.com/not-matthias) - Create a dedicated execution\_context that holds runtime information by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Move executor and instruments modules out of `run` module by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - docs(examples): add go and cpp examples by [@​fargito](https://redirect.github.com/fargito) in [#​161](https://redirect.github.com/CodSpeedHQ/action/pull/161) - Ignore some tags in the changelog - Bump protocol version by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​174](https://redirect.github.com/CodSpeedHQ/runner/pull/174) - Add CONTRIBUTING.md by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add cargo-dist arguments for release by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Reset exec-harness and memtrack crate versions to 1.0.0 ahead of first release by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Switch to pr run mode plan only for pr by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Add test to ensure path is properly forwarded by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​169](https://redirect.github.com/CodSpeedHQ/runner/pull/169) - Make the exec command work outside of git repos by [@​GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Do not publish memtrack to crates.io by [@​adriencaccia](https://redirect.github.com/adriencaccia) - Dont run valgrind and memory tests at the same time by [@​not-matthias](https://redirect.github.com/not-matthias) in [#​164](https://redirect.github.com/CodSpeedHQ/runner/pull/164) - Add test-log to see output on failures by [@​not-matthias](https://redirect.github.com/not-matthias) - Add workspace dependencies by [@​not-matthias](https://redirect.github.com/not-matthias) ```sh curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-installer.sh | sh ``` | File | Platform | Checksum | | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------- | | [codspeed-runner-aarch64-unknown-linux-musl.tar.gz](https://redirect.github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-aarch64-unknown-linux-musl.tar.gz) | ARM64 MUSL Linux | [checksum](https://redirect.github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-aarch64-unknown-linux-musl.tar.gz.sha256) | | [codspeed-runner-x86\_64-unknown-linux-musl.tar.gz](https://redirect.github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-x86_64-unknown-linux-musl.tar.gz) | x64 MUSL Linux | [checksum](https://redirect.github.com/CodSpeedHQ/runner/releases/download/v4.5.1/codspeed-runner-x86_64-unknown-linux-musl.tar.gz.sha256) | **Full Runner Changelog**: <https://github.com/CodSpeedHQ/runner/blob/main/CHANGELOG.md> **Full Changelog**: <https://github.com/CodSpeedHQ/action/compare/v4.4.1...v4.5.1> </details> <details> <summary>actions-cool/issues-helper (actions-cool/issues-helper)</summary> [`v3.7.5`](https://redirect.github.com/actions-cool/issues-helper/blob/HEAD/CHANGELOG.md#v375) [Compare Source](https://redirect.github.com/actions-cool/issues-helper/compare/v3.7.4...v3.7.5) `2025.12.24` - 🐞 fix: the total of inactive issues output is incorrect. [#​222](https://redirect.github.com/actions-cool/issues-helper/pull/222) [@​btea](https://redirect.github.com/btea) </details> <details> <summary>oxc-project/setup-node (oxc-project/setup-node)</summary> [`v1.0.6`](https://redirect.github.com/oxc-project/setup-node/compare/v1.0.5...v1.0.6) [Compare Source](https://redirect.github.com/oxc-project/setup-node/compare/v1.0.5...v1.0.6) </details> <details> <summary>taiki-e/install-action (taiki-e/install-action)</summary> [`v2.65.6`](https://redirect.github.com/taiki-e/install-action/blob/HEAD/CHANGELOG.md#100---2021-12-30) [Compare Source](https://redirect.github.com/taiki-e/install-action/compare/v2.65.5...v2.65.6) Initial release [Unreleased]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.6...HEAD [2.65.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.5...v2.65.6 [2.65.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.4...v2.65.5 [2.65.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.3...v2.65.4 [2.65.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.2...v2.65.3 [2.65.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.1...v2.65.2 [2.65.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.65.0...v2.65.1 [2.65.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.64.2...v2.65.0 [2.64.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.64.1...v2.64.2 [2.64.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.64.0...v2.64.1 [2.64.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.63.3...v2.64.0 [2.63.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.63.2...v2.63.3 [2.63.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.63.1...v2.63.2 [2.63.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.63.0...v2.63.1 [2.63.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.67...v2.63.0 [2.62.67]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.66...v2.62.67 [2.62.66]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.65...v2.62.66 [2.62.65]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.64...v2.62.65 [2.62.64]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.63...v2.62.64 [2.62.63]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.62...v2.62.63 [2.62.62]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.61...v2.62.62 [2.62.61]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.60...v2.62.61 [2.62.60]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.59...v2.62.60 [2.62.59]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.58...v2.62.59 [2.62.58]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.57...v2.62.58 [2.62.57]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.56...v2.62.57 [2.62.56]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.55...v2.62.56 [2.62.55]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.54...v2.62.55 [2.62.54]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.53...v2.62.54 [2.62.53]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.52...v2.62.53 [2.62.52]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.51...v2.62.52 [2.62.51]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.50...v2.62.51 [2.62.50]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.49...v2.62.50 [2.62.49]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.48...v2.62.49 [2.62.48]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.47...v2.62.48 [2.62.47]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.46...v2.62.47 [2.62.46]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.45...v2.62.46 [2.62.45]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.44...v2.62.45 [2.62.44]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.43...v2.62.44 [2.62.43]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.42...v2.62.43 [2.62.42]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.41...v2.62.42 [2.62.41]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.40...v2.62.41 [2.62.40]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.39...v2.62.40 [2.62.39]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.38...v2.62.39 [2.62.38]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.37...v2.62.38 [2.62.37]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.36...v2.62.37 [2.62.36]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.35...v2.62.36 [2.62.35]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.34...v2.62.35 [2.62.34]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.33...v2.62.34 [2.62.33]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.32...v2.62.33 [2.62.32]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.31...v2.62.32 [2.62.31]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.30...v2.62.31 [2.62.30]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.29...v2.62.30 [2.62.29]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.28...v2.62.29 [2.62.28]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.27...v2.62.28 [2.62.27]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.26...v2.62.27 [2.62.26]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.25...v2.62.26 [2.62.25]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.24...v2.62.25 [2.62.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.23...v2.62.24 [2.62.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.22...v2.62.23 [2.62.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.21...v2.62.22 [2.62.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.20...v2.62.21 [2.62.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.19...v2.62.20 [2.62.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.18...v2.62.19 [2.62.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.17...v2.62.18 [2.62.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.16...v2.62.17 [2.62.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.15...v2.62.16 [2.62.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.14...v2.62.15 [2.62.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.13...v2.62.14 [2.62.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.12...v2.62.13 [2.62.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.11...v2.62.12 [2.62.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.10...v2.62.11 [2.62.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.9...v2.62.10 [2.62.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.8...v2.62.9 [2.62.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.7...v2.62.8 [2.62.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.6...v2.62.7 [2.62.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.5...v2.62.6 [2.62.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.4...v2.62.5 [2.62.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.3...v2.62.4 [2.62.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.2...v2.62.3 [2.62.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.1...v2.62.2 [2.62.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.62.0...v2.62.1 [2.62.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.13...v2.62.0 [2.61.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.12...v2.61.13 [2.61.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.11...v2.61.12 [2.61.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.10...v2.61.11 [2.61.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.9...v2.61.10 [2.61.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.8...v2.61.9 [2.61.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.7...v2.61.8 [2.61.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.6...v2.61.7 [2.61.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.5...v2.61.6 [2.61.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.4...v2.61.5 [2.61.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.3...v2.61.4 [2.61.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.2...v2.61.3 [2.61.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.1...v2.61.2 [2.61.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.61.0...v2.61.1 [2.61.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.60.0...v2.61.0 [2.60.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.59.1...v2.60.0 [2.59.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.59.0...v2.59.1 [2.59.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.33...v2.59.0 [2.58.33]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.32...v2.58.33 [2.58.32]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.31...v2.58.32 [2.58.31]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.30...v2.58.31 [2.58.30]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.29...v2.58.30 [2.58.29]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.28...v2.58.29 [2.58.28]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.27...v2.58.28 [2.58.27]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.26...v2.58.27 [2.58.26]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.25...v2.58.26 [2.58.25]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.24...v2.58.25 [2.58.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.23...v2.58.24 [2.58.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.22...v2.58.23 [2.58.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.21...v2.58.22 [2.58.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.20...v2.58.21 [2.58.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.19...v2.58.20 [2.58.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.18...v2.58.19 [2.58.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.17...v2.58.18 [2.58.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.16...v2.58.17 [2.58.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.15...v2.58.16 [2.58.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.14...v2.58.15 [2.58.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.13...v2.58.14 [2.58.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.12...v2.58.13 [2.58.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.11...v2.58.12 [2.58.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.10...v2.58.11 [2.58.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.9...v2.58.10 [2.58.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.8...v2.58.9 [2.58.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.7...v2.58.8 [2.58.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.6...v2.58.7 [2.58.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.5...v2.58.6 [2.58.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.4...v2.58.5 [2.58.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.3...v2.58.4 [2.58.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.2...v2.58.3 [2.58.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.1...v2.58.2 [2.58.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.58.0...v2.58.1 [2.58.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.8...v2.58.0 [2.57.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.7...v2.57.8 [2.57.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.6...v2.57.7 [2.57.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.5...v2.57.6 [2.57.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.4...v2.57.5 [2.57.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.3...v2.57.4 [2.57.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.2...v2.57.3 [2.57.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.1...v2.57.2 [2.57.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.57.0...v2.57.1 [2.57.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.24...v2.57.0 [2.56.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.23...v2.56.24 [2.56.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.22...v2.56.23 [2.56.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.21...v2.56.22 [2.56.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.20...v2.56.21 [2.56.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.19...v2.56.20 [2.56.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.18...v2.56.19 [2.56.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.17...v2.56.18 [2.56.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.16...v2.56.17 [2.56.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.15...v2.56.16 [2.56.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.14...v2.56.15 [2.56.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.13...v2.56.14 [2.56.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.12...v2.56.13 [2.56.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.11...v2.56.12 [2.56.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.10...v2.56.11 [2.56.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.9...v2.56.10 [2.56.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.8...v2.56.9 [2.56.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.7...v2.56.8 [2.56.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.6...v2.56.7 [2.56.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.5...v2.56.6 [2.56.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.4...v2.56.5 [2.56.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.3...v2.56.4 [2.56.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.2...v2.56.3 [2.56.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.1...v2.56.2 [2.56.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.56.0...v2.56.1 [2.56.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.4...v2.56.0 [2.55.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.3...v2.55.4 [2.55.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.2...v2.55.3 [2.55.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.1...v2.55.2 [2.55.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.55.0...v2.55.1 [2.55.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.54.3...v2.55.0 [2.54.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.54.2...v2.54.3 [2.54.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.54.1...v2.54.2 [2.54.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.54.0...v2.54.1 [2.54.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.53.2...v2.54.0 [2.53.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.53.1...v2.53.2 [2.53.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.53.0...v2.53.1 [2.53.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.8...v2.53.0 [2.52.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.7...v2.52.8 [2.52.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.6...v2.52.7 [2.52.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.5...v2.52.6 [2.52.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.4...v2.52.5 [2.52.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.3...v2.52.4 [2.52.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.2...v2.52.3 [2.52.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.1...v2.52.2 [2.52.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.52.0...v2.52.1 [2.52.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.51.3...v2.52.0 [2.51.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.51.2...v2.51.3 [2.51.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.51.1...v2.51.2 [2.51.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.51.0...v2.51.1 [2.51.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.10...v2.51.0 [2.50.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.9...v2.50.10 [2.50.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.8...v2.50.9 [2.50.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.7...v2.50.8 [2.50.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.6...v2.50.7 [2.50.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.5...v2.50.6 [2.50.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.4...v2.50.5 [2.50.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.3...v2.50.4 [2.50.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.2...v2.50.3 [2.50.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.1...v2.50.2 [2.50.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.50.0...v2.50.1 [2.50.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.50...v2.50.0 [2.49.50]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.49...v2.49.50 [2.49.49]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.48...v2.49.49 [2.49.48]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.47...v2.49.48 [2.49.47]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.46...v2.49.47 [2.49.46]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.45...v2.49.46 [2.49.45]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.44...v2.49.45 [2.49.44]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.43...v2.49.44 [2.49.43]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.42...v2.49.43 [2.49.42]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.41...v2.49.42 [2.49.41]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.40...v2.49.41 [2.49.40]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.39...v2.49.40 [2.49.39]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.38...v2.49.39 [2.49.38]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.37...v2.49.38 [2.49.37]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.36...v2.49.37 [2.49.36]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.35...v2.49.36 [2.49.35]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.34...v2.49.35 [2.49.34]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.33...v2.49.34 [2.49.33]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.32...v2.49.33 [2.49.32]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.31...v2.49.32 [2.49.31]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.30...v2.49.31 [2.49.30]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.29...v2.49.30 [2.49.29]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.28...v2.49.29 [2.49.28]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.27...v2.49.28 [2.49.27]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.26...v2.49.27 [2.49.26]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.25...v2.49.26 [2.49.25]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.24...v2.49.25 [2.49.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.23...v2.49.24 [2.49.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.22...v2.49.23 [2.49.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.21...v2.49.22 [2.49.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.20...v2.49.21 [2.49.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.19...v2.49.20 [2.49.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.18...v2.49.19 [2.49.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.17...v2.49.18 [2.49.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.16...v2.49.17 [2.49.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.15...v2.49.16 [2.49.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.14...v2.49.15 [2.49.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.13...v2.49.14 [2.49.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.12...v2.49.13 [2.49.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.11...v2.49.12 [2.49.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.10...v2.49.11 [2.49.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.9...v2.49.10 [2.49.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.8...v2.49.9 [2.49.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.7...v2.49.8 [2.49.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.6...v2.49.7 [2.49.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.5...v2.49.6 [2.49.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.4...v2.49.5 [2.49.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.3...v2.49.4 [2.49.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.2...v2.49.3 [2.49.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.1...v2.49.2 [2.49.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.49.0...v2.49.1 [2.49.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.22...v2.49.0 [2.48.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.21...v2.48.22 [2.48.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.20...v2.48.21 [2.48.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.19...v2.48.20 [2.48.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.18...v2.48.19 [2.48.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.17...v2.48.18 [2.48.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.16...v2.48.17 [2.48.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.15...v2.48.16 [2.48.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.14...v2.48.15 [2.48.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.13...v2.48.14 [2.48.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.12...v2.48.13 [2.48.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.11...v2.48.12 [2.48.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.10...v2.48.11 [2.48.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.9...v2.48.10 [2.48.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.8...v2.48.9 [2.48.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.7...v2.48.8 [2.48.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.6...v2.48.7 [2.48.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.5...v2.48.6 [2.48.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.4...v2.48.5 [2.48.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.3...v2.48.4 [2.48.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.2...v2.48.3 [2.48.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.1...v2.48.2 [2.48.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.48.0...v2.48.1 [2.48.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.32...v2.48.0 [2.47.32]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.31...v2.47.32 [2.47.31]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.30...v2.47.31 [2.47.30]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.29...v2.47.30 [2.47.29]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.28...v2.47.29 [2.47.28]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.27...v2.47.28 [2.47.27]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.26...v2.47.27 [2.47.26]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.25...v2.47.26 [2.47.25]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.24...v2.47.25 [2.47.24]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.23...v2.47.24 [2.47.23]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.22...v2.47.23 [2.47.22]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.21...v2.47.22 [2.47.21]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.20...v2.47.21 [2.47.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.19...v2.47.20 [2.47.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.18...v2.47.19 [2.47.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.17...v2.47.18 [2.47.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.16...v2.47.17 [2.47.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.15...v2.47.16 [2.47.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.14...v2.47.15 [2.47.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.13...v2.47.14 [2.47.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.12...v2.47.13 [2.47.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.11...v2.47.12 [2.47.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.10...v2.47.11 [2.47.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.9...v2.47.10 [2.47.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.8...v2.47.9 [2.47.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.7...v2.47.8 [2.47.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.6...v2.47.7 [2.47.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.5...v2.47.6 [2.47.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.4...v2.47.5 [2.47.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.3...v2.47.4 [2.47.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.2...v2.47.3 [2.47.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.1...v2.47.2 [2.47.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.47.0...v2.47.1 [2.47.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.20...v2.47.0 [2.46.20]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.19...v2.46.20 [2.46.19]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.18...v2.46.19 [2.46.18]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.17...v2.46.18 [2.46.17]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.16...v2.46.17 [2.46.16]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.15...v2.46.16 [2.46.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.14...v2.46.15 [2.46.14]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.13...v2.46.14 [2.46.13]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.12...v2.46.13 [2.46.12]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.11...v2.46.12 [2.46.11]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.10...v2.46.11 [2.46.10]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.9...v2.46.10 [2.46.9]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.8...v2.46.9 [2.46.8]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.7...v2.46.8 [2.46.7]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.6...v2.46.7 [2.46.6]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.5...v2.46.6 [2.46.5]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.4...v2.46.5 [2.46.4]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.3...v2.46.4 [2.46.3]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.2...v2.46.3 [2.46.2]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.1...v2.46.2 [2.46.1]: https://redirect.github.com/taiki-e/install-action/compare/v2.46.0...v2.46.1 [2.46.0]: https://redirect.github.com/taiki-e/install-action/compare/v2.45.15...v2.46.0 [2.45.15]: https://redirect.github.com/taiki-e/install-action/compare/v2.45.14...v2.45.15 [2.45.14]: https://r…
## [1.0.0-beta.58] - 2025-12-31 ### 💥 BREAKING CHANGES - experimental/devtools: rename InputOptions#debug to InputOptions#devtools (#7686) by @Copilot ### 🚀 Features - implement target feature check in `should_transform_js` for raw options (#7697) by @shulaoda - support `output.dynamicImportInCjs` option (#7677) by @shulaoda - types: expose `ChecksOptions` type (#7653) by @sapphi-red ### 🐛 Bug Fixes - export runtime helpers for cross-chunk access (#7658) by @shulaoda - cjs namespace merging regression (#7665) by @IWANABETHATGUY - replace panic with proper error handling for hash placeholder generation (#7661) by @shulaoda - remove the blank line between shebang and postBanner (#7643) by @btea - rolldown_plugin_vite_reporter: apply padding before ANSI coloring for proper size column alignment (#7649) by @shulaoda ### 🚜 Refactor - rust: use `StableModuleId` as the map key if possible (#7718) by @hyf0 - rust: return `StableModuleId` instead of `&str` from `Module#stable_id()` (#7717) by @hyf0 - rust: return correct stable id of external module from `Module#stable_id()` (#7716) by @hyf0 - rust: introduce `StableModuleId` type (#7715) by @hyf0 - rust: reduce unnecessary `id.as_arc_str().clone().into()` (#7714) by @hyf0 - rust: remove `ModuleId#resource_id` and use `as_arc_str` directly (#7710) by @hyf0 - rust: remove unused `Module#id_clone` (#7709) by @hyf0 - rust: remove `Module#id_as_str` and use `Module#id` directly (#7708) by @hyf0 - consolidate namespace call analysis into import analyzer (#7657) by @IWANABETHATGUY - rust: make `ExternalModule#id` have the type `ModuleId` (#7707) by @hyf0 - rust: rename `Module#id` to `Module#id_as_str` (#7706) by @hyf0 - rust: use `ModuleId` instead of raw `ArcStr` for `ScanStageCache` (#7701) by @hyf0 - simplify error propagation in cache merge (#7702) by @shulaoda - use `ModuleId` as the type of `ResolvedId#id` (#7694) by @hyf0 - types: rename `resolved_request_info.rs` to `resolved_id.rs` and move its contents (#7687) by @hyf0 - devtools: emit data to `<CWD>/node_modules/.rolldown` (#7692) by @hyf0 - use `InvalidOption` for hash placeholder generation errors (#7674) by @shulaoda - rolldown_error: remove dependency on rolldown_utils (#7672) by @shulaoda - use nodejs-built-in-modules v1.0.0 directly in callsites (#7667) by @Boshen ### 📚 Documentation - migrate input options content from options to auto gen docs (#7663) by @mdong1909 - create reference index page (#7659) by @mdong1909 - tweak auto-generated reference output (#7654) by @sapphi-red - initialize auto-gen docs (#7252) by @mdong1909 ### ⚙️ Miscellaneous Tasks - deps: update napi (#7705) by @renovate[bot] - pin Node.js version to 24.12.0 LTS in .node-version file (#7713) by @Copilot - update esbuild test reasons (#7703) by @sapphi-red - deps: update crate-ci/typos action to v1.40.1 (#7696) by @renovate[bot] - deps: update oxc to v0.106.0 (#7512) by @renovate[bot] - js: replace dprint with oxfmt (#7214) by @Boshen - deps: update dependency oxlint to v1.36.0 (#7691) by @renovate[bot] - deps: update github-actions (#7679) by @renovate[bot] - deps: update npm packages (#7680) by @renovate[bot] - deps: update rust crates (#7678) by @renovate[bot] - deps: update oxc resolver to v11.16.2 (#7668) by @renovate[bot] - add API reference files to knip entry points (#7669) by @Copilot - deps: update notify (#7651) by @sapphi-red - add `homepage` field to package.json (#7648) by @trivikr - deps: update oxc resolver to v11.16.1 (#7647) by @renovate[bot] - deps: update rolldown-plugin-dts to 0.20.0 (#7645) by @shulaoda Co-authored-by: shulaoda <[email protected]>
|
The default value for |
The JSDoc comment incorrectly stated `@default false` for `propertyReadSideEffects`, but the actual default in the Rust implementation is `'always'`. Also updated the description to say "Set to `false` for more aggressive tree-shaking behavior" since the default is now correctly documented as `'always'`. Fixes the issue identified in PR #7663 comment #3737180026. Co-authored-by: hyf0 <[email protected]>
The JSDoc for `treeshake.propertyReadSideEffects` incorrectly documented `@default false`, but the actual Rust implementation defaults to `'always'`. Reported in #7663 (comment) ### Changes - Fixed `@default false` → `@default 'always'` in `packages/rolldown/src/types/module-side-effects.ts` - Updated description to reflect that `false` is the opt-in aggressive behavior, not the default <!-- START COPILOT CODING AGENT SUFFIX --> <!-- START COPILOT ORIGINAL PROMPT --> <details> <summary>Original prompt</summary> > Based on #7663 (comment), create issue for it with meaningful explanation </details> <!-- START COPILOT CODING AGENT TIPS --> --- 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs.
This PR copies over all the manually written input options content from /options to /reference.
Depending on length, content is either written directly in JSDocs or @include in a separate markdown file.
contextas an exampleOption:
Reference:

Additional todos for auto-gen docs