Skip to content

Commit 4371d96

Browse files
committed
all: update tinygo, go, envoy
1 parent 24e88bb commit 4371d96

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARCH := $(shell case $$(uname -m) in (x86_64) echo amd64 ;; (aarch64) echo arm64
33

44
BIN_DIR := ./.bin
55

6-
TINYGO_VERSION := 0.26.0
6+
TINYGO_VERSION := 0.30.0
77
TINYGO := $(abspath $(BIN_DIR)/tinygo-$(TINYGO_VERSION))/bin/tinygo
88

99
DOCKER_NETWORK := proxy-wasm-http-header-rename_default
@@ -31,7 +31,7 @@ test-docker:
3131
--volume "$(shell pwd):/workspace" \
3232
--workdir /workspace \
3333
--network $(DOCKER_NETWORK) \
34-
golang:1.19.5-bullseye make test
34+
golang:1.22.0-bullseye make test
3535

3636
.PHONY: build
3737
build: $(TINYGO)
@@ -45,5 +45,5 @@ build-docker:
4545
--volume "$(shell pwd):/workspace" \
4646
--user "$(shell id -u):$(shell id -g)" \
4747
--workdir /workspace \
48-
golang:1.19.5-bullseye \
48+
golang:1.21.7-bullseye \
4949
make build

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
services:
33
envoy:
4-
image: envoyproxy/envoy:v1.24.1
4+
image: envoyproxy/envoy:v1.29.1
55
ports:
66
- ${PORT-8080}:8080
77
volumes:

go.mod

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

3-
go 1.19
3+
go 1.21
44

55
require (
66
github.com/tetratelabs/proxy-wasm-go-sdk v0.20.0

go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
2+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
23
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
35
github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
6+
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
47
github.com/tetratelabs/proxy-wasm-go-sdk v0.20.0 h1:i/xtxt/jHXtp/yImhlp4pAWx0eVzIBKOaay3Nu4Iw3k=
58
github.com/tetratelabs/proxy-wasm-go-sdk v0.20.0/go.mod h1:7uUubjgZpmccNAPqSS6Il6CF+tk3BGf4qSCJZp3W8s8=
69
github.com/tidwall/gjson v1.14.4 h1:uo0p8EbA09J7RQaflQ1aBRffTR7xedD2bcIVSYxLnkM=
@@ -10,3 +13,4 @@ github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JT
1013
github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=
1114
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
1215
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
16+
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)