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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

# Change Log

## 2025-04-29 - Go SDK 0.17.4

- fix: Relax postgresql connString regex to allow host to be templated [#830](https://github.com/hypermodeinc/modus/pull/830)

## 2025-04-29 - Runtime 0.17.11

- fix: Relax postgresql connString regex to allow host to be templated [#830](https://github.com/hypermodeinc/modus/pull/830)
- feat: Add support for passing in environment variables to the WASM module [#831](https://github.com/hypermodeinc/modus/pull/831)

## 2025-04-18 - Runtime 0.17.10
Expand Down
2 changes: 1 addition & 1 deletion runtime/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ require (
github.com/golang-jwt/jwt/v5 v5.2.2
github.com/google/renameio/v2 v2.0.0
github.com/google/uuid v1.6.0
github.com/hypermodeinc/modus/lib/manifest v0.17.1
github.com/hypermodeinc/modus/lib/manifest v0.17.2
github.com/hypermodeinc/modus/lib/metadata v0.15.0
github.com/hypermodeinc/modusdb v0.0.0-20250416120035-6d80353c1351
github.com/jackc/pgx/v5 v5.7.4
Expand Down
2 changes: 2 additions & 0 deletions runtime/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,8 @@ github.com/hypermodeinc/dgraph/v24 v24.1.2 h1:fRj+yH36D9Hv79X9fiY31B5ud9g28dbKlO
github.com/hypermodeinc/dgraph/v24 v24.1.2/go.mod h1:kov+rgjHoxnydoXFRAJ6EHGX9M6mlVODb5XMk2d+8Do=
github.com/hypermodeinc/modus/lib/manifest v0.17.1 h1:EuZRni0s+CNPbN+hFcTcFGmo6n2Mr22Mq7l71Lu4YcQ=
github.com/hypermodeinc/modus/lib/manifest v0.17.1/go.mod h1:HVrZY6o4wuZThtbOXEWInga4I7tVzdgK1gSNg1bsYX0=
github.com/hypermodeinc/modus/lib/manifest v0.17.2 h1:T8G6BPZdOTZLRjHSjNLy5cYUMvzQhbnpiJL7Ze8mFNg=
github.com/hypermodeinc/modus/lib/manifest v0.17.2/go.mod h1:JGIQ66vh0NgDTdEeYz3GDJhUHHt71ciKG9tgW8cOT6E=
github.com/hypermodeinc/modus/lib/metadata v0.15.0 h1:Qu75TZg7l43Fi61EhnjasTHZvztrGA90vzDLnCB6ILI=
github.com/hypermodeinc/modus/lib/metadata v0.15.0/go.mod h1:vnIwX2DpQyGk93DawGgIaqC5jEdvMeA9tGtvefbwTJw=
github.com/hypermodeinc/modus/lib/wasmextractor v0.13.0 h1:9o8qqAllL9qIPYqc5adF+Aw3XWLmLqPiBPMu0AIyiMI=
Expand Down
2 changes: 1 addition & 1 deletion sdk/go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.23.1
toolchain go1.24.2

require (
github.com/hypermodeinc/modus/lib/manifest v0.17.1
github.com/hypermodeinc/modus/lib/manifest v0.17.2
github.com/hypermodeinc/modus/lib/wasmextractor v0.13.0
)

Expand Down
2 changes: 2 additions & 0 deletions sdk/go/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKe
github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
github.com/hypermodeinc/modus/lib/manifest v0.17.1 h1:EuZRni0s+CNPbN+hFcTcFGmo6n2Mr22Mq7l71Lu4YcQ=
github.com/hypermodeinc/modus/lib/manifest v0.17.1/go.mod h1:HVrZY6o4wuZThtbOXEWInga4I7tVzdgK1gSNg1bsYX0=
github.com/hypermodeinc/modus/lib/manifest v0.17.2 h1:T8G6BPZdOTZLRjHSjNLy5cYUMvzQhbnpiJL7Ze8mFNg=
github.com/hypermodeinc/modus/lib/manifest v0.17.2/go.mod h1:JGIQ66vh0NgDTdEeYz3GDJhUHHt71ciKG9tgW8cOT6E=
github.com/hypermodeinc/modus/lib/wasmextractor v0.13.0 h1:9o8qqAllL9qIPYqc5adF+Aw3XWLmLqPiBPMu0AIyiMI=
github.com/hypermodeinc/modus/lib/wasmextractor v0.13.0/go.mod h1:YCesMU95vF5qkscLMKSYr92OloLe1KGwyiqW2i4OmnE=
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
Expand Down
Loading