Skip to content

Commit

Permalink
Release google-cloud-pubsub 0.37.0 (#3500)
Browse files Browse the repository at this point in the history
* Release google-cloud-pubsub 0.37.0

* Add Topic#persistence_regions
* Subscriber changes
  * Fix potential inventory bug
  * Messages are removed after callback
    * This change prevents the Subscriber inventory from filling up
      when messages are never acked or nacked in the user callback.
      This might happen due to an error in the user callback code.
      Removing a message from the inventory will cause the message to
      be redelivered and reprocessed.
  * Update concurrency implementation
    * Use concurrent-ruby Promises framework.
* Update network configuration
* Enable grpc.service_config_disable_resolution
  • Loading branch information
blowmage authored Jun 18, 2019
1 parent b368ad3 commit 005c6c2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions google-cloud-pubsub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Release History

### 0.37.0 / 2019-06-17

* Add Topic#persistence_regions
* Subscriber changes
* Fix potential inventory bug
* Messages are removed after callback
* This change prevents the Subscriber inventory from filling up
when messages are never acked or nacked in the user callback.
This might happen due to an error in the user callback code.
Removing a message from the inventory will cause the message to
be redelivered and reprocessed.
* Update concurrency implementation
* Use concurrent-ruby Promises framework.
* Update network configuration
* Enable grpc.service_config_disable_resolution

### 0.36.0 / 2019-05-21

* Add Topic#kms_key
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-pubsub/lib/google/cloud/pubsub/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
module Google
module Cloud
module PubSub
VERSION = "0.36.0".freeze
VERSION = "0.37.0".freeze
end

Pubsub = PubSub unless const_defined? :Pubsub
Expand Down

0 comments on commit 005c6c2

Please sign in to comment.