3.3 to 3.4
This guide covers upgrading a 3.3 Spree store, to a 3.4 store.
gem 'spree', '~> 3.4.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
We changed
Spree::Taxon
icon to use Spree::Asset
to unify attachment usage across all Spree models. If you were using icon images in Spree::Taxon
please run this to migrate your icons:rails db:migrate_taxon_icons
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