Skip to content

Commit ef8bcfa

Browse files
committed
chore: prepare varnish9 v4.3.4 release
1 parent 09b3421 commit ef8bcfa

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to vmod-wasm will be documented in this file.
44

5-
## [Unreleased]
5+
## [4.3.4] - 2026-05-24
66

77
### Changed
88
- Refactored release, production, development, architecture, compatibility, and

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ make install
120120

121121
### Release Bundles
122122

123-
GitHub releases use Varnish-specific tags such as `varnish9-v4.3.3` so the
123+
GitHub releases use Varnish-specific tags such as `varnish9-v4.3.4` so the
124124
supported Varnish ABI line is visible before download. The package version
125-
remains semantic (`4.3.3`), while the release channel identifies Varnish 9.
125+
remains semantic (`4.3.4`), while the release channel identifies Varnish 9.
126126

127127
Release assets include source and convenience binary bundles for Linux `amd64`
128128
and `arm64` on Varnish 9. Binary bundles include `libvmod_wasm.so`,

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.69])
2-
AC_INIT([vmod-wasm], [4.3.3], [https://github.com/RamazanKara/vmod-wasm/issues])
2+
AC_INIT([vmod-wasm], [4.3.4], [https://github.com/RamazanKara/vmod-wasm/issues])
33
AC_CONFIG_SRCDIR([src/vmod_wasm.vcc])
44
AC_CONFIG_MACRO_DIRS([m4])
55
AC_CONFIG_HEADERS([config.h])

docs/PRODUCTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ varnishlog -g request -q 'Debug ~ "wasm"'
147147

148148
## Deployment Checklist
149149

150-
- [ ] Verify the release tag matches your Varnish ABI line, for example `varnish9-v4.3.3`
150+
- [ ] Verify the release tag matches your Varnish ABI line, for example `varnish9-v4.3.4`
151151
- [ ] Confirm `ldd libvmod_wasm.so` resolves the intended bundled `libwasmtime.so`
152152
- [ ] Set `set_epoch_deadline()` appropriate for expected module latency
153153
- [ ] Set `set_memory_limit()` (16 MiB default is usually fine)

src/vmod_wasm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "proxy_wasm.h"
3535
#include "vdp_wasm.h"
3636

37-
#define VMOD_WASM_VERSION "4.3.3"
37+
#define VMOD_WASM_VERSION "4.3.4"
3838

3939
/* One Wasm engine per loaded VCL. */
4040
struct vmod_wasm_vcl {

tests/basic_load.vtc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ client c1 {
3232
rxresp
3333
expect resp.status == 200
3434
expect resp.http.X-Wasm-Result == "42"
35-
expect resp.http.X-Wasm-Version == "4.3.3"
35+
expect resp.http.X-Wasm-Version == "4.3.4"
3636
} -run

0 commit comments

Comments
 (0)