diff --git a/CHANGELOG.md b/CHANGELOG.md index b5fbb1305..2933bd280 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/sdk/assemblyscript/examples/dgraph/modus.json b/sdk/assemblyscript/examples/dgraph/modus.json index 677407500..e81c23662 100644 --- a/sdk/assemblyscript/examples/dgraph/modus.json +++ b/sdk/assemblyscript/examples/dgraph/modus.json @@ -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}}" } } } diff --git a/sdk/go/examples/dgraph/modus.json b/sdk/go/examples/dgraph/modus.json index 2f1f3dae8..f92344ff5 100644 --- a/sdk/go/examples/dgraph/modus.json +++ b/sdk/go/examples/dgraph/modus.json @@ -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}}" } } }