Skip to content

Commit c619fce

Browse files
authored
build(deps): Bump github.com/bytecodealliance/wasmtime-go from v11.0.0 to v12.0.0 (#2666)
1 parent be55a4d commit c619fce

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ require (
2727
)
2828

2929
require (
30+
github.com/bytecodealliance/wasmtime-go/v12 v12.0.0 // indirect
3031
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 // indirect
3132
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
3233
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLj
77
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
88
github.com/bytecodealliance/wasmtime-go/v11 v11.0.0 h1:SwLgbjbFpQ1tf5vIbWexaZABezBSL8WmzP+foLyi0lE=
99
github.com/bytecodealliance/wasmtime-go/v11 v11.0.0/go.mod h1:9btfEuCkOP7EDR9a7LqDXrfQ7dtWeGlDHt3buV5UyjY=
10+
github.com/bytecodealliance/wasmtime-go/v12 v12.0.0 h1:Wga02UaZXYF3p0LIeL5xFp09/RI7UhjfT2uB0mLrwlw=
11+
github.com/bytecodealliance/wasmtime-go/v12 v12.0.0/go.mod h1:a3PRoftJxxUzkQvgjC6sv7pKyJJK0ZsFVmH+eeEKQC4=
1012
github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I=
1113
github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ=
1214
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=

internal/ext/wasm/wasm.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ import (
1818
"runtime/trace"
1919
"strings"
2020

21-
wasmtime "github.com/bytecodealliance/wasmtime-go/v11"
21+
wasmtime "github.com/bytecodealliance/wasmtime-go/v12"
2222
"golang.org/x/sync/singleflight"
2323

2424
"github.com/sqlc-dev/sqlc/internal/info"
2525
"github.com/sqlc-dev/sqlc/internal/plugin"
2626
)
2727

2828
// This version must be updated whenever the wasmtime-go dependency is updated
29-
const wasmtimeVersion = `v11.0.0`
29+
const wasmtimeVersion = `v12.0.0`
3030

3131
func cacheDir() (string, error) {
3232
cache := os.Getenv("SQLCCACHE")

0 commit comments

Comments
 (0)