workarea 3.5.5 → 3.5.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +86 -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: e7d694434c3fca9de48039bdb0e252963db2ffa561a3181b69175cd567d32e3f
|
4
|
+
data.tar.gz: 32857377b6fad82329533cde47c8c8df973757a1c907dc6ce44d60e1ccaa0594
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91bc7748729afd6d4822c0280ed52bd8adeecc6a22215dd947f29517500d8c47a085dba2b1a4c903398ed8071b8112547aa16743ce4b07da564c1603abc87999
|
7
|
+
data.tar.gz: a2ff219ead098a150cd46e0cb81d72a65b7e18c4d4528e8314cdcad38dac3df0d427ae60f292d1b2320558f39b07ffb6246b3e47f8dafdabbef22e45f18275b1
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,89 @@
|
|
1
|
+
Workarea 3.5.6 (2020-03-03)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Fix duplicate suggested searches
|
5
|
+
|
6
|
+
This can heppen if Predictor and Elasticsearch both return a similar
|
7
|
+
query suggestion.
|
8
|
+
Ben Crouse
|
9
|
+
|
10
|
+
* Generate weekly and monthly insights for historical data
|
11
|
+
|
12
|
+
Seeds were only generating insights for a single previous week
|
13
|
+
and month which caused some insights that rely on historical data
|
14
|
+
to not be generated i.e. trending products and searches.
|
15
|
+
|
16
|
+
WORKAREA-166
|
17
|
+
Matt Duffy
|
18
|
+
|
19
|
+
* Validate Custom Event Name
|
20
|
+
|
21
|
+
Workarea now ensures that the "Name" of a custom event is filled in
|
22
|
+
before submitting the form.
|
23
|
+
|
24
|
+
WORKAREA-181
|
25
|
+
Tom Scott
|
26
|
+
|
27
|
+
* Divide By Units Sold in Average Price Calculation
|
28
|
+
|
29
|
+
When calculating the average price for a product in its insights,
|
30
|
+
Workarea was previously using the amount of orders the product appears
|
31
|
+
in as a divisor. This will not show the correct average price of a
|
32
|
+
product unless every order only has a quantity of 1, since it includes
|
33
|
+
the total price of the item rather than its unit price. To make this
|
34
|
+
number accurately reflect the average price paid per unit on a product,
|
35
|
+
Workarea now uses the number of units sold as the divisor when
|
36
|
+
calculating the average unit price of a product.
|
37
|
+
|
38
|
+
WORKAREA-215
|
39
|
+
Tom Scott
|
40
|
+
|
41
|
+
* Randomize Addresses In Seeds
|
42
|
+
|
43
|
+
Workarea now provides random values for street address, city, and state.
|
44
|
+
All addresses are still in the US, however, so they will still validate
|
45
|
+
with default configuration. This provides more diverse seed data that
|
46
|
+
better reflects the real-life admin.
|
47
|
+
|
48
|
+
WORKAREA-213
|
49
|
+
Tom Scott
|
50
|
+
|
51
|
+
* Render Setup When Link is Clicked in Segment Workflow
|
52
|
+
|
53
|
+
The "Setup" page link sent users to the edit action, which has no
|
54
|
+
template associated with it. This resulted in an `UnknownFormat` error
|
55
|
+
appearing in development and a blank page in production. Workarea now
|
56
|
+
renders the `:setup` action's template when going back to the setup
|
57
|
+
page so this will render properly with the right information in the
|
58
|
+
form.
|
59
|
+
|
60
|
+
WORKAREA-182
|
61
|
+
Tom Scott
|
62
|
+
|
63
|
+
* Remove Changes Count in Releases Index
|
64
|
+
|
65
|
+
The `#changesets_for_releasable` query cannot be optimized any further
|
66
|
+
without using some kind of aggregation. Remove it from the index so it
|
67
|
+
won't cause performance problems.
|
68
|
+
|
69
|
+
WORKAREA-208
|
70
|
+
Tom Scott
|
71
|
+
|
72
|
+
* Display Price Range in Pricing SKUs Table
|
73
|
+
|
74
|
+
The price display in the Pricing SKUs index is somewhat confusing, and
|
75
|
+
would show different "Regular Price" data depending on the sale state of
|
76
|
+
the SKU. To resolve this, replace the two price columns with "Sell
|
77
|
+
Price", a column that renders a price range if there are multiple prices
|
78
|
+
set on the SKU, and indicates that it's always going to show the price
|
79
|
+
that a SKU is being sold for. Otherwise, it will just show the `#sell`
|
80
|
+
price of the SKU.
|
81
|
+
|
82
|
+
WORKAREA-311
|
83
|
+
Tom Scott
|
84
|
+
|
85
|
+
|
86
|
+
|
1
87
|
Workarea 3.5.5 (2020-02-21)
|
2
88
|
--------------------------------------------------------------------------------
|
3
89
|
|
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.6
|
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-
|
11
|
+
date: 2020-03-03 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.6
|
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.6
|
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.6
|
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.6
|
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.6
|
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.6
|
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.6
|
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.6
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|