这是indexloc提供的服务,不要输入任何密码
Skip to content

Tags: renovate-bot/nodejs-bigtable

Tags

v2.0.2

Toggle v2.0.2's commit message
chore: release 2.0.2 (googleapis#511)

* updated CHANGELOG.md [ci skip]

* updated package.json [ci skip]

* updated samples/package.json [ci skip]

v2.0.1

Toggle v2.0.1's commit message
chore: release 2.0.1 (googleapis#503)

* updated CHANGELOG.md [ci skip]

* updated package.json [ci skip]

* updated samples/package.json [ci skip]

v2.0.0

Toggle v2.0.0's commit message
chore: release 2.0.0 (googleapis#484)

* updated CHANGELOG.md [ci skip]

* updated package.json [ci skip]

* updated samples/package.json [ci skip]

v1.0.1

Toggle v1.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release v1.0.1 (googleapis#409)

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release v1.0.0 (googleapis#367)

v0.16.1

Toggle v0.16.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release v0.16.1 (googleapis#335)

v0.16.0

Toggle v0.16.0's commit message
Release @google-cloud/bigtable v0.16.0 (googleapis#319)

v0.15.0

Toggle v0.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: use GCLOUD_PROJECT instead of PROJECT_ID (googleapis#234)

v0.14.0

Toggle v0.14.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix broken system test (googleapis#156)

`if (!isNaN(num) && isFinite(num)) {` is no longer a valid check if the converted number is valid. Instead:

```js
if (Number.MIN_SAFE_INTEGER < num && num < Number.MAX_SAFE_INTEGER) {
```

is used. Also there's no point in trying to convert the buffer to a number if the buffer length isn't `8`

v0.13.1

Toggle v0.13.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Skip "should delete all rows" test (googleapis#101)