Changes

1.17.0 (2024-05-08)

Features

1.16.0 (2024-04-29)

Features

  • datastore: Adding BeginLater and transaction state (#8984) (5f8e21f)
  • datastore: Adding BeginLater transaction option (#8972) (4067f4e)
  • datastore: Adding reserve IDs support (#9027) (2d66de0)
  • datastore: Configure both mTLS and TLS endpoints for Datastore client (#9653) (38bd793)
  • datastore: Respect DATASTORE_EMULATOR_HOST setting (#9789) (7259373)

Bug Fixes

  • datastore: Add explicit sleep before read time use (#9080) (0538be4)
  • datastore: Adding tracing to run method (#9602) (a5e197c)
  • datastore: Bump x/net to v0.24.0 (ba31ed5)
  • datastore: Enable universe domain resolution options (fd1d569)
  • datastore: Prevent panic on GetMulti failure (#9656) (55845ad)
  • datastore: Update protobuf dep to v1.33.0 (30b038d)

1.15.0 (2023-10-06)

Features

Bug Fixes

1.14.0 (2023-08-22)

Features

  • datastore: SUM and AVG aggregations (#8307) (a9fff18)
  • datastore: Support aggregation query in transaction (#8439) (37681ff)

Bug Fixes

  • datastore: Correcting string representation of Key (#8363) (4cb1211)
  • datastore: Fix NoIndex for array property (#7674) (01951e6)

Documentation

  • datastore/admin: Specify limit for properties in Index message in Datastore Admin API (b890425)

1.13.0 (2023-07-26)

Features

1.12.1 (2023-07-07)

Bug Fixes

  • datastore: Return error from RunAggregationQuery (#8222) (a9b67cf)

1.12.0 (2023-06-27)

Features

  • datastore: Update all direct dependencies (b340d03)

Bug Fixes

  • datastore: Change aggregation result to return generic value (#8167) (9d3d17b)
  • datastore: Handling nil slices in save and query (#8043) (36f01e9)
  • datastore: PKG:datastore TYPE:datastoreClient FUNC:RunAggregationQuery (#7803) (1f050ea)
  • datastore: REST query UpdateMask bug (df52820)
  • datastore: Update grpc to v1.55.0 (1147ce0)

1.11.0 (2023-04-04)

Features

  • datastore: Add REST client (06a54a1)
  • datastore: EntityFilter for AND/OR queries (#7589) (81f7c87)
  • datastore: Return Get, GetMulti, Put and PutMulti errors with enhanced details (#7061) (c82b63a)
  • datastore: Rewrite signatures and type in terms of new location (620e6d8)
  • datastore: Update iam and longrunning deps (91a1f78)

Bug Fixes

  • datastore: Adds nil check to AggregationQuery (#7376) (c43b9ed)

Documentation

  • datastore/admin: Reference the correct main client gem name (1fb0c5e)

1.10.0 (2022-11-29)

Features

  • datastore: start generating proto stubs (eed371e)

1.9.0 (2022-10-26)

Features

Documentation

1.8.0 (2022-06-21)

Features

  • datastore: add better version metadata to calls (d1ad921)
  • datastore: adds in, not-in, and != query operators (#6017) (e926fb4)
  • datastore: set versionClient to module version (55f0d92)

1.7.0 (2022-05-09)

Features

  • datastore/admin: define Datastore -> Firestore in Datastore mode migration long running operation metadata (d9a0634)
  • datastore: add better version metadata to calls (d1ad921)
  • datastore: set versionClient to module version (55f0d92)

1.6.0 (2021-09-17)

Features

  • datastore/admin: Publish message definitions for new Cloud Datastore migration logging steps. (528ffc9)

Bug Fixes

  • datastore: Initialize commit sentinel to avoid cross use of commits (#4599) (fcf13b0)

1.5.0 (2021-03-01)

Features

  • datastore/admin: Added methods for creating and deleting composite indexes feat: Populated php_namespace (529925b)
  • datastore/admin: Publish message definitions for Cloud Datastore migration logging. (529925b)

1.4.0 (2021-01-15)

Features

  • datastore: add opencensus tracing/stats support (#2804) (5e6c350)
  • datastore: support civil package types save (#3202) (9cc1a66)

Bug Fixes

  • datastore: Ensure the datastore time is returned as UTC (#3521) (0e659e2)
  • datastore: increase deferred key iter limit (#2878) (7f1057a)
  • datastore: loading civil types in non UTC location is incorrect (#3376) (9ac287d)

v1.3.0

  • Fix saving behavior for non-struct custom types which implement PropertyLoadSaver and for nil interface types.
  • Support DetectProjectID when using the emulator.

v1.2.0

  • Adds Datastore Admin API.
  • Documentation updates.

v1.1.0

  • DEADLINE_EXCEEDED is now not retried.
  • RunInTransaction now panics more explicitly on a nil TransactionOption.
  • PropertyLoadSaver now tries to Load as much as possible (e.g., Key), even if an error is returned.
  • Client now uses transport/grpc.DialPool rather than Dial.
    • Connection pooling now does not use the deprecated (and soon to be removed) gRPC load balancer API.
  • Doc updates
    • Iterator is unsafe for concurrent use.
    • Mutation docs now describe atomicity and gRPC error codes more explicitly.
    • Cursor example now correctly uses “DecodeCursor” rather than “NewCursor”

v1.0.0

This is the first tag to carve out datastore as its own module. See: https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository.