google-cloud-pubsub 2.11.0 → 2.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/cloud/pubsub/project.rb +1 -1
- data/lib/google/cloud/pubsub/topic.rb +1 -1
- data/lib/google/cloud/pubsub/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19d022ba204052f7d871418daa55ed9b47f9e6786abe0c2bc996eba6e31f393e
|
4
|
+
data.tar.gz: 5440bfb2fa042c83d0e9ea22a3bd974c517c9d7c771b291ddbe953b7f622100f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a487ba4783cb96c663b7ff96311b6514ec851aca7d0985b391574ff1161b19f8aaed391fdc3571f68103c43ab3244adc6d79e9f2a13b3a99fab792139b4da56
|
7
|
+
data.tar.gz: 683a30d9cd5db86e950323205007ac1e83796b386929bb41d4ed5978c1e984debdd0f7f08a273f1ff6fed4c0fcbaef4e9b5cfcfcec11c37e0ab48078ba64e50a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 2.12.0 (2022-08-09)
|
4
|
+
|
5
|
+
#### Features
|
6
|
+
|
7
|
+
* bump the minimum required version of pubsub v1 ([#18983](https://github.com/googleapis/google-cloud-ruby/issues/18983))
|
8
|
+
#### Bug Fixes
|
9
|
+
|
10
|
+
* honour async options of topic ([#18953](https://github.com/googleapis/google-cloud-ruby/issues/18953))
|
11
|
+
|
3
12
|
### 2.11.0 (2022-08-01)
|
4
13
|
|
5
14
|
#### Features
|
@@ -160,7 +160,7 @@ module Google
|
|
160
160
|
#
|
161
161
|
def topic topic_name, project: nil, skip_lookup: nil, async: nil
|
162
162
|
ensure_service!
|
163
|
-
options = { project: project }
|
163
|
+
options = { project: project, async: async }
|
164
164
|
return Topic.from_name topic_name, service, options if skip_lookup
|
165
165
|
grpc = service.get_topic topic_name, options
|
166
166
|
Topic.from_grpc grpc, service, async: async
|
@@ -1065,7 +1065,7 @@ module Google
|
|
1065
1065
|
# @private New reference {Topic} object without making an HTTP request.
|
1066
1066
|
def self.from_name name, service, options = {}
|
1067
1067
|
name = service.topic_path name, options
|
1068
|
-
from_grpc(nil, service).tap do |t|
|
1068
|
+
from_grpc(nil, service, async: options[:async]).tap do |t|
|
1069
1069
|
t.instance_variable_set :@resource_name, name
|
1070
1070
|
end
|
1071
1071
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-pubsub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.12.0
|
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: 2022-08-
|
12
|
+
date: 2022-08-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: concurrent-ruby
|
@@ -45,14 +45,14 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: '0.
|
48
|
+
version: '0.8'
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: '0.
|
55
|
+
version: '0.8'
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: retriable
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|