Skip to content

Commit 7b0a433

Browse files
authored
Merge branch 'main' into fix-retry
2 parents fa984c1 + b058d3b commit 7b0a433

File tree

7 files changed

+15
-14
lines changed

7 files changed

+15
-14
lines changed

.github/.OwlBot.lock.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
docker:
22
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest
3-
digest: sha256:5ed10ba99cd1ea8c3a0f29b4c53e8a2723a101952705baed6b61783111c64c1c
3+
digest: sha256:3563b6b264989c4f5aa31a3682e4df36c95756cfef275d3201508947cbfc511e

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10, 12, 14, 15]
12+
node: [10, 12, 14, 16]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-node@v1

.repo-metadata.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
"product_documentation": "https://cloud.google.com/bigtable",
55
"client_documentation": "https://cloud.google.com/nodejs/docs/reference/bigtable/latest",
66
"issue_tracker": "https://issuetracker.google.com/savedsearches/559777",
7-
"release_level": "ga",
7+
"release_level": "stable",
88
"language": "nodejs",
99
"repo": "googleapis/nodejs-bigtable",
1010
"distribution_name": "@google-cloud/bigtable",
1111
"api_id": "bigtable.googleapis.com",
1212
"requires_billing": true,
13-
"codeowner_team": "@googleapis/api-bigtable"
13+
"codeowner_team": "@googleapis/api-bigtable",
14+
"api_shortname": "bigtable",
15+
"library_type": "GAPIC_COMBO"
1416
}

README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44

55
# [Cloud Bigtable: Node.js Client](https://github.com/googleapis/nodejs-bigtable)
66

7-
[![release level](https://img.shields.io/badge/release%20level-general%20availability%20%28GA%29-brightgreen.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
7+
[![release level](https://img.shields.io/badge/release%20level-stable-brightgreen.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
88
[![npm version](https://img.shields.io/npm/v/@google-cloud/bigtable.svg)](https://www.npmjs.org/package/@google-cloud/bigtable)
9-
[![codecov](https://img.shields.io/codecov/c/github/googleapis/nodejs-bigtable/main.svg?style=flat)](https://codecov.io/gh/googleapis/nodejs-bigtable)
109

1110

1211

@@ -130,18 +129,17 @@ _Legacy Node.js versions are supported as a best effort:_
130129
This library follows [Semantic Versioning](http://semver.org/).
131130

132131

133-
This library is considered to be **General Availability (GA)**. This means it
134-
is stable; the code surface will not change in backwards-incompatible ways
132+
133+
This library is considered to be **stable**. The code surface will not change in backwards-incompatible ways
135134
unless absolutely necessary (e.g. because of critical security issues) or with
136-
an extensive deprecation period. Issues and requests against **GA** libraries
135+
an extensive deprecation period. Issues and requests against **stable** libraries
137136
are addressed with the highest priority.
138137

139138

140139

141140

142141

143142

144-
145143
More Information: [Google Cloud Platform Launch Stages][launch_stages]
146144

147145
[launch_stages]: https://cloud.google.com/terms/launch-stages

protos/protos.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/protos.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/chunktransformer.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,14 @@ export class ChunkTransformer extends Transform {
166166
* @public
167167
* @param {error} err error if any
168168
*/
169-
destroy(err?: Error): void {
170-
if (this._destroyed) return;
169+
destroy(err?: Error): this {
170+
if (this._destroyed) return this;
171171
this._destroyed = true;
172172
if (err) {
173173
this.emit('error', err);
174174
}
175175
this.emit('close');
176+
return this;
176177
}
177178

178179
/**

0 commit comments

Comments
 (0)