Jonathan Whitaker

Results 72 issues of Jonathan Whitaker

The changes here add a preliminary implementation of the LookupWatch API as proposed in issue #207. The LookupWatch API will provide clients with a stream of updates indicating changes in...

area/CLI
area/api v1

I have a field in a protobuf message called "parent". It looks like this: ``` message ListRolesRequest { // The resource name of the parent resource in one of the...

enhancement
help wanted

Is there a way to lock into a plugin of a specific major version and get any minor/patch updates automatically? I'd like to do something like: ``` # buf.gen.yaml version:...

I've submitted an MR that I'd love to get in that allows templated podAnnotations. Tell me what you think! Take a look here: #236

I'm looking to implement [Open Policy Agent's](https://github.com/open-policy-agent/opa) (OPA) storage adapter interface using RedisJSON. The data model for the storage adapter is a single json document under some root path. I...

question
q:performance

I'd like to execute a load test again a specific API endpoint `POST my.api.com/graphql`. This API endpoint takes a request body that looks like this: ``` { "clientMutationId": (string) "messageId":...

I have a repository structure like this: ``` api-protos/ protos/ BUILD pubsub/ BUILD v1alpha2/ pubsub.proto BUILD WORKSPACE ``` In my `WORKSPACE` file I have this: ``` load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") git_repository( name...

First off, thanks for this awesome library of bazel rules. It's been a huge help! I'm trying to get an npm artifact published to an npm Artifactory registry. Here's what...

status: blocked

I'd like a validation constraint where a repeated message is both required and has a `min_items` constraint. For example, something like this: ``` message Resource { string name = 1;...

Bug

### Background Consider the following test case: ``` c #include // @expect verified class Polygon { protected: int width, height; public: Polygon( int _width, int _height ): width(_width), height(_height) {...

bug