Andrew Haines

Results 56 issues of Andrew Haines

The cancel workflow run API returns HTTP 202 Accepted, but the run isn't actually cancelled until some time later. If I really need two runs not to overlap, I should...

enhancement

I'm working on upgrading to RES 2.0 and the generated migration sets the new `id` type to `serial` on PostgreSQL - I think this should be `bigserial` (which is the...

`protoc-gen-openapiv2` isn't aware of `protoc-gen-validate` so we end up having to specify rules in two places (e.g. https://github.com/cerbos/cerbos/pull/772). If we could instead reference (or embed) the schemas generated by `protoc-gen-jsonschema`,...

kind/enhancement

It would be helpful to expand the [blob driver](https://docs.cerbos.dev/cerbos/latest/configuration/storage.html#blob-driver) docs with the minimum set of IAM permissions required for S3/GCS.

area/documentation

If we documented messages and fields in the protobufs with comments, we could use those to add title+description fields to JSON schemas, and even to generate API reference documentation.

area/documentation
kind/enhancement
area/code-quality

If I have a policy that does not match the schema, the `cerbos compile` error is difficult to trace back to my policy file. because internally it coerces the YAML...

enhancement

I had a go at upgrading our Elastic CI Stack from v2.3.5 to v3.0.0-rc1, but unfortunately our build broke due to user namespace remapping. We're running our builds in containers...

bug
docker

To do multiple mutations in a single request, it seems like you have to arbitrarily choose one of them to receive `$input`, and pass that input in the `input` argument...

NeedsFix

Closes #70 This PR adds the ability to specify inputs to multiple mutations exclusively in `variables`, rather than arbitrarily choosing one of them to receive `input`.

Fixes #294 Extending an interface implies that a value of the subtype can be assigned to the supertype, but `TablerIconProps` can't be assigned to `SVGAttributes` because the `stroke` property is...