workarea 3.4.27 → 3.4.28

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +66 -0
  3. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e90da0bebb195eabb3c05b58ad007447ead50d411cfb3d1b2889cbfef6e7a625
4
- data.tar.gz: 8686b9e93b536e63fd453f68ec915cfcc853d7673814d7dd7c58f327a7ca065a
3
+ metadata.gz: e0be8d416df649a9070efeed75289845b569463b197ba6bc4d8396e70a8aeaa8
4
+ data.tar.gz: 072d602ac5415176b13dfbe82af3ec9de24eba7733fed5ad0f4572cd6bdf1a17
5
5
  SHA512:
6
- metadata.gz: ac4caefa78d5fd6987e59164e1ef4fd42e9af37e2efc0426cf461fa5d2d2b4a2d9bf5aca6207592c4bc2881f67a50965109786feedf9853f86e3369171351e47
7
- data.tar.gz: 48719f0edf053697c194bf12579b9c96090d68ceaeaf64f047ffba2a6eee5ab8381ce64a590d1baa2d894be274cdff38a1ebc3f8fcf140df2a660458e802336b
6
+ metadata.gz: a1534cb0d39cc40c0468b8a8e4a9a3b1e296ea9fe86190393aa21a90645313eddfffd5477206a0a5e133ceefd921c3eb6a9643df1216391d00b65941d6933b2c
7
+ data.tar.gz: 2a95bd9d7d0513feeb9adfc64883468f12a2f48ae0890cd9426f060903697ef2a21d8ee192578af4e363a8a8cf857354589512f3517a518a6079d5458b9f9d98
data/CHANGELOG.md CHANGED
@@ -1,3 +1,69 @@
1
+ Workarea 3.4.28 (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
+ * Divide By Units Sold in Average Price Calculation
20
+
21
+ When calculating the average price for a product in its insights,
22
+ Workarea was previously using the amount of orders the product appears
23
+ in as a divisor. This will not show the correct average price of a
24
+ product unless every order only has a quantity of 1, since it includes
25
+ the total price of the item rather than its unit price. To make this
26
+ number accurately reflect the average price paid per unit on a product,
27
+ Workarea now uses the number of units sold as the divisor when
28
+ calculating the average unit price of a product.
29
+
30
+ WORKAREA-215
31
+ Tom Scott
32
+
33
+ * Randomize Addresses In Seeds
34
+
35
+ Workarea now provides random values for street address, city, and state.
36
+ All addresses are still in the US, however, so they will still validate
37
+ with default configuration. This provides more diverse seed data that
38
+ better reflects the real-life admin.
39
+
40
+ WORKAREA-213
41
+ Tom Scott
42
+
43
+ * Remove Changes Count in Releases Index
44
+
45
+ The `#changesets_for_releasable` query cannot be optimized any further
46
+ without using some kind of aggregation. Remove it from the index so it
47
+ won't cause performance problems.
48
+
49
+ WORKAREA-208
50
+ Tom Scott
51
+
52
+ * Display Price Range in Pricing SKUs Table
53
+
54
+ The price display in the Pricing SKUs index is somewhat confusing, and
55
+ would show different "Regular Price" data depending on the sale state of
56
+ the SKU. To resolve this, replace the two price columns with "Sell
57
+ Price", a column that renders a price range if there are multiple prices
58
+ set on the SKU, and indicates that it's always going to show the price
59
+ that a SKU is being sold for. Otherwise, it will just show the `#sell`
60
+ price of the SKU.
61
+
62
+ WORKAREA-311
63
+ Tom Scott
64
+
65
+
66
+
1
67
  Workarea 3.4.27 (2020-02-21)
2
68
  --------------------------------------------------------------------------------
3
69
 
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.27
4
+ version: 3.4.28
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-02-21 00:00:00.000000000 Z
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.4.27
19
+ version: 3.4.28
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.27
26
+ version: 3.4.28
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.27
33
+ version: 3.4.28
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.27
40
+ version: 3.4.28
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.27
47
+ version: 3.4.28
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.27
54
+ version: 3.4.28
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.27
61
+ version: 3.4.28
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.27
68
+ version: 3.4.28
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com