Alexander Fenster
Alexander Fenster
If I remember correctly when `pbjs` generates JS code from protos and then `jsdoc` generates an HTML documentation, the comments for the individual fields in messages don't get to the...
Even worse: they are broken but shown as passing. ``` $ npm run js-test-application $ npm run ts-test-application ``` should work properly, and must fail if the tests actually failed....
As discussed in https://github.com/googleapis/gapic-generator-typescript/pull/156#discussion_r349415929
```sh bazel build //google/cloud/functions/v1:functions-v1-nodejs ``` Compilation failure: ``` ... src/v1/cloud_functions_service_client.ts:1333:52 - error TS1138: Parameter declaration expected. 1333 cloudFunctionPath(project:string,location:string,function:string) { ~~~~~~~~ ... (many more) ``` The API violates [AIP-140](https://google.aip.dev/140) by having...
Right now, the generated code has a non-trivial descriptor object such as ```ts class Client { ... descriptors: { page: { ... }, stream: { ... }, longrunning: { ......
Webpack test is broken. Even worse, it's still green in CI, apparently we don't catch the failure properly.
Take baselines/showcase/src/v1beta1/gapic_metadata.json.baseline, make sure it can be parsed by Python protobuf JSON loading code like this one: ```py from google.protobuf.json_format import Parse import gapic_metadata_pb2 with open("baselines/showcase/src/v1beta1/gapic_metadata.json.baseline", "r") as f: metadata...
After bazel transition we stopped calculating code coverage for the unit tests in this repository. We need to figure out how to bring it back (using `c8` or anything else).
Update the Ruby binary for the upcoming new Bazel `googleapis` image. The binary was produced by the same [script](https://github.com/googleapis/googleapis/blob/master/.kokoro/docker_update.sh) as before so I don't expect any problems with it :)
As described in https://github.com/node-fetch/node-fetch#custom-agent, the `keepalive` option is not enabled by default until Node.js v19, which makes HTTP requests reconnect for each request. In this PR I will add Node.js...