Skip to content

Commit

Permalink
chore(deps): Bump go.bytecodealliance.org from 0.4.0 to 0.4.1 (#55)
Browse files Browse the repository at this point in the history
* chore(deps): Bump go.bytecodealliance.org from 0.4.0 to 0.4.1

Bumps [go.bytecodealliance.org](https://github.com/bytecodealliance/go-modules) from 0.4.0 to 0.4.1.
- [Release notes](https://github.com/bytecodealliance/go-modules/releases)
- [Changelog](https://github.com/bytecodealliance/go-modules/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/go-modules@v0.4.0...v0.4.1)

---
updated-dependencies:
- dependency-name: go.bytecodealliance.org
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: Update generated bindings to 0.4.1

Signed-off-by: Joonas Bergius <[email protected]>

* chore(examples): run go mod tidy

Signed-off-by: Joonas Bergius <[email protected]>

* chore(README): Add a note about minimum required wasm-tools version

Signed-off-by: Joonas Bergius <[email protected]>

* chore(ci): Pin wasm-tools to a known good version

Signed-off-by: Joonas Bergius <[email protected]>

* chore(examples): Update generated bindings

Signed-off-by: Joonas Bergius <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Joonas Bergius <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joonas Bergius <[email protected]>
  • Loading branch information
dependabot[bot] and joonas authored Dec 9, 2024
1 parent 644a647 commit 74008f8
Show file tree
Hide file tree
Showing 26 changed files with 166 additions and 159 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
env:
TINYGO_VERSION: "0.33.0"
GOLANGCI_VERSION: "v1.61"
WASM_TOOLS_VERSION: "1.220.0"

jobs:
lint:
Expand All @@ -27,7 +28,7 @@ jobs:
- uses: cargo-bins/cargo-binstall@main
- name: Tools
run: |
cargo binstall -y wasm-tools
cargo binstall -y "wasm-tools@${WASM_TOOLS_VERSION}"
- name: Go generate
run: |
Expand Down Expand Up @@ -88,7 +89,7 @@ jobs:
- uses: cargo-bins/cargo-binstall@main
- name: Tools
run: |
cargo binstall -y wasm-tools
cargo binstall -y "wasm-tools@${WASM_TOOLS_VERSION}"
wash --version
- name: Go generate
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ Writing a wasmCloud Capability Provider? Check out the [Go Provider SDK](https:/

# Setup

Requires tinygo 0.33 or above.
Requires:
* [`tinygo`](https://tinygo.org/getting-started/install/) 0.33.0 or above.
* [`wasm-tools`](https://github.com/bytecodealliance/wasm-tools?tab=readme-ov-file#installation) 1.220.0 or above.

Import `go.wasmcloud.dev/component` in your Go module.

Expand Down
2 changes: 1 addition & 1 deletion _examples/http-client/gen/wasi/filesystem/types/abi.go

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

34 changes: 17 additions & 17 deletions _examples/http-client/gen/wasi/http/types/abi.go

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

4 changes: 2 additions & 2 deletions _examples/http-client/gen/wasi/sockets/tcp/abi.go

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

4 changes: 2 additions & 2 deletions _examples/http-client/gen/wasi/sockets/udp/abi.go

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

8 changes: 4 additions & 4 deletions _examples/http-client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/wasmCloud/component-sdk-go/_examples/http-client
go 1.23.0

require (
go.bytecodealliance.org v0.4.0
go.bytecodealliance.org v0.4.1
go.wasmcloud.dev/component v0.0.5
)

Expand All @@ -15,9 +15,9 @@ require (
github.com/regclient/regclient v0.7.2 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/ulikunitz/xz v0.5.12 // indirect
github.com/urfave/cli/v3 v3.0.0-alpha9.2 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/sys v0.26.0 // indirect
github.com/urfave/cli/v3 v3.0.0-beta1 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/sys v0.28.0 // indirect
)

// NOTE(lxf): Remove this line if running outside of component-sdk-go repository
Expand Down
24 changes: 12 additions & 12 deletions _examples/http-client/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/ulikunitz/xz v0.5.12 h1:37Nm15o69RwBkXM0J6A5OlE67RZTfzUxTj8fB3dfcsc=
github.com/ulikunitz/xz v0.5.12/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
github.com/urfave/cli/v3 v3.0.0-alpha9.2 h1:CL8llQj3dGRLVQQzHxS+ZYRLanOuhyK1fXgLKD+qV+Y=
github.com/urfave/cli/v3 v3.0.0-alpha9.2/go.mod h1:FnIeEMYu+ko8zP1F9Ypr3xkZMIDqW3DR92yUtY39q1Y=
go.bytecodealliance.org v0.4.0 h1:SRwgZIcXR54AmbJg9Y3AMgDlZlvD8dffteBYW+nCD3k=
go.bytecodealliance.org v0.4.0/go.mod h1:hkdjfgQ/bFZYUucnm9cn0Q8/SHO3iT0rzskYlkV4Jy0=
golang.org/x/mod v0.21.0 h1:vvrHzRwRfVKSiLrG+d4FMl/Qi4ukBCE6kZlTUkDYRT0=
golang.org/x/mod v0.21.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
github.com/urfave/cli/v3 v3.0.0-beta1 h1:6DTaaUarcM0wX7qj5Hcvs+5Dm3dyUTBbEwIWAjcw9Zg=
github.com/urfave/cli/v3 v3.0.0-beta1/go.mod h1:FnIeEMYu+ko8zP1F9Ypr3xkZMIDqW3DR92yUtY39q1Y=
go.bytecodealliance.org v0.4.1 h1:Y3Nnz+C061i9Hw4qQlSkZTg3IBTsTLC92+sdh4xCADQ=
go.bytecodealliance.org v0.4.1/go.mod h1:jxAxqtTxs+6Q2q6bQnWa/lF+Q+2/LkdbqIgNJYxEmFA=
golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4=
golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/tools v0.26.0 h1:v/60pFQmzmT9ExmjDv2gGIfi3OqfKoEP6I5+umXlbnQ=
golang.org/x/tools v0.26.0/go.mod h1:TPVVj70c7JJ3WCazhD8OdXcZg/og+b9+tH/KxylGwH0=
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/tools v0.28.0 h1:WuB6qZ4RPCQo5aP3WdKZS7i595EdWqWR8vqJTlwTVK8=
golang.org/x/tools v0.28.0/go.mod h1:dcIOrVd3mfQKTgrDVQHqCPMWy6lnhfhtX3hLXYVLfRw=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
Expand Down
2 changes: 1 addition & 1 deletion _examples/http-server/gen/wasi/filesystem/types/abi.go

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

34 changes: 17 additions & 17 deletions _examples/http-server/gen/wasi/http/types/abi.go

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

4 changes: 2 additions & 2 deletions _examples/http-server/gen/wasi/sockets/tcp/abi.go

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

Loading

0 comments on commit 74008f8

Please sign in to comment.