Skip to content

v0.9.0

Compare
Choose a tag to compare
@mr-salty mr-salty released this 08 May 18:16

File Checksums

Extension SHA256 checksum
.tar.gz a072103546cfa041ad8bfc599fe5a20c58e005a1a0ee18e94b2554dc3d485604
.zip 2d3e0713cc6787042916fd3b0e68765fdeb4eac26badb77c92a98c5b7a6d8e55

GCS v1.0.0

  • Declared GA and updated major number.
  • Support signed policy documents.
  • Support service account key files in PKCS#12 format (aka .p12).
  • Support signing URLs and policy documents using the SignBlob API, this is
    useful when using the default service account in GCE to sign URLs and policy
    documents.

Bigtable v0.9.0

  • Breaking Changes
    • Return google::cloud::future from InstanceAdmin functions: this is
      more consistent with all other functions returning futures.
    • Remove unused bigtable::GrpcError: the library no longer raises this
      exception, any code trying to catch the exception should be modified to
      handle errors via StatusOr<T>.
    • Remove Snapshot-related functions, tests, examples, etc.: this is
      whitelisted functionality in Cloud Bigtable and it is no longer expected
      to reach GA.
  • Continue to implement more async APIs (Async*() methods) for the
    InstanceAdmin, TableAdmin, and Table classes
    (Note: These are not yet stable)
  • Bugfixes:
    • Need ignore_warnings to actually delete an AppProfile.
    • Fix portability/logical errors in shell scripts.
    • Fix a race condition in MutationBatcher.
  • Implemented a number of previously missing code samples.

Common v0.7.0

  • Support move-only callables in future<T>
  • Avoid std::make_exception_ptr() in future_shared_state_base::abandon().