google-cloud-datastore 1.5.4 → 1.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60e59bd622bd925c14e52574b7d13f908af6d0c64b92e1403d198ad8d8a594a1
4
- data.tar.gz: 5b34a868f6f109e2fa7897b053a081ac4b296393d474a2616d3c3731a47b1a33
3
+ metadata.gz: 17eaaffe0bb6405bc08876e97b170e8115d5a4455edfdec6a05a9533fda31a8a
4
+ data.tar.gz: 1230acdb7df1d62992b3512c75b3419e38e536caddaa4cb633bdc37252def44f
5
5
  SHA512:
6
- metadata.gz: bf17f1be411eece5fe4d0b90e0eaed3852e1ae9e9a409ec506bb73c10398381c9a212a0691c236f3ac7b3ff18c5e5d356722e2e7e46b4e66cda724bd77e59495
7
- data.tar.gz: 426156677bfc95c39a29798376c8d4b97f9f8ce9ac2b959a78e6edcd10298199c6937f54579a52950330ac0f1565793dcc8ede82f0617f63fc83d1592c583dbb
6
+ metadata.gz: 8dd982c48953ce421931065bdbee535c37e823a0c91c150837e2dc02ad3b9890c7d2bc536323391717b58605fa878541e4607a9ec268cb0cb74e3056210611e2
7
+ data.tar.gz: d50fe4db022a8d5f7006a62b9d26ef7f72478acbfc387b312fdda230559432187d2d17a00d740436cad4262c1dd225098ece1e2d0362baefcd520a22cbadc28d
@@ -1,5 +1,9 @@
1
1
  # Release History
2
2
 
3
+ ### 1.5.5 / 2019-07-12
4
+
5
+ * Update #to_hash to #to_h for compatibility with google-protobuf >= 3.9.0
6
+
3
7
  ### 1.5.4 / 2019-07-08
4
8
 
5
9
  * Support overriding service host and port for low-level API.
@@ -100,7 +100,7 @@ module Google
100
100
  return Time.at grpc_value.timestamp_value.seconds,
101
101
  grpc_value.timestamp_value.nanos/1000.0
102
102
  elsif grpc_value.value_type == :geo_point_value
103
- return grpc_value.geo_point_value.to_hash
103
+ return grpc_value.geo_point_value.to_h
104
104
  elsif grpc_value.value_type == :blob_value
105
105
  return StringIO.new(
106
106
  grpc_value.blob_value.dup.force_encoding("ASCII-8BIT"))
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Datastore
19
- VERSION = "1.5.4".freeze
19
+ VERSION = "1.5.5".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-datastore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.4
4
+ version: 1.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-07-09 00:00:00.000000000 Z
12
+ date: 2019-07-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-cloud-core