workarea 3.4.18 → 3.4.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +71 -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: 19666f05ee388e6e6dbdaa3971cf7a099798079381d476920bdffe1d879ea84c
|
4
|
+
data.tar.gz: 22d6ebb67d0535452e9453a5d2c2d3794cd78962b57305e9f7127fbe651c10cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecf083ce0c79a1908dbf61629764e94841a831c13dbc326726f57f34e4bdc2e87613dd7fa09bc79108739eb65076cf9539b3d53b1c8b05ea15e3b4600b600957
|
7
|
+
data.tar.gz: 6358d253df9ac4ed6dcbad11b4059d7570df86464aa3a68bf60ce244b572eae2908c2570fdc85985ecf56ce3a3ebfba8f4c24cfb2dca25677ccfd899bc99ed01
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,74 @@
|
|
1
|
+
Workarea 3.4.19 (2019-10-16)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Fix missing aspect ratio magic attribute
|
5
|
+
|
6
|
+
This magic attribute doesn't need to be calculated, it's the inverse of the aspect ratio we already have.
|
7
|
+
Ben Crouse
|
8
|
+
|
9
|
+
* v3.4.19 Patch Release Notes
|
10
|
+
|
11
|
+
Tom Scott
|
12
|
+
|
13
|
+
* Improve Mailer Documentation
|
14
|
+
|
15
|
+
Direct readers to ActionMailer resources when they're looking to create
|
16
|
+
new mailers rather than style or modify existing ones. Also added some
|
17
|
+
information about unit testing mailer classes.
|
18
|
+
Tom Scott
|
19
|
+
|
20
|
+
* Lock Down Sprockets to v3.7.2
|
21
|
+
|
22
|
+
Sprockets v4.0 was released on 10/8/2019, which removed the
|
23
|
+
`.register_engine` method that is depended on by many extensions to
|
24
|
+
Sprockets at the current moment. Lock down Sprockets to v3.7.2 to avoid
|
25
|
+
these issues, which will show up when the app is loaded or tests are
|
26
|
+
run.
|
27
|
+
|
28
|
+
WORKAREA-18
|
29
|
+
Tom Scott
|
30
|
+
|
31
|
+
* Keep `_id` Suffix In Customized Fields
|
32
|
+
|
33
|
+
When adding a customized field to a `Customizations` class that ends in
|
34
|
+
`_id`, Workarea was previously stripping this suffix from the computed
|
35
|
+
instance variable name that is converted into snake case from any kind
|
36
|
+
of input. This causes issues because the data doesn't appear to be
|
37
|
+
making it into customizations, but is really there under a different
|
38
|
+
instance variable name. To resolve the issue, Workarea is now using the
|
39
|
+
`#underscore` String helper prior to calling `#optionize`, which will
|
40
|
+
cause the value to be properly cased before it's displayed to the end
|
41
|
+
user.
|
42
|
+
|
43
|
+
(#144)
|
44
|
+
Tom Scott
|
45
|
+
|
46
|
+
* Fix Self-Referential Category Rules
|
47
|
+
|
48
|
+
Adding the same ID to a category product rule matching the product list
|
49
|
+
that contains it results in some wonky results coming back. This was
|
50
|
+
originally diagnosed as an issue when combining category rules, but in
|
51
|
+
reality, it has to do with an admin mis-using the product rules
|
52
|
+
interface and perhaps accidentally using the category's own ID in a
|
53
|
+
product rule. To prevent this from happening, prevent the category's own
|
54
|
+
ID from being selectable in the admin interface.
|
55
|
+
|
56
|
+
(#52)
|
57
|
+
Tom Scott
|
58
|
+
|
59
|
+
* Improve order of changesets in Timeline UI (#124)
|
60
|
+
|
61
|
+
The Timeline UI should now display:
|
62
|
+
|
63
|
+
1. Unscheduled changesets
|
64
|
+
1. Scheduled changesets, ordered by the release's publish date,
|
65
|
+
descending
|
66
|
+
1. Today (if applicable)
|
67
|
+
1. Historical changesets
|
68
|
+
Curt Howard
|
69
|
+
|
70
|
+
|
71
|
+
|
1
72
|
Workarea 3.4.18 (2019-10-01)
|
2
73
|
--------------------------------------------------------------------------------
|
3
74
|
|
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.4.
|
4
|
+
version: 3.4.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Crouse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-16 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.4.
|
19
|
+
version: 3.4.19
|
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.4.
|
26
|
+
version: 3.4.19
|
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.4.
|
33
|
+
version: 3.4.19
|
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.4.
|
40
|
+
version: 3.4.19
|
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.4.
|
47
|
+
version: 3.4.19
|
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.4.
|
54
|
+
version: 3.4.19
|
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.4.
|
61
|
+
version: 3.4.19
|
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.4.
|
68
|
+
version: 3.4.19
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|