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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

# Change Log

## 2025-04-08 - Runtime 0.17.9
## 2025-04-09 - Go SDK 0.17.3

- fix: validate manifest with new dgraph connection string format [#817](https://github.com/hypermodeinc/modus/pull/817)

## 2025-04-09 - Runtime 0.17.9

- fix: initialize the main HTTP handler before starting background services [#812](https://github.com/hypermodeinc/modus/pull/812)

Expand Down
3 changes: 1 addition & 2 deletions sdk/assemblyscript/examples/dgraph/modus.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
// The {{API_KEY}} will be replaced by the secret provided in the Hypermode Console.
"dgraph": {
"type": "dgraph",
"grpcTarget": "frozen-mango.grpc.eu-central-1.aws.cloud.dgraph.io:443",
"key": "{{API_KEY}}"
"connString": "dgraph://example.hypermode.host:443?sslmode=verify-ca&bearertoken={{API_KEY}}"
}
}
}
3 changes: 1 addition & 2 deletions sdk/go/examples/dgraph/modus.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
// The {{API_KEY}} will be replaced by the secret's value at run time.
"dgraph": {
"type": "dgraph",
"grpcTarget": "frozen-mango.grpc.eu-central-1.aws.cloud.dgraph.io:443",
"key": "{{API_KEY}}"
"connString": "dgraph://example.hypermode.host:443?sslmode=verify-ca&bearertoken={{API_KEY}}"
}
}
}