Skip to content

Commit

Permalink
Upgrade to Spree 4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
earllevine committed Dec 17, 2024
1 parent 225ca69 commit 4365bed
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.5
15 changes: 8 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ git_source(:github) do |repo_name|
"https://github.com/#{repo_name}.git"
end

gem 'spree_core', '4.5.0'
gem 'spree_backend', '4.5.0'
gem 'spree_frontend', '4.5.0'
gem 'spree_emails', '4.5.0'
gem 'spree_core', '4.10.1'
gem 'spree_backend', '4.8.4'
gem 'spree_frontend', '4.8.0'
gem 'spree_emails', '4.10.0'
# Provides basic authentication functionality for testing parts of your engine
gem 'spree_auth_devise', '4.5.0'
gem 'spree_auth_devise', '4.6.3'
gem 'rails-controller-testing'

gem 'sqlite3', '~> 1.4'
Expand All @@ -20,8 +20,9 @@ gem 'rubocop-rspec', require: false

group :test do
gem 'pg'
gem 'redis', '4.4.0'
gem 'email_spec', '2.2.1'
gem 'redis', '5.3.0'
gem 'email_spec', '2.3.0'
gem 'rspec-rails', '~> 5.0' # Need fix https://github.com/rspec/rspec-rails/pull/2370
end

gemspec
2 changes: 1 addition & 1 deletion lib/spree_multi_tenant.rb
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def self.tenanted_models
[
'Spree::CmsPage',
'Spree::CmsSection',
'Spree::DataFeed',
'Spree::Digital',
'Spree::DigitalLink',
'Spree::Menu',
Expand Down Expand Up @@ -150,4 +151,3 @@ def self.with_tenant(tenant, &block)
end

end

0 comments on commit 4365bed

Please sign in to comment.