Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
aa18a19
chore(deps): update patch npm dependencies (#12647)
renovate[bot] Jan 7, 2026
ece0fee
chore(deps): update patch crates (#12646)
renovate[bot] Jan 7, 2026
edce5bd
chore: run ci/eco-ci/eco-benchmark on v2 branch (#12650)
LingyuCoder Jan 7, 2026
44a7564
fix: report error when access module_graph in loader (#12639)
hardfist Jan 7, 2026
25a4021
feat(rstest): add preserveNewUrl option to keep new URL untouched (#1…
fi3ework Jan 7, 2026
d424733
fix(lint): enable @typescript-eslint/await-thenable rule (#12644)
tt-a1i Jan 7, 2026
86634a0
refactor: afterCodeGeneration hook use read only compilation ref (#12…
stormslowly Jan 7, 2026
f4c7791
fix(lint): enable @typescript-eslint/require-await rule (#12664)
tt-a1i Jan 7, 2026
9400b65
chore(deps): update github-actions (#12645)
renovate[bot] Jan 8, 2026
4ecc5cb
fix(lint): enable @typescript-eslint/return-await rule (#12665)
tt-a1i Jan 8, 2026
ed4b6ed
refactor: make compilation readonly for runtimeModule hook (#12670)
hardfist Jan 8, 2026
3b1926f
feat: add constructor name for JS runtime modules (#12673)
LingyuCoder Jan 8, 2026
2feb455
fix: incremental rebuild no code generation entry panic (#12643)
jerrykingxyz Jan 8, 2026
70ffab9
refactor: unify artifact clear logic (#12677)
hardfist Jan 8, 2026
29642b2
refactor: use DerfOpt's take/replace assist artifact mutation (#12659)
stormslowly Jan 8, 2026
219a773
feat: rspack_cacheable context expose project root (#12685)
jerrykingxyz Jan 9, 2026
0d1d58f
feat: rspack_cacheable add portable path & portable string (#12688)
jerrykingxyz Jan 9, 2026
a4929d0
feat(treeshaking): optimize pure functions
JSerFeng Jan 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/binary-limit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:

steps:
- name: GitHub Script
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd
uses: actions/github-script@450193c5abd4cdb17ba9f3ffcfe8f635c4bb6c2a
with:
script: |
const limit = parseInt("${{ inputs.size-threshold }}") || 51200;
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
push:
branches:
- main
- v2
# Ignore md files in push to skip workflow when only documentation changes
paths-ignore:
- '**/*.md'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
push:
branches:
- main
- v2
paths-ignore:
- '**/*.md'
- 'website/**'
Expand Down Expand Up @@ -108,7 +109,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- uses: crate-ci/typos@5c19779cb52ea50e151f5a10333ccd269227b5ae # v1.41.0
- uses: crate-ci/typos@bb4666ad77b539a6b4ce4eda7ebb6de553704021 # v1.42.0
with:
files: .

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
push:
branches:
- main
- v2
paths:
- '.github/workflows/**'
- 'crates/**'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
push:
branches:
- main
- v2
paths-ignore:
- '**/*.md'
- 'website/**'
Expand All @@ -23,7 +24,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
cancel-in-progress: ${{ github.ref_name != 'main' && github.ref_name != 'v2' }}

permissions:
# Allow commenting on issues for `reusable-build.yml`
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
push:
branches:
- main
- v2
paths-ignore:
- '**/*.md'
- 'website/**'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ on:
push:
branches:
- main
- v2
paths-ignore:
- '**/*.md'
- 'website/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
key: build-bench-${{ inputs.target }}

- name: Install cargo-codspeed binary
uses: taiki-e/install-action@0e76c5c569f13f7eb21e8e5b26fe710062b57b62 # v2
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2
with:
tool: cargo-codspeed@2.10.1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
key: build-bench-${{ inputs.target }}

- name: Install cargo-codspeed binary
uses: taiki-e/install-action@0e76c5c569f13f7eb21e8e5b26fe710062b57b62 # v2
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2
with:
tool: cargo-codspeed@2.10.1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
run: cargo codegen

- name: Install cargo-deny
uses: taiki-e/install-action@0e76c5c569f13f7eb21e8e5b26fe710062b57b62 # v2
uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # v2
with:
tool: cargo-deny@0.18.3
- name: Check licenses
Expand Down
Loading
Loading