UPGRADING.md in slack-ruby-bot-server-0.6.1 vs UPGRADING.md in slack-ruby-bot-server-0.7.0

- old
+ new

@@ -1,7 +1,25 @@ Upgrading Slack-Ruby-Bot-Server =============================== +### Upgrading to >= 0.7.0 + +#### New Ping Worker + +Version 0.7.0 will automatically start a ping worker that checks for the bot's online status and forcefully terminate and restart disconnected bots. Set the ping `enabled` option to `false` to disable this behavior. + +```ruby +SlackRubyBotServer.configure do |config| + config.ping = { + enabled: false + } +end +``` + +If you are currently using a custom ping worker as suggested in [slack-ruby-client#208](https://github.com/slack-ruby/slack-ruby-client/issues/208), delete it. + +See [#74](https://github.com/slack-ruby/slack-ruby-bot-server/pull/74) for more information. + ### Upgrading to >= 0.6.0 #### Mongoid and ActiveRecord support Version 0.6.0 supports both Mongoid and ActiveRecord. The `mongoid` gem is no longer a dependency, so you must manually add the gems in your Gemfile.