DEV: upgrade rails to version 6.0.3.2

This includes a fix for CVE-2020-8185 we are not vulnerable as we do not use
the impacted middleware. However it still makes sense to stay upgraded, other
small fixes exist in this release.
This commit is contained in:
Sam Saffron
2020-07-08 16:34:29 +10:00
parent bd842cd2b0
commit 8af5194e39
2 changed files with 34 additions and 34 deletions
+7 -7
View File
@@ -18,13 +18,13 @@ else
# this allows us to include the bits of rails we use without pieces we do not.
#
# To issue a rails update bump the version number here
gem 'actionmailer', '6.0.3.1'
gem 'actionpack', '6.0.3.1'
gem 'actionview', '6.0.3.1'
gem 'activemodel', '6.0.3.1'
gem 'activerecord', '6.0.3.1'
gem 'activesupport', '6.0.3.1'
gem 'railties', '6.0.3.1'
gem 'actionmailer', '6.0.3.2'
gem 'actionpack', '6.0.3.2'
gem 'actionview', '6.0.3.2'
gem 'activemodel', '6.0.3.2'
gem 'activerecord', '6.0.3.2'
gem 'activesupport', '6.0.3.2'
gem 'railties', '6.0.3.2'
gem 'sprockets-rails'
end