google-cloud-bigtable 2.10.2 → 2.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/cloud/bigtable/row_filter.rb +4 -18
- data/lib/google/cloud/bigtable/version.rb +1 -1
- metadata +19 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 181c696f1d64a700deb5f67d1016a4418fb204b3830da7ee07eac490b7215214
|
4
|
+
data.tar.gz: 550c9917f375b880c02862916f15b22a7d5ebf82ee75c097d96160dc847a6b3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0b52d13a6236bbf5ec702dd3e5f157113ae8a9926cf7450c5c5823d268066d12e3380fc6b79016d9e7e7298a6db540c2b8571032805c926fc3bafaec795d94c
|
7
|
+
data.tar.gz: 9edb14a3040f7fff3ea9fb4b07efcdbd4dadc41bb687f2d9efc8a3c167b7a2e46d96fbff2293e0cd20ce2066149c8195bb3f588d9634ac5583e57a6be73a6e24
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 2.11.1 (2024-12-12)
|
4
|
+
|
5
|
+
#### Bug Fixes
|
6
|
+
|
7
|
+
* Avoid a potential protobuf memory leak ([#28101](https://github.com/googleapis/google-cloud-ruby/issues/28101))
|
8
|
+
|
9
|
+
### 2.11.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.10.2 (2024-04-30)
|
4
16
|
|
5
17
|
#### Bug Fixes
|
@@ -133,20 +133,6 @@ module Google
|
|
133
133
|
# Google::Cloud::Bigtable::RowFilter.cells_per_row 10
|
134
134
|
#
|
135
135
|
module RowFilter
|
136
|
-
# @private
|
137
|
-
PASS = SimpleFilter.new.pass.freeze
|
138
|
-
|
139
|
-
# @private
|
140
|
-
BLOCK = SimpleFilter.new.block.freeze
|
141
|
-
|
142
|
-
# @private
|
143
|
-
SINK = SimpleFilter.new.sink.freeze
|
144
|
-
|
145
|
-
# @private
|
146
|
-
STRIP_VALUE = SimpleFilter.new.strip_value.freeze
|
147
|
-
|
148
|
-
private_constant :PASS, :BLOCK, :SINK, :STRIP_VALUE
|
149
|
-
|
150
136
|
##
|
151
137
|
# Creates a chain filter instance.
|
152
138
|
#
|
@@ -294,7 +280,7 @@ module Google
|
|
294
280
|
# filter = Google::Cloud::Bigtable::RowFilter.pass
|
295
281
|
#
|
296
282
|
def self.pass
|
297
|
-
|
283
|
+
SimpleFilter.new.pass
|
298
284
|
end
|
299
285
|
|
300
286
|
##
|
@@ -311,7 +297,7 @@ module Google
|
|
311
297
|
# filter = Google::Cloud::Bigtable::RowFilter.block
|
312
298
|
#
|
313
299
|
def self.block
|
314
|
-
|
300
|
+
SimpleFilter.new.block
|
315
301
|
end
|
316
302
|
|
317
303
|
##
|
@@ -328,7 +314,7 @@ module Google
|
|
328
314
|
# filter = Google::Cloud::Bigtable::RowFilter.sink
|
329
315
|
#
|
330
316
|
def self.sink
|
331
|
-
|
317
|
+
SimpleFilter.new.sink
|
332
318
|
end
|
333
319
|
|
334
320
|
##
|
@@ -344,7 +330,7 @@ module Google
|
|
344
330
|
# filter = Google::Cloud::Bigtable::RowFilter.strip_value
|
345
331
|
#
|
346
332
|
def self.strip_value
|
347
|
-
|
333
|
+
SimpleFilter.new.strip_value
|
348
334
|
end
|
349
335
|
|
350
336
|
##
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-bigtable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.11.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -28,30 +28,42 @@ dependencies:
|
|
28
28
|
name: google-cloud-bigtable-admin-v2
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0.0'
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 2.a
|
34
37
|
type: :runtime
|
35
38
|
prerelease: false
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
37
40
|
requirements:
|
38
|
-
- - "
|
41
|
+
- - ">="
|
39
42
|
- !ruby/object:Gem::Version
|
40
43
|
version: '0.0'
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.a
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: google-cloud-bigtable-v2
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
44
50
|
requirements:
|
45
|
-
- - "
|
51
|
+
- - ">="
|
46
52
|
- !ruby/object:Gem::Version
|
47
53
|
version: '0.14'
|
54
|
+
- - "<"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 2.a
|
48
57
|
type: :runtime
|
49
58
|
prerelease: false
|
50
59
|
version_requirements: !ruby/object:Gem::Requirement
|
51
60
|
requirements:
|
52
|
-
- - "
|
61
|
+
- - ">="
|
53
62
|
- !ruby/object:Gem::Version
|
54
63
|
version: '0.14'
|
64
|
+
- - "<"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 2.a
|
55
67
|
- !ruby/object:Gem::Dependency
|
56
68
|
name: google-cloud-core
|
57
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -151,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
151
163
|
- !ruby/object:Gem::Version
|
152
164
|
version: '0'
|
153
165
|
requirements: []
|
154
|
-
rubygems_version: 3.5.
|
166
|
+
rubygems_version: 3.5.23
|
155
167
|
signing_key:
|
156
168
|
specification_version: 4
|
157
169
|
summary: API Client library for Cloud Bigtable API
|