zed
zed copied to clipboard
Official command-line tool for managing SpiceDB
`client: zed v0.30.2` Repro: ``` definition user {} definition organization {} definition platform {} definition resource { /** platform is the platform to which the resource belongs */ relation platform:...
Prior art: https://github.com/authzed/spicedb/pull/2449 The idea is that because this is a client binary that we distribute, we probably want to keep it within a reasonable size, and be aware of...
When trying to set a new context with zed cli on Windows 11 we get this error: ``` zed context set my-new-context my-permissions-system.foo.com:443 sdbst_h256_REDACTED ERR terminated with errors error="The stub...
### Description The `zed`cli currently doesn't provide a way to specify a cursor parameter when using `permission lookup-resources`. While the CLI supports pagination through the `--page-limit` flag, there's no way...
TLDR: using the experimental expiration feature with experimental composable schema leads to validation failures ``` zed version client: zed v0.30.2 ``` ## Repro Issue 1 - Partials ### Make a...
I'm attempting to import relationships for an existing schema. I've tried defining the relationships files a few different ways but without any luck. My relations file is structured like in...
This PR makes the backup creation code easier to test by extracting dependencies. ## Changes - Extract `backupCreateImpl` that accepts a client and progress tracker as dependencies - Add `ProgressTracker`...
Let's call this the "old" schema: ``` definition namespace/subscription { relation subscriber: namespace/user permission is_subscribed = subscriber } definition namespace/user { } ``` And this the "new" schema: ``` definition...
`zed context` ``` zed context set some-env localhost:50052 ${SPICEDB_TOKEN} --certificate-path ${TLS_CA_FILE_PATH} --hostname-override spicedb.spicedb.svc.cluster.local ``` port forwarded from k8s `zed schema read` ``` 6:09PM ERR retrying gRPC call error="rpc error: code...
Signed-off-by: Erik Hennings ## Description This PR adds support for passing custom headers to gRPC requests via a new `--extra-header` flag. ## Testing Manual testing ## References