From d946c427891443f401d1f2ff5ca6651702e11fe8 Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Wed, 18 Dec 2024 18:59:38 +0100 Subject: [PATCH 1/2] CI: Test Solidus 4.4 --- .github/workflows/ci.yml | 1 + Gemfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 238c752..4562aac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,7 @@ jobs: - "4.1" - "4.2" - "4.3" + - "4.4" env: ALCHEMY_VERSION: ${{ matrix.alchemy }} SOLIDUS_VERSION: ${{ matrix.solidus }} diff --git a/Gemfile b/Gemfile index a0fcee2..31da0b4 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source "https://rubygems.org" -solidus_version = ENV.fetch("SOLIDUS_VERSION", "4.3") +solidus_version = ENV.fetch("SOLIDUS_VERSION", "4.4") gem "solidus_core", "~> #{solidus_version}.0" gem "solidus_backend", "~> #{solidus_version}.0" if Gem::Version.new(solidus_version) >= Gem::Version.new("4.0") From 02295e3d5cad5f61c23e32232255dc47734110fa Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Wed, 18 Dec 2024 19:15:58 +0100 Subject: [PATCH 2/2] Test: Add local active storage service Rails 7.2 with Solidus 4.4 complains about the local service is not defined. --- spec/dummy/config/storage.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spec/dummy/config/storage.yml b/spec/dummy/config/storage.yml index 6861af3..27a1c81 100644 --- a/spec/dummy/config/storage.yml +++ b/spec/dummy/config/storage.yml @@ -1,3 +1,7 @@ test: service: Disk root: <%= Rails.root.join("tmp/storage") %> + +local: + service: Disk + root: <%= Rails.root.join("tmp/storage") %>