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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8fdc0e3e831265c7d0fafc5bd1efcff64a80c61a679a995758bdd85855894fb6
4
- data.tar.gz: e93ff8f11efb5ead461e38760268d2cbad095e53d5151911bd92a9ed6b76f37d
3
+ metadata.gz: c47519bfe64a6b8c705b8f6d0f3d89453cabf39bec693e5031fca85fd406c5f1
4
+ data.tar.gz: 438769cf4b54c421b353436f9c1f89fb8c6621bb0dfcb02fe02f9fe7b3f4e239
5
5
  SHA512:
6
- metadata.gz: ae1376a0bfb012e5ff57ff5ec7ef7cb42fd2ea5d998b6389b4a9a4bc8294980af6da75a883c9dbefbba61842a9450d009620fd72986357183bf4f68d1310b83c
7
- data.tar.gz: 6060aeb08f744dd8259502bbdafcb3acfa3c6492a785ce051dbab9df8401292f4613ac1e0aace012b0cd8100ee4c639514eb3834976cad61c451c9fba371d733
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
@@ -201,7 +201,7 @@ end
201
201
  require "google/cloud/pubsub"
202
202
 
203
203
  pubsub = Google::Cloud::PubSub.new project_id: "my-project-id"
204
- publisher = pubsub.subscriber "my-topic-subscription"
204
+ subscriber = pubsub.subscriber "my-topic-subscription"
205
205
 
206
206
  ```
207
207
 
@@ -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"
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module PubSub
19
- VERSION = "3.0.1".freeze
19
+ VERSION = "3.0.2".freeze
20
20
  end
21
21
 
22
22
  Pubsub = PubSub unless const_defined? :Pubsub
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: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore