workarea 3.5.9 → 3.5.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +99 -0
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ffdace8e3e2244a812f18489f381c4f4ecde7bd7887ad7edee422d66b28e95b
|
4
|
+
data.tar.gz: 9f45fa88c1a3b287d55503bbbcdd9afec85fdf7229e22ffcfb2b279425911569
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 274e9d0ebbe25cce5356280c4b54be061c256a5d1a89df103e182bbf9398d62ac52cb8da40e9bb6e06801298b1389c4fc1d310a6f8281f7e94ef3c90122dcf3d
|
7
|
+
data.tar.gz: 0525e0ca449686c53460891b244ac8a4b3f407141cfcd7338f3d09236f41a423e22f35b2a67fffb32a5c67d3e1108aecf76a6645c292e169a249dfc7ac23f073
|
data/.rubocop.yml
CHANGED
@@ -198,7 +198,7 @@ Layout/SpaceInsideParens:
|
|
198
198
|
- 'core/spec/models/workarea/order/queries_spec.rb'
|
199
199
|
|
200
200
|
# Detect hard tabs, no hard tabs.
|
201
|
-
Layout/
|
201
|
+
Layout/IndentationStyle:
|
202
202
|
Enabled: true
|
203
203
|
Exclude:
|
204
204
|
- 'core/vendor/active_shipping/lib/active_shipping/carriers/canada_post.rb'
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,102 @@
|
|
1
|
+
Workarea 3.5.10 (2020-04-28)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Fix bugs with per_page used in page calculation for search queries
|
5
|
+
|
6
|
+
Even though this shouldn't come from the outside world, it's easy and
|
7
|
+
best to ensure per_page is always a valid number.
|
8
|
+
|
9
|
+
Ben Crouse
|
10
|
+
|
11
|
+
* Stub S3 CORS for all integration tests
|
12
|
+
|
13
|
+
It's annoying and unnecessary to have to stub this for every test that
|
14
|
+
uses an asset picker.
|
15
|
+
|
16
|
+
WORKAREA-209
|
17
|
+
|
18
|
+
Ben Crouse
|
19
|
+
|
20
|
+
* Skip localized activeness test when localized active fields are off
|
21
|
+
|
22
|
+
Fixes #421
|
23
|
+
|
24
|
+
Ben Crouse
|
25
|
+
|
26
|
+
* Fix accepting per_page param from outside world
|
27
|
+
|
28
|
+
Page size is the most important factor in performance for browse pages,
|
29
|
+
so we don't want these exposed to the outside world out-of-the-box.
|
30
|
+
|
31
|
+
Ben Crouse
|
32
|
+
|
33
|
+
* Update grammar for consistency
|
34
|
+
|
35
|
+
|
36
|
+
Ben Crouse
|
37
|
+
|
38
|
+
* Corrected no_available_shipping_options translation typo (#418)
|
39
|
+
|
40
|
+
|
41
|
+
JurgenHahn
|
42
|
+
|
43
|
+
* Fix fullfilment shipped mailer template
|
44
|
+
|
45
|
+
Fullfilment shipped mailer template is using cancellation header.
|
46
|
+
|
47
|
+
heyqule
|
48
|
+
|
49
|
+
* Improve visual design of most discounted products insight
|
50
|
+
|
51
|
+
|
52
|
+
Ben Crouse
|
53
|
+
|
54
|
+
* Change HashUpdate to use the setter instead of mutation
|
55
|
+
|
56
|
+
Simply mutating the value doesn't work when the field is localized.
|
57
|
+
Mongoid's localization behavior only kicks in when you use the setter.
|
58
|
+
|
59
|
+
Ben Crouse
|
60
|
+
|
61
|
+
* Allow setting locale fallbacks for a test
|
62
|
+
|
63
|
+
This is useful if you want to test fallback behavior. Tests in base
|
64
|
+
should be agnostic to whether fallbacks are available or not.
|
65
|
+
|
66
|
+
Ben Crouse
|
67
|
+
|
68
|
+
* Fix locale fallback getting unexpectedly autloaded
|
69
|
+
|
70
|
+
This can happen in the middle of a test suite, causing apparently random
|
71
|
+
test failure. This freedom patch prevents fallbacks from autoloading.
|
72
|
+
We want to let the implementation make that decision.
|
73
|
+
|
74
|
+
Ben Crouse
|
75
|
+
|
76
|
+
* Change HashUpdate to use the setter instead of mutation
|
77
|
+
|
78
|
+
Simply mutating the value doesn't work when the field is localized.
|
79
|
+
Mongoid's localization behavior only kicks in when you use the setter.
|
80
|
+
|
81
|
+
Ben Crouse
|
82
|
+
|
83
|
+
* Allow setting locale fallbacks for a test
|
84
|
+
|
85
|
+
This is useful if you want to test fallback behavior. Tests in base
|
86
|
+
should be agnostic to whether fallbacks are available or not.
|
87
|
+
|
88
|
+
Ben Crouse
|
89
|
+
|
90
|
+
* Fix locale fallback getting unexpectedly autloaded
|
91
|
+
|
92
|
+
This can happen in the middle of a test suite, causing apparently random
|
93
|
+
test failure. This freedom patch prevents fallbacks from autoloading.
|
94
|
+
We want to let the implementation make that decision.
|
95
|
+
|
96
|
+
Ben Crouse
|
97
|
+
|
98
|
+
|
99
|
+
|
1
100
|
Workarea 3.5.9 (2020-04-15)
|
2
101
|
--------------------------------------------------------------------------------
|
3
102
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Crouse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea-core
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.5.
|
19
|
+
version: 3.5.10
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.5.
|
26
|
+
version: 3.5.10
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: workarea-storefront
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.5.
|
33
|
+
version: 3.5.10
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.5.
|
40
|
+
version: 3.5.10
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: workarea-admin
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.5.
|
47
|
+
version: 3.5.10
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 3.5.
|
54
|
+
version: 3.5.10
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: workarea-testing
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 3.5.
|
61
|
+
version: 3.5.10
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 3.5.
|
68
|
+
version: 3.5.10
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|