google-cloud-datastore 2.9.0 → 2.11.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0e7a2aaa0b31449724820d409981bc786ff520231f30e11d3f43fe5cd587e86
|
4
|
+
data.tar.gz: 3546b3b9d18c0c79c5c73927b1d4b1a3fad4bc523ee075caab61c287cfc5838d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 326efcbff7b5b3b3d5982795b1408f87ee5225f5b7a25eedfdc1fe9403302e6bd39957737ff13faa16f438b3f5f32aa6538bddd9deb026844ac3935b40218505
|
7
|
+
data.tar.gz: cfbfc92c743af8fa804760fb8360c38b3756ea27f49ee60b1090cc4d563074aa6b5844dc5e10983884035993f0ba32490a1b885313fca7978a80a2b7ab8cc1b8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 2.11.0 (2025-03-04)
|
4
|
+
|
5
|
+
#### Features
|
6
|
+
|
7
|
+
* Update minimum Ruby version to 3.0 ([#29261](https://github.com/googleapis/google-cloud-ruby/issues/29261))
|
8
|
+
|
9
|
+
### 2.10.0 (2024-07-09)
|
10
|
+
|
11
|
+
#### Features
|
12
|
+
|
13
|
+
* compatibility with GA releases of underlying versioned clients ([#26361](https://github.com/googleapis/google-cloud-ruby/issues/26361))
|
14
|
+
|
3
15
|
### 2.9.0 (2024-03-10)
|
4
16
|
|
5
17
|
#### Features
|
@@ -483,7 +483,8 @@ module Google
|
|
483
483
|
##
|
484
484
|
# Retrieve aggregate results specified by an AggregateQuery.
|
485
485
|
#
|
486
|
-
# @param [AggregateQuery, GqlQuery]
|
486
|
+
# @param [AggregateQuery, GqlQuery] aggregate_query The object with the
|
487
|
+
# aggregate criteria.
|
487
488
|
# @param [String] namespace The namespace the query is to run within.
|
488
489
|
# @param [Symbol] consistency The non-transactional read consistency to
|
489
490
|
# use. Cannot be set to `:strong` for global queries. Accepted values
|
@@ -233,12 +233,10 @@ module Google
|
|
233
233
|
op: :AND
|
234
234
|
)
|
235
235
|
)
|
236
|
-
|
237
|
-
|
238
|
-
else
|
239
|
-
@grpc.filter.composite_filter.filters << \
|
240
|
-
Google::Cloud::Datastore::Filter.new(name_or_filter, operator, value).to_grpc
|
236
|
+
unless name_or_filter.is_a? Google::Cloud::Datastore::Filter
|
237
|
+
name_or_filter = Google::Cloud::Datastore::Filter.new name_or_filter, operator, value
|
241
238
|
end
|
239
|
+
@grpc.filter.composite_filter.filters << name_or_filter.to_grpc
|
242
240
|
|
243
241
|
self
|
244
242
|
end
|
@@ -170,7 +170,8 @@ module Google
|
|
170
170
|
# Retrieve aggregate query results specified by an AggregateQuery. The query is run within the
|
171
171
|
# transaction.
|
172
172
|
#
|
173
|
-
# @param [AggregateQuery, GqlQuery]
|
173
|
+
# @param [AggregateQuery, GqlQuery] aggregate_query The Query object
|
174
|
+
# with the search criteria.
|
174
175
|
# @param [String] namespace The namespace the query is to run within.
|
175
176
|
#
|
176
177
|
# @return [Google::Cloud::Datastore::Dataset::AggregateQueryResults]
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-datastore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Moore
|
8
8
|
- Chris Smith
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: google-cloud-core
|
@@ -29,16 +28,22 @@ dependencies:
|
|
29
28
|
name: google-cloud-datastore-v1
|
30
29
|
requirement: !ruby/object:Gem::Requirement
|
31
30
|
requirements:
|
32
|
-
- - "
|
31
|
+
- - ">="
|
33
32
|
- !ruby/object:Gem::Version
|
34
33
|
version: '0.0'
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 2.a
|
35
37
|
type: :runtime
|
36
38
|
prerelease: false
|
37
39
|
version_requirements: !ruby/object:Gem::Requirement
|
38
40
|
requirements:
|
39
|
-
- - "
|
41
|
+
- - ">="
|
40
42
|
- !ruby/object:Gem::Version
|
41
43
|
version: '0.0'
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.a
|
42
47
|
description: google-cloud-datastore is the official library for Google Cloud Datastore.
|
43
48
|
email:
|
44
49
|
- mike@blowmage.com
|
@@ -83,7 +88,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-clo
|
|
83
88
|
licenses:
|
84
89
|
- Apache-2.0
|
85
90
|
metadata: {}
|
86
|
-
post_install_message:
|
87
91
|
rdoc_options: []
|
88
92
|
require_paths:
|
89
93
|
- lib
|
@@ -91,15 +95,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
95
|
requirements:
|
92
96
|
- - ">="
|
93
97
|
- !ruby/object:Gem::Version
|
94
|
-
version: '
|
98
|
+
version: '3.0'
|
95
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
100
|
requirements:
|
97
101
|
- - ">="
|
98
102
|
- !ruby/object:Gem::Version
|
99
103
|
version: '0'
|
100
104
|
requirements: []
|
101
|
-
rubygems_version: 3.5
|
102
|
-
signing_key:
|
105
|
+
rubygems_version: 3.6.5
|
103
106
|
specification_version: 4
|
104
107
|
summary: API Client library for Google Cloud Datastore
|
105
108
|
test_files: []
|