google-cloud-pubsub 3.0.1 → 3.0.2
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 +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/cloud/pubsub/service.rb +1 -1
- data/lib/google/cloud/pubsub/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c47519bfe64a6b8c705b8f6d0f3d89453cabf39bec693e5031fca85fd406c5f1
|
4
|
+
data.tar.gz: 438769cf4b54c421b353436f9c1f89fb8c6621bb0dfcb02fe02f9fe7b3f4e239
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 863a808c566bf8c2667387915ab89643f1e587bf6acf572d8ca2ecd4670a2adc9f47ed4fc2de633f91f345abce0ae03b3f7fe9ddaf11bfb9152b0bc556d61d7a
|
7
|
+
data.tar.gz: 67ccab46b9cdb3c52065e6585f870f49cc0e6892205bde6ec76a314a6570cd00c847d628764e86dbf5088cb4320f5c1ed4bfe68b2f5f6c21938766d410d0f1dc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 3.0.2 (2025-08-12)
|
4
|
+
|
5
|
+
#### Bug Fixes
|
6
|
+
|
7
|
+
* Initialize topic_admin by default for the IAM client ([#30780](https://github.com/googleapis/google-cloud-ruby/issues/30780))
|
8
|
+
#### Documentation
|
9
|
+
|
10
|
+
* Fix subscriber snippet in OVERVIEW.md ([#30813](https://github.com/googleapis/google-cloud-ruby/issues/30813))
|
11
|
+
|
3
12
|
### 3.0.1 (2025-08-07)
|
4
13
|
|
5
14
|
#### Documentation
|
data/OVERVIEW.md
CHANGED
@@ -82,7 +82,7 @@ module Google
|
|
82
82
|
def iam
|
83
83
|
return mocked_iam if mocked_iam
|
84
84
|
@iam ||= begin
|
85
|
-
iam = (@topic_admin || @subscription_admin || @schemas).iam_policy_client
|
85
|
+
iam = (@topic_admin || @subscription_admin || @schemas || topic_admin).iam_policy_client
|
86
86
|
iam.configure do |config|
|
87
87
|
override_client_config_timeouts config if timeout
|
88
88
|
config.lib_name = "gccl"
|