Skip to content

Commit 817bc7a

Browse files
authored
Merge pull request #5742 from wasmerio/release-6.1.0-rc.5
Release 6.1.0-rc.5
2 parents 3c01140 + d0e4bf9 commit 817bc7a

File tree

38 files changed

+318
-269
lines changed

38 files changed

+318
-269
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
tags:
1313
# this is _not_ a regex, see: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
1414
- "[0-9]+.[0-9]+.[0-9]+*"
15+
pull_request:
16+
branches:
17+
- "main"
1518
workflow_dispatch:
1619
inputs:
1720
release:
@@ -38,6 +41,7 @@ jobs:
3841
3942
build:
4043
name: Build on ${{ matrix.build }}
44+
if: github.event_name != 'pull_request' || startsWith(github.head_ref, 'release-')
4145
runs-on: ${{ matrix.os }}
4246
needs: setup
4347
strategy:
@@ -334,6 +338,7 @@ jobs:
334338

335339
windows_gnu:
336340
name: Windows GNU
341+
if: github.event_name != 'pull_request' || startsWith(github.head_ref, 'release-')
337342
runs-on: ubuntu-latest
338343
steps:
339344
- uses: actions/checkout@v5
@@ -402,6 +407,7 @@ jobs:
402407

403408
darwin_aarch64_jsc:
404409
name: macOS aarch64 (JSC)
410+
if: github.event_name != 'pull_request' || startsWith(github.head_ref, 'release-')
405411
runs-on: macos-13
406412
steps:
407413
- uses: actions/checkout@v5
@@ -435,6 +441,7 @@ jobs:
435441

436442
darwin_x86_64_jsc:
437443
name: macOS x86_64 (JSC)
444+
if: github.event_name != 'pull_request' || startsWith(github.head_ref, 'release-')
438445
runs-on: macos-13
439446
steps:
440447
- uses: actions/checkout@v5
@@ -464,6 +471,7 @@ jobs:
464471

465472
linux_riscv64:
466473
name: Linux riscv64
474+
if: github.event_name != 'pull_request' || startsWith(github.head_ref, 'release-')
467475
runs-on: ubuntu-latest
468476
steps:
469477
- uses: actions/checkout@v5
@@ -530,7 +538,7 @@ jobs:
530538
release:
531539
needs: [setup, build, windows_gnu, linux_riscv64]
532540
runs-on: ubuntu-latest
533-
if: needs.setup.outputs.DOING_RELEASE == '1' || github.event.inputs.release != ''
541+
if: (needs.setup.outputs.DOING_RELEASE == '1' || github.event.inputs.release != '') && github.event_name != 'pull_request'
534542
steps:
535543
- name: Download the Artifacts
536544
uses: actions/download-artifact@v4

CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,35 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C
88

99
## **Unreleased**
1010

11-
## 6.1.0-rc.4 - 12/09/2025
11+
12+
## Added
13+
14+
15+
## Changed
16+
17+
## Fixed
18+
19+
20+
21+
22+
## 6.1.0-rc.5 - 16/09/2025
1223
This release includes better support for the Exception Handling proposal in LLVM,
1324
as well as fixes to the linker and other stability fixes.
1425

1526
## Added
1627

17-
- [#5726](https://github.com/wasmerio/wasmer/pull/5726) Multiple fixes to EH codegen
18-
1928
## Changed
2029

2130
- [#5724](https://github.com/wasmerio/wasmer/pull/5724) Singlepass: simplify dynamic regs usage
2231
- [#5715](https://github.com/wasmerio/wasmer/pull/5715) feat(cli): App-specific SSH sessions
2332
- [#5707](https://github.com/wasmerio/wasmer/pull/5707) compiler: Ensure unique function symbols by appending function index
2433
- [#5703](https://github.com/wasmerio/wasmer/pull/5703) Simplify unwind
34+
- [#5741](https://github.com/wasmerio/wasmer/pull/5741) Replace serde_yml with serde_yaml
2535

2636
## Fixed
2737

38+
- [#5726](https://github.com/wasmerio/wasmer/pull/5726) Multiple fixes to EH codegen
39+
- [#5736](https://github.com/wasmerio/wasmer/pull/5736) LLVM codegen: truncate stack to correct size when leaving a WASM block
2840
- [#5701](https://github.com/wasmerio/wasmer/pull/5701) fix(config): Add missing skip_serializing_if for ssh capability
2941
- [#5716](https://github.com/wasmerio/wasmer/pull/5716) Fix impossible relocation error in emit srem64, urem64 for singlepass compiler/Aarch64
3042
- [#5700](https://github.com/wasmerio/wasmer/pull/5700) fix(DynamicFunction): allocate space for trap on host stack

0 commit comments

Comments
 (0)