Skip to content

The Big Three Oh 👀

Compare
Choose a tag to compare
@ianks ianks released this 25 Sep 20:52
· 45 commits to master since this release
d3fcbb2

Major Changes

  1. Auto retry behavior is no longer a custom implementation, and relies on Google Pubsub's built in mechanism.

The behavior is opt-in, you need to setup your config like so:

Hanami::Events::CloudPubsub.configure do |config|
  config.auto_retry.enabled = true
  config.auto_retry.dead_letter_topic_name = 'my-dead-letter-topic-name' # will be auto created
end
  1. Require Ruby >= 2.5 breaking!