Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/XSAM/otelsql v0.37.0
github.com/andybalholm/brotli v1.1.1
github.com/atombender/go-jsonschema v0.16.1-0.20240916205339-a74cd4e2851c
github.com/bytecodealliance/wasmtime-go/v28 v28.0.0
github.com/bytecodealliance/wasmtime-go/v47 v47.0.0
github.com/cloudevents/sdk-go/binding/format/protobuf/v2 v2.16.1
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/dominikbraun/graph v0.23.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/workflows/wasm/host/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"sync"
"time"

"github.com/bytecodealliance/wasmtime-go/v28"
"github.com/bytecodealliance/wasmtime-go/v47"
"google.golang.org/protobuf/proto"

caperrors "github.com/smartcontractkit/chainlink-common/pkg/capabilities/errors"
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflows/wasm/host/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"time"

"github.com/andybalholm/brotli"
"github.com/bytecodealliance/wasmtime-go/v28"
"github.com/bytecodealliance/wasmtime-go/v47"
"google.golang.org/protobuf/proto"

"github.com/smartcontractkit/chainlink-common/pkg/workflows/host"
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflows/wasm/host/module_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"
"testing"

"github.com/bytecodealliance/wasmtime-go/v28"
"github.com/bytecodealliance/wasmtime-go/v47"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflows/wasm/host/unwind_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

package host

import "github.com/bytecodealliance/wasmtime-go/v28"
import "github.com/bytecodealliance/wasmtime-go/v47"

// Load testing shows that leaving native unwind info enabled causes a very large slowdown when loading multiple modules.
func SetUnwinding(cfg *wasmtime.Config) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflows/wasm/host/unwind_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

package host

import "github.com/bytecodealliance/wasmtime-go/v28"
import "github.com/bytecodealliance/wasmtime-go/v47"

func SetUnwinding(cfg *wasmtime.Config) {
// Unwinding cannot be disabled on Windows.
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflows/wasm/host/wasip1.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"math/rand"
"time"

"github.com/bytecodealliance/wasmtime-go/v28"
"github.com/bytecodealliance/wasmtime-go/v47"
"github.com/jonboulle/clockwork"
)

Expand Down
Loading