solidus_prototypes 1.5.1 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ade6723e60a1ebd0d635ad0eeb130c624b41ce5f8c06fe33980e06242a51b21
4
- data.tar.gz: cca5ab407bacf51209753f68fc254588beac0ec403186dd8404f5b4cacac9b8b
3
+ metadata.gz: 9e628012bc09b42c57453a871db5556923c21b6f58e6fe69ae9269464ad00fb8
4
+ data.tar.gz: 6c047ad26a5384d92c05227e866004626e3c916414d7d54e407d8b8ae9e96d8d
5
5
  SHA512:
6
- metadata.gz: 96b44ffc08c2ed7ab028fa22f1bb31ae35bcc5352931f52df067eb93e3d87d3e04bad50fba6bbcdcf20c6697e2ab2039e18bc0d63e38fa718c4432691f6c6f07
7
- data.tar.gz: d67fafaa645c547c6eae0ec94c4aecff712dd57b7d6d11bae25c9145cc108842fddde09760930a8aaec854b7b7b70dd5f3f6e71e9c117801d8457ecea5d9fcf2
6
+ metadata.gz: 66452106b03e76c9b8fe7919f7458d06879f73a72124f6359853ce8b9e15c0d3c7b358d75bac0448141bfd647b526def1501988ece2b0392d0d3b15d0c94dd24
7
+ data.tar.gz: 98515d2e83a25ec103cbc4d77cab5632c268ba7c331e2cc622f44f10f27350c837d913ede91e2d09c8cb63ea70e1e16fbfa9323bfcbbc1804df467267fefb366
data/.circleci/config.yml CHANGED
@@ -10,6 +10,13 @@ orbs:
10
10
  solidusio_extensions: solidusio/extensions@volatile
11
11
 
12
12
  jobs:
13
+ run-specs-with-postgres-3-3:
14
+ executor:
15
+ name: solidusio_extensions/postgres
16
+ ruby_version: "3.3"
17
+ steps:
18
+ - browser-tools/install-chrome
19
+ - solidusio_extensions/run-tests
13
20
  run-specs-with-postgres-3-2:
14
21
  executor:
15
22
  name: solidusio_extensions/postgres
@@ -17,7 +24,7 @@ jobs:
17
24
  steps:
18
25
  - browser-tools/install-chrome
19
26
  - solidusio_extensions/run-tests
20
- run-specs-with-postgres:
27
+ run-specs-with-postgres-3-1:
21
28
  executor:
22
29
  name: solidusio_extensions/postgres
23
30
  ruby_version: "3.1"
@@ -35,8 +42,9 @@ jobs:
35
42
  workflows:
36
43
  "Run specs on supported Solidus versions":
37
44
  jobs:
45
+ - run-specs-with-postgres-3-3
38
46
  - run-specs-with-postgres-3-2
39
- - run-specs-with-postgres
47
+ - run-specs-with-postgres-3-1
40
48
  - run-specs-with-mysql
41
49
  "Weekly run specs against master":
42
50
  triggers:
@@ -47,6 +55,7 @@ workflows:
47
55
  only:
48
56
  - master
49
57
  jobs:
58
+ - run-specs-with-postgres-3-3
50
59
  - run-specs-with-postgres-3-2
51
- - run-specs-with-postgres
60
+ - run-specs-with-postgres-3-1
52
61
  - run-specs-with-mysql
data/CHANGELOG.md CHANGED
@@ -1,30 +1,32 @@
1
1
  # Changelog
2
2
 
3
- ## [v1.5.1](https://github.com/solidusio-contrib/solidus_prototypes/tree/v1.5.1) (2024-04-19)
3
+ ## [v1.6.0](https://github.com/solidusio-contrib/solidus_prototypes/tree/v1.6.0) (2024-05-30)
4
4
 
5
- [Full Changelog](https://github.com/solidusio-contrib/solidus_prototypes/compare/v1.5.0...v1.5.1)
5
+ [Full Changelog](https://github.com/solidusio-contrib/solidus_prototypes/compare/v1.5.1...v1.6.0)
6
6
 
7
7
  **Merged pull requests:**
8
8
 
9
- - Move prototype selector on top of product form [\#66](https://github.com/solidusio-contrib/solidus_prototypes/pull/66) ([sascha-karnatz](https://github.com/sascha-karnatz))
9
+ - Allow Ruby 3.3 [\#67](https://github.com/solidusio-contrib/solidus_prototypes/pull/67) ([tvdeyen](https://github.com/tvdeyen))
10
10
 
11
- ## [v1.5.0](https://github.com/solidusio-contrib/solidus_prototypes/tree/v1.5.0) (2024-04-17)
11
+ ## [v1.5.1](https://github.com/solidusio-contrib/solidus_prototypes/tree/v1.5.1) (2024-04-19)
12
12
 
13
- [Full Changelog](https://github.com/solidusio-contrib/solidus_prototypes/compare/v1.4.0...v1.5.0)
13
+ [Full Changelog](https://github.com/solidusio-contrib/solidus_prototypes/compare/v1.5.0...v1.5.1)
14
14
 
15
15
  **Merged pull requests:**
16
16
 
17
- - Admin UI fixes [\#62](https://github.com/solidusio-contrib/solidus_prototypes/pull/62) ([tvdeyen](https://github.com/tvdeyen))
17
+ - Move prototype selector on top of product form [\#66](https://github.com/solidusio-contrib/solidus_prototypes/pull/66) ([sascha-karnatz](https://github.com/sascha-karnatz))
18
18
  - Fix option\_values\_hash form field name name [\#65](https://github.com/solidusio-contrib/solidus_prototypes/pull/65) ([tvdeyen](https://github.com/tvdeyen))
19
19
  - Replace Deface Override with Deface DSL [\#64](https://github.com/solidusio-contrib/solidus_prototypes/pull/64) ([sascha-karnatz](https://github.com/sascha-karnatz))
20
+ - Add Solidus 4.0, 4.1, 4.2 and 4.3 support [\#63](https://github.com/solidusio-contrib/solidus_prototypes/pull/63) ([tvdeyen](https://github.com/tvdeyen))
21
+ - Admin UI fixes [\#62](https://github.com/solidusio-contrib/solidus_prototypes/pull/62) ([tvdeyen](https://github.com/tvdeyen))
20
22
 
21
- ## [v1.4.0](https://github.com/solidusio-contrib/solidus_prototypes/tree/v1.4.0) (2023-11-07)
23
+ ## [v1.5.0](https://github.com/solidusio-contrib/solidus_prototypes/tree/v1.5.0) (2024-04-17)
22
24
 
23
- [Full Changelog](https://github.com/solidusio-contrib/solidus_prototypes/compare/v1.3.0...v1.4.0)
25
+ [Full Changelog](https://github.com/solidusio-contrib/solidus_prototypes/compare/v1.4.0...v1.5.0)
24
26
 
25
- **Merged pull requests:**
27
+ ## [v1.4.0](https://github.com/solidusio-contrib/solidus_prototypes/tree/v1.4.0) (2023-11-07)
26
28
 
27
- - Add Solidus 4.0, 4.1, 4.2 and 4.3 support [\#63](https://github.com/solidusio-contrib/solidus_prototypes/pull/63) ([tvdeyen](https://github.com/tvdeyen))
29
+ [Full Changelog](https://github.com/solidusio-contrib/solidus_prototypes/compare/v1.3.0...v1.4.0)
28
30
 
29
31
  ## [v1.3.0](https://github.com/solidusio-contrib/solidus_prototypes/tree/v1.3.0) (2023-03-27)
30
32
 
data/Gemfile CHANGED
@@ -21,7 +21,7 @@ when 'mysql'
21
21
  when 'postgresql'
22
22
  gem 'pg'
23
23
  else
24
- gem 'sqlite3'
24
+ gem 'sqlite3', '~> 1.7'
25
25
  end
26
26
 
27
27
  gemspec
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusPrototypes
4
- VERSION = '1.5.1'
4
+ VERSION = '1.6.0'
5
5
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = "Breaking out prototypes from solidus"
11
11
  s.license = "BSD-3-Clause"
12
12
 
13
- s.required_ruby_version = [">= 2.4", "< 3.3"]
13
+ s.required_ruby_version = [">= 3.0", "< 4"]
14
14
 
15
15
  s.author = "Graeme Nathan"
16
16
  s.email = "graeme@stembolt.com"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_prototypes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Graeme Nathan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-19 00:00:00.000000000 Z
11
+ date: 2024-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deface
@@ -5554,17 +5554,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
5554
5554
  requirements:
5555
5555
  - - ">="
5556
5556
  - !ruby/object:Gem::Version
5557
- version: '2.4'
5557
+ version: '3.0'
5558
5558
  - - "<"
5559
5559
  - !ruby/object:Gem::Version
5560
- version: '3.3'
5560
+ version: '4'
5561
5561
  required_rubygems_version: !ruby/object:Gem::Requirement
5562
5562
  requirements:
5563
5563
  - - ">="
5564
5564
  - !ruby/object:Gem::Version
5565
5565
  version: '0'
5566
5566
  requirements: []
5567
- rubygems_version: 3.4.19
5567
+ rubygems_version: 3.5.9
5568
5568
  signing_key:
5569
5569
  specification_version: 4
5570
5570
  summary: Adds prototypes for solidus