Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
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 .github/workflows/ci-go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: 1.24.5
cache-dependency-path: "${{ matrix.dir }}/go.sum"
- name: Run Unit Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-runtime-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: 1.24.5
cache-dependency-path: runtime/go.sum
- name: Build Runtime
working-directory: runtime
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-runtime-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: 1.24.5
cache-dependency-path: runtime/go.sum
- name: Setup Node
uses: actions/setup-node@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-sdk-go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: 1.24.5
cache-dependency-path: ./sdk/go/go.sum
- name: Build Program
run: go build .
Expand All @@ -79,11 +79,11 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: 1.24.5
cache-dependency-path: "${{ matrix.dir }}/go.sum"
- name: Setup TinyGo
uses: acifani/setup-tinygo@v2
with:
tinygo-version: 0.36.0
tinygo-version: 0.38.0
- name: Build Program
run: ./build.sh
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
if: matrix.language == 'go'
uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: 1.24.5
cache-dependency-path: runtime/go.sum

# Initializes the CodeQL tools for scanning.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm run build
- uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: 1.24.5
cache-dependency-path: runtime/go.sum
- uses: goreleaser/goreleaser-action@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-sdk-go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: 1.24.5
cache-dependency-path: ./sdk/go/go.sum
- name: Prepare Release
working-directory: sdk/go
Expand Down
16 changes: 8 additions & 8 deletions .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ plugins:
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
runtimes:
enabled:
- [email protected].0
- node@22.16.0
- python@3.10.8
- [email protected].5
- node@22.17.0
- python@3.13.3

# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
lint:
enabled:
- [email protected]
- trivy@0.63.0
- renovate@41.10.0
- trivy@0.64.1
- renovate@41.27.0
- [email protected]
- [email protected].446
- [email protected].447
- git-diff-check
- [email protected]
- golangci-lint2@2.1.6
- golangci-lint2@2.2.1
- [email protected]
- [email protected]
- [email protected]
- [email protected].1:
- [email protected].2:
packages:
- [email protected]
- [email protected]
Expand Down
4 changes: 2 additions & 2 deletions go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.24.4
go 1.24.5

use (
./lib/manifest
Expand All @@ -18,10 +18,10 @@ use (
./sdk/go/examples/mysql
./sdk/go/examples/neo4j
./sdk/go/examples/postgresql
./sdk/go/examples/secrets
./sdk/go/examples/simple
./sdk/go/examples/textgeneration
./sdk/go/examples/time
./sdk/go/examples/vectors
./sdk/go/examples/secrets
./sdk/go/templates/default
)
4 changes: 2 additions & 2 deletions lib/manifest/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/hypermodeinc/modus/lib/manifest

go 1.23.1

toolchain go1.24.4
toolchain go1.23.11

require (
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
Expand All @@ -13,5 +13,5 @@ require (
require (
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/text v0.24.0 // indirect
golang.org/x/text v0.26.0 // indirect
)
4 changes: 2 additions & 2 deletions lib/manifest/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JT
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
github.com/tidwall/pretty v1.2.1 h1:qjsOFOWWQl+N3RsoF5/ssm1pHmJJwhjlSbZ51I6wMl4=
github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
golang.org/x/text v0.24.0 h1:dd5Bzh4yt5KYA8f9CJHCP4FB4D51c2c6JvN37xJJkJ0=
golang.org/x/text v0.24.0/go.mod h1:L8rBsPeo2pSS+xqN0d5u2ikmjtmoJbDBT1b7nHvFCdU=
golang.org/x/text v0.26.0 h1:P42AVeLghgTYr4+xUnTRKDMqpar+PtX7KWuNQL21L8M=
golang.org/x/text v0.26.0/go.mod h1:QK15LZJUUQVJxhz7wXgxSy/CJaTFjd0G+YLonydOVQA=
2 changes: 1 addition & 1 deletion lib/metadata/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/hypermodeinc/modus/lib/metadata

go 1.23.1

toolchain go1.24.4
toolchain go1.23.11

require (
github.com/hypermodeinc/modus/lib/wasmextractor v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion lib/wasmextractor/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/hypermodeinc/modus/lib/wasmextractor

go 1.23.1

toolchain go1.24.4
toolchain go1.23.11
2 changes: 1 addition & 1 deletion runtime/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hypermodeinc/modus/runtime

go 1.24.4
go 1.24.5

// trunk-ignore-all(osv-scanner/GHSA-9w9f-6mg8-jp7w): not affected by bleve vulnerability

Expand Down
2 changes: 1 addition & 1 deletion runtime/languages/golang/testdata/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module testdata

go 1.23.1

toolchain go1.24.4
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/agents/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module agents-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/anthropic-functions/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module anthropic-functions-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/auth/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module auth-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/classification/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module classification-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/dgraph/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module dgraph-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/embedding/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module embedding-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/graphql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module graphql-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/http/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module http-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/mysql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module mysql-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/neo4j/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module neo4j-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/postgresql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module postgresql-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/secrets/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module secrets-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/simple/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module simple-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/textgeneration/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module text-generation-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require (
github.com/hypermodeinc/modus/sdk/go v0.18.0
Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/time/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module time-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/examples/vectors/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module vectors-example

go 1.23.1

toolchain go1.23.10
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
6 changes: 3 additions & 3 deletions sdk/go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/hypermodeinc/modus/sdk/go

go 1.23.1

toolchain go1.24.4
toolchain go1.23.11

require (
github.com/hypermodeinc/modus/lib/manifest v0.17.2
Expand All @@ -24,11 +24,11 @@ require (
github.com/google/go-cmp v0.7.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 // indirect
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
github.com/tidwall/jsonc v0.3.2 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/sync v0.15.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.24.0 // indirect
golang.org/x/text v0.26.0 // indirect
)
6 changes: 2 additions & 4 deletions sdk/go/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/rs/xid v1.6.0 h1:fV591PaemRlL6JfRxGDEPl69wICngIQ3shQtzfy2gxU=
github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0=
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 h1:PKK9DyHxif4LZo+uQSgXNqs0jj5+xZwwfKHgph2lxBw=
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1/go.mod h1:JXeL+ps8p7/KNMjDQk3TCwPpBy0wYklyWTfbkIzdIFU=
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 h1:KRzFb2m7YtdldCEkzs6KqmJw4nqEVZGK7IN2kJkjTuQ=
github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
github.com/tidwall/gjson v1.18.0 h1:FIDeeyB800efLX89e5a8Y0BNH+LOngJyGrIWxG2FKQY=
github.com/tidwall/gjson v1.18.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
Expand All @@ -41,7 +40,6 @@ golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
golang.org/x/text v0.24.0 h1:dd5Bzh4yt5KYA8f9CJHCP4FB4D51c2c6JvN37xJJkJ0=
golang.org/x/text v0.24.0/go.mod h1:L8rBsPeo2pSS+xqN0d5u2ikmjtmoJbDBT1b7nHvFCdU=
golang.org/x/text v0.26.0 h1:P42AVeLghgTYr4+xUnTRKDMqpar+PtX7KWuNQL21L8M=
golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo=
golang.org/x/tools v0.34.0/go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg=
2 changes: 1 addition & 1 deletion sdk/go/templates/default/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module my-modus-app

go 1.23.1

toolchain go1.24.4
toolchain go1.23.11

require github.com/hypermodeinc/modus/sdk/go v0.18.0

Expand Down
Loading