workarea 3.5.18 → 3.5.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 +75 -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: 6bbb74d0f4fafdb18d0f374ad6f0c6d72958c83851c3656d289a09b2b126273d
|
4
|
+
data.tar.gz: 94a2a4e8cd8f57098e13d788d4c8270ea04b8dbe9d4483cb862fffa87381f4aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b42d3a0ff38ce10cb5521aa17d305f9ae13d279098b931d73c243c2ea0e0497aa74d3cf9928c4c5627b3fb0fd25f6142b03e6546fe34feca9eaecf2704337ec6
|
7
|
+
data.tar.gz: eee45d304f2e7b1e4f4392af1dae7fe8b5384b625613808136cefa44ed197965c8d142f92027e1617f261fcbf9223ab9e41669aa73e986e87f7cf0dfe919344a
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,78 @@
|
|
1
|
+
Workarea 3.5.19 (2020-09-16)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Fix Editing Product Images in Admin
|
5
|
+
|
6
|
+
When an image does not include an option, the edit page errors because
|
7
|
+
`#parameterize` cannot be called on `@image.option` since that is
|
8
|
+
returning `nil`. Additionally, the line of code in which this is called
|
9
|
+
is meant to set an ID attribute on the element for which an image is
|
10
|
+
rendered. There doesn't seem to be anything in our codebase that uses
|
11
|
+
this, and furthermore since there's no validation for unique options per
|
12
|
+
set of product images, this could cause a duplicate ID error in certain
|
13
|
+
scenarios. To resolve this, the ID attribute has been removed from this
|
14
|
+
`<img>` tag.
|
15
|
+
|
16
|
+
WORKAREA-254
|
17
|
+
|
18
|
+
Tom Scott
|
19
|
+
|
20
|
+
* Improve display of disabled toggles
|
21
|
+
|
22
|
+
When a toggle button is disabled, it should reflect that visually
|
23
|
+
instead of just looking like it should be functional.
|
24
|
+
|
25
|
+
Ben Crouse
|
26
|
+
|
27
|
+
* Add config to allow defining a default tax code for shipping services
|
28
|
+
|
29
|
+
WORKAREA-256
|
30
|
+
|
31
|
+
Matt Duffy
|
32
|
+
|
33
|
+
* Fix incorrect tracking and metrics after impersonation
|
34
|
+
|
35
|
+
Not managing the email cookie and unintentional merging of metrics leads
|
36
|
+
to incorrect values in the admin.
|
37
|
+
|
38
|
+
Ben Crouse
|
39
|
+
|
40
|
+
* Remove CSV Messaging For Options Fields
|
41
|
+
|
42
|
+
This removes the "Comma separated: just, like, this" messaging and
|
43
|
+
tooltip that explains more about comma-separated fields for filters and
|
44
|
+
details. Options do not have these same constraints, and this help
|
45
|
+
bubble just serves as a point of confusion for admins.
|
46
|
+
|
47
|
+
WORKAREA-266
|
48
|
+
|
49
|
+
Tom Scott
|
50
|
+
|
51
|
+
* Update inventory sku jump to text
|
52
|
+
|
53
|
+
Co-authored-by: Ben Crouse <bcrouse@workarea.com>
|
54
|
+
|
55
|
+
Matt Duffy
|
56
|
+
|
57
|
+
* Make Order::Item#fulfilled_by? the canonical check of item's fulfillment
|
58
|
+
|
59
|
+
Methods such as #shipping? and #download? defined from available
|
60
|
+
fulfillment policies now call #fulfilled_by rather than being called
|
61
|
+
by it. This allows #fulfilled_by? to be modified to support more
|
62
|
+
complex scenarios like bundled items from kits.
|
63
|
+
|
64
|
+
WORKAREA-273
|
65
|
+
|
66
|
+
Matt Duffy
|
67
|
+
|
68
|
+
* Update admin views for consistent display of inventory availability
|
69
|
+
|
70
|
+
WORKAREA-262
|
71
|
+
|
72
|
+
Matt Duffy
|
73
|
+
|
74
|
+
|
75
|
+
|
1
76
|
Workarea 3.5.18 (2020-09-01)
|
2
77
|
--------------------------------------------------------------------------------
|
3
78
|
|
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.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: 2020-09-
|
11
|
+
date: 2020-09-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.5.
|
19
|
+
version: 3.5.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.5.
|
26
|
+
version: 3.5.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.5.
|
33
|
+
version: 3.5.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.5.
|
40
|
+
version: 3.5.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.5.
|
47
|
+
version: 3.5.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.5.
|
54
|
+
version: 3.5.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.5.
|
61
|
+
version: 3.5.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.5.
|
68
|
+
version: 3.5.19
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|