Skip to content

Commit 35edaab

Browse files
authored
upd runtime@v1.15.2 (#718)
* upd runtime@v1.15.2 * use t.Context()
1 parent 553f754 commit 35edaab

22 files changed

Lines changed: 157 additions & 129 deletions

File tree

.vscode/settings.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"gopls": {
44
"formatting.gofumpt": true
55
},
6-
"go.testFlags": [
6+
"go.testFlags": [
77
"-v",
88
"-gcflags=all=-N -l",
99
"-count=1"
@@ -335,7 +335,6 @@
335335
"zerolog",
336336
"zpages"
337337
],
338-
"go.alternateTools": {
339-
340-
}
338+
"go.alternateTools": {},
339+
"go.languageServerFlags": []
341340
}

docs/config.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ The remote address can also be configured to a service that implements the proto
178178

179179
- *address* - string - address:port of the remote directory service
180180
- *api_key* - string - API key for the directory
181-
- *tenant_id* - string - the directory tenant ID
182181

183182
Example (using the hosted Aserto directory):
184183

@@ -187,7 +186,6 @@ Example (using the hosted Aserto directory):
187186
remote_directory:
188187
address: "directory.prod.aserto.com:8443"
189188
api_key: <Your Aserto Directory Access Key>
190-
tenant_id: <Your Aserto Tenant ID>
191189
```
192190

193191
### e. OPA

docs/examples/config-remote-dir.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ logging:
1111

1212
remote_directory:
1313
address: "directory.prod.aserto.com:8443"
14-
api_key: <Your Aserto Directory Access Key>
15-
tenant_id: <Your Aserto Tenant ID>
14+
api_key: <Authorization API Key>
1615

1716
api:
1817
services:

go.mod

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ module github.com/aserto-dev/topaz
22

33
go 1.25.0
44

5-
toolchain go1.26.1
5+
toolchain go1.26.2
66

77
require (
88
github.com/Masterminds/semver/v3 v3.4.0
99
github.com/alecthomas/kong v1.15.0
1010
github.com/aserto-dev/azm v0.2.22
11-
github.com/aserto-dev/errors v0.0.17
11+
github.com/aserto-dev/errors v0.34.0
1212
github.com/aserto-dev/go-aserto v0.34.1
1313
github.com/aserto-dev/go-authorizer v0.24.0
1414
github.com/aserto-dev/go-directory v0.34.1
1515
github.com/aserto-dev/go-topaz-ui v0.1.26
1616
github.com/aserto-dev/logger v0.0.9
1717
github.com/aserto-dev/openapi-authorizer v0.20.6
1818
github.com/aserto-dev/openapi-directory v0.33.5
19-
github.com/aserto-dev/runtime v1.15.1
19+
github.com/aserto-dev/runtime v1.15.2
2020
github.com/authzen/access.go v1.0.1
2121
github.com/cli/browser v1.3.0
2222
github.com/docker/docker v28.5.2+incompatible
@@ -40,7 +40,7 @@ require (
4040
github.com/mitchellh/go-wordwrap v1.0.1
4141
github.com/moby/term v0.5.2
4242
github.com/olekukonko/tablewriter v1.1.4
43-
github.com/open-policy-agent/opa v1.15.1
43+
github.com/open-policy-agent/opa v1.15.2
4444
github.com/opencontainers/image-spec v1.1.1
4545
github.com/panmari/cuckoofilter v1.0.6
4646
github.com/pkg/errors v0.9.1
@@ -53,10 +53,10 @@ require (
5353
github.com/spf13/cobra v1.10.2
5454
github.com/spf13/viper v1.21.0
5555
github.com/stretchr/testify v1.11.1
56-
github.com/testcontainers/testcontainers-go v0.41.0
56+
github.com/testcontainers/testcontainers-go v0.42.0
5757
go.etcd.io/bbolt v1.4.3
5858
golang.org/x/sync v0.20.0
59-
golang.org/x/sys v0.42.0
59+
golang.org/x/sys v0.43.0
6060
google.golang.org/genproto/googleapis/rpc v0.0.0-20260406210006-6f92a3bedf2d
6161
google.golang.org/grpc v1.80.0
6262
google.golang.org/protobuf v1.36.11
@@ -117,7 +117,7 @@ require (
117117
github.com/inconshreveable/mousetrap v1.1.0 // indirect
118118
github.com/itchyny/timefmt-go v0.1.8 // indirect
119119
github.com/josharian/intern v1.0.0 // indirect
120-
github.com/klauspost/compress v1.18.4 // indirect
120+
github.com/klauspost/compress v1.18.5 // indirect
121121
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
122122
github.com/lestrrat-go/dsig v1.0.0 // indirect
123123
github.com/lestrrat-go/dsig-secp256k1 v1.0.0 // indirect
@@ -134,15 +134,18 @@ require (
134134
github.com/mailru/easyjson v0.7.7 // indirect
135135
github.com/mattn/go-ciede2000 v0.0.0-20170301095244-782e8c62fec3 // indirect
136136
github.com/mattn/go-colorable v0.1.14 // indirect
137-
github.com/mattn/go-runewidth v0.0.19 // indirect
137+
github.com/mattn/go-runewidth v0.0.23 // indirect
138138
github.com/mitchellh/copystructure v1.2.0 // indirect
139139
github.com/mitchellh/go-ps v1.0.0 // indirect
140140
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
141141
github.com/mitchellh/reflectwalk v1.0.2 // indirect
142142
github.com/moby/docker-image-spec v1.3.1 // indirect
143143
github.com/moby/go-archive v0.2.0 // indirect
144144
github.com/moby/locker v1.0.1 // indirect
145-
github.com/moby/patternmatcher v0.6.0 // indirect
145+
github.com/moby/moby/api v1.54.1 // indirect
146+
github.com/moby/moby/client v0.4.0 // indirect
147+
github.com/moby/patternmatcher v0.6.1 // indirect
148+
github.com/moby/sys/atomicwriter v0.1.0 // indirect
146149
github.com/moby/sys/sequential v0.6.0 // indirect
147150
github.com/moby/sys/user v0.4.0 // indirect
148151
github.com/moby/sys/userns v0.1.0 // indirect
@@ -168,7 +171,7 @@ require (
168171
github.com/sagikazarmark/locafero v0.11.0 // indirect
169172
github.com/segmentio/asm v1.2.1 // indirect
170173
github.com/sergi/go-diff v1.4.0 // indirect
171-
github.com/shirou/gopsutil/v4 v4.26.2 // indirect
174+
github.com/shirou/gopsutil/v4 v4.26.3 // indirect
172175
github.com/sirupsen/logrus v1.9.4 // indirect
173176
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
174177
github.com/spf13/afero v1.15.0 // indirect
@@ -195,11 +198,11 @@ require (
195198
go.opentelemetry.io/otel/trace v1.42.0 // indirect
196199
go.yaml.in/yaml/v2 v2.4.4 // indirect
197200
go.yaml.in/yaml/v3 v3.0.4 // indirect
198-
golang.org/x/crypto v0.49.0 // indirect
201+
golang.org/x/crypto v0.50.0 // indirect
199202
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90 // indirect
200-
golang.org/x/net v0.52.0 // indirect
201-
golang.org/x/term v0.41.0 // indirect
202-
golang.org/x/text v0.35.0 // indirect
203+
golang.org/x/net v0.53.0 // indirect
204+
golang.org/x/term v0.42.0 // indirect
205+
golang.org/x/text v0.36.0 // indirect
203206
golang.org/x/time v0.15.0 // indirect
204207
google.golang.org/genproto/googleapis/api v0.0.0-20260406210006-6f92a3bedf2d // indirect
205208
gopkg.in/ini.v1 v1.67.1 // indirect

0 commit comments

Comments
 (0)