Skip to content

Commit ab4161d

Browse files
authored
Update references to Go 1.24 for stable release (#7)
Go 1.24 was released 2025-02-11: https://go.dev/blog/go1.24 Signed-off-by: Matt Leon <[email protected]>
1 parent b8720b4 commit ab4161d

File tree

19 files changed

+40
-43
lines changed

19 files changed

+40
-43
lines changed

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,12 @@ end-users. This SDK is an alpha product.
2525

2626
- \[Required] [Go](https://go.dev/): v1.24+ - This SDK leverages Go 1.24's
2727
support for [WASI](https://github.com/WebAssembly/WASI) (WebAssembly System
28-
Interface) reactors. You can grab a release candidate from the
29-
[Go unstable releases page](https://go.dev/dl/#unstable). A stable release
30-
of Go 1.24 is
31-
[expected in February 2025](https://tip.golang.org/doc/go1.24).
32-
- \[Required] A host environment supporting this toolchain - This SDK
33-
leverages additional host imports added to the proxy-wasm-cpp-host in
34-
[PR#427](https://github.com/proxy-wasm/proxy-wasm-cpp-host/pull/427). This
35-
has yet to be merged, let alone make its way downstream to Envoy, ATS,
36-
nginx, or managed environments.
28+
Interface) reactors. You can install a suitable version from the
29+
[Go installation guide](https://go.dev/doc/install).
30+
- \[Required] A host environment supporting this toolchain, such as Envoy >=
31+
1.33.0. This SDK leverages additional host imports added to the
32+
proxy-wasm-cpp-host in
33+
[PR#427](https://github.com/proxy-wasm/proxy-wasm-cpp-host/pull/427).
3734
- \[Optional] [Envoy](https://www.envoyproxy.io) - To run end-to-end tests,
3835
you need to have an Envoy binary. You can use [func-e](https://func-e.io) as
3936
an easy way to get started with Envoy or follow

examples/dispatch_call_on_tick/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/dispatch_call_on_tick
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/foreign_call_on_tick/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/foreign_call_on_tick
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/helloworld/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/helloworld
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/http_auth_random/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/http_auth_random
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/http_body/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/http_body
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/http_body_chunk/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/http_body_chunk
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/http_headers/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/http_headers
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
github.com/tidwall/gjson v1.14.3
1111
)
1212

examples/http_routing/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/http_routing
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/json_validation/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/json_validation
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.16.0
9+
github.com/stretchr/testify v1.9.0
1010
github.com/tidwall/gjson v1.14.1
1111
)
1212

examples/metrics/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/metrics
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/multiple_dispatches/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/multiple_dispatches
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/network/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/network
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/postpone_requests/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/postpone_requests
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/properties/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/properties
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/shared_data/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/shared_data
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

examples/shared_queue/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/shared_queue
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

examples/vm_plugin_configuration/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk/examples/vm_plugin_configuration
22

3-
go 1.24rc1
3+
go 1.24
44

55
replace github.com/proxy-wasm/proxy-wasm-go-sdk => ../..
66

77
require (
8-
github.com/stretchr/testify v1.9.0
98
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-00010101000000-000000000000
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/proxy-wasm/proxy-wasm-go-sdk
22

3-
go 1.24rc1
3+
go 1.24
44

55
require (
66
github.com/stretchr/testify v1.9.0

0 commit comments

Comments
 (0)