Releases: googleapis/nodejs-bigtable
Releases · googleapis/nodejs-bigtable
v5.1.2
v5.1.1
v5.1.0
5.1.0 (2024-05-28)
Features
- Add feature for copying backups (#1153) (91f85b5)
- Add String type with Utf8Raw encoding to Bigtable API (#1419) (724b711)
- Publish Automated Backups protos (#1391) (17838ed)
- Trusted Private Cloud support, use the universeDomain parameter (#1386) (c0c287e)
Bug Fixes
- deps: Update dependency @google-cloud/precise-date to v4 (#1318) (9dcef90)
- Extend timeouts for deleting snapshots, backups and tables (#1387) (1a6f59a)
- Fix flakey test by extending timeout (#1350) (906ac79)
- Improve retry logic for streaming API calls (#1372) (e8083a4)
- Remove the watermarks (#1313) (0126a0e)
v5.0.0
v4.6.1
4.6.1 (2023-05-30)
Bug Fixes
- Properly handle asynchronous read from stream (#1284) (55d86ba). This could result in silently dropped rows in a
createReadStream
. The bug is active when theReadRows
stream would be piped into a consumer that would defer the processing of the rows until the next event loop run (i.e. use aTransform
that would defer the callback invocation viasetTimeout()
).