diff --git a/Changelog.md b/Changelog.md index c998cda1d18..5493395b578 100644 --- a/Changelog.md +++ b/Changelog.md @@ -32,6 +32,10 @@ * Add support for setting BOSH access protocol via chat configuration [#7100](https://github.com/diaspora/diaspora/pull/7100) * Add number of unreviewed reports to admin dashboard and admin sidebar [#7109](https://github.com/diaspora/diaspora/pull/7109) +# 0.6.0.1 + +Fixes an issue with installing an running diaspora\*, caused by a recent bundler update that fixes a bundler bug on which we depended on. + # 0.6.0.0 ## Warning: This release contains long migrations diff --git a/config/application.rb b/config/application.rb index 6ef69fdb559..ca30da2753a 100644 --- a/config/application.rb +++ b/config/application.rb @@ -1,7 +1,7 @@ require_relative 'boot' require 'rails/all' -Bundler.require(:default, Rails.env) +Bundler.require(:default, *Bundler.settings.with, Rails.env) # Do not dump the limit of boolean fields on MySQL, # since that generates a db/schema.rb that's incompatible