3.4 to 3.5
This guide covers upgrading a 3.4 Spree store, to a 3.5 store.
gem 'spree', '~> 3.5.0'
gem 'spree_auth_devise', '~> 3.3'
gem 'spree_gateway', '~> 3.3'
rails spree:install:migrations
rails spree_auth:install:migrations
rails spree_gateway:install:migrations
rails db:migrate
If you were previously using Analytics Trackers feature you need to install it as an extension as it was extracted from the core.
- 1.
gem 'spree_analytics_trackers', github: 'spree-contrib/spree_analytics_trackers'
- 1.Install the gem using Bundler:
bundle install
- 1.Copy and run migrations:
bundle exec rails g spree_analytics_trackers:install
You're good to go!
Run your test suite, click around in your store and make sure it's performing as normal. Fix any deprecation warnings you see.
Last modified 1yr ago