workarea 3.5.12 → 3.5.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +110 -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: 4e6e331bdf3b1cac51846183a0632ae3e95e113de1999f30bb963c3172d09dcb
|
4
|
+
data.tar.gz: b4251a0c533eabcfb2beae02870da6f57bc044e10b8e98d130f8af79c6c7cc05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcaafe29a3edde5189212645a476bcbb12a80e46e6dad864564b316540526d65abb5cc7b0c753edc7073809da4f759492761ed02ba06ab9e1e753c34e09fa90c
|
7
|
+
data.tar.gz: 7fa5a3d88404625c106076f9f181d63d41fce388756bf6114733804a947da907eeeacc8653437fd4817a32d3fa7f2bd2d3d04dfd3ffa3c00a1f30a7d718bc888
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,113 @@
|
|
1
|
+
Workarea 3.5.13 (2020-06-11)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Fix duplicate products in release previews for featured product changes
|
5
|
+
|
6
|
+
When featured product changes stack in a release, duplicates will show
|
7
|
+
when previewing. This is due to the product's Elasticsearch documents
|
8
|
+
missing changeset IDs for releases scheduled after the release that
|
9
|
+
document is for. This fixes by indexing those release IDs as well.
|
10
|
+
|
11
|
+
Note that this will require a reindex to see the fix immediately. But
|
12
|
+
there's no harm in letting it roll out as products gradually get
|
13
|
+
reindexed.
|
14
|
+
|
15
|
+
Ben Crouse
|
16
|
+
|
17
|
+
* Fix reindexing of featured product resorting within a release
|
18
|
+
|
19
|
+
Resorting featured products within a release causes an inaccurate set of
|
20
|
+
changes from Mongoid's perspective, since it is only looking at what's
|
21
|
+
live vs what's going to be released. The changes within the release
|
22
|
+
aren't represented. This can manifest as incorrect sorts when previewing
|
23
|
+
in the storefront.
|
24
|
+
|
25
|
+
Ben Crouse
|
26
|
+
|
27
|
+
* Add additional append points to admin system.
|
28
|
+
|
29
|
+
Adds append points to product details, product content, variant and inventory sku.
|
30
|
+
|
31
|
+
Jeff Yucis
|
32
|
+
|
33
|
+
* Bump Geocoder
|
34
|
+
|
35
|
+
This fixes an irrelevant bundler-audit CVE warning, and adds/updates a bunch of Geocoder lookup options. See https://github.com/alexreisner/geocoder/blob/master/CHANGELOG.md for more info.
|
36
|
+
|
37
|
+
Ben Crouse
|
38
|
+
|
39
|
+
* Fix releases shifting day on the calendar when scrolling
|
40
|
+
|
41
|
+
This was caused by legacy timezone code that's irrelevant since we
|
42
|
+
shifted to a fix server-side timezone for the admin.
|
43
|
+
|
44
|
+
Ben Crouse
|
45
|
+
|
46
|
+
* Add QueuePauser to pause sidekiq queues, pause for search reindexing
|
47
|
+
|
48
|
+
WORKAREA-236
|
49
|
+
|
50
|
+
Matt Duffy
|
51
|
+
|
52
|
+
* Add index for releasable fields on changets, correct order fraud index
|
53
|
+
|
54
|
+
WORKAREA-235
|
55
|
+
|
56
|
+
Matt Duffy
|
57
|
+
|
58
|
+
* Handle error from attempting to fetch missing S3 CORS configuration
|
59
|
+
|
60
|
+
WORKAREA-234
|
61
|
+
|
62
|
+
Matt Duffy
|
63
|
+
|
64
|
+
* Fix storefront indexing when releases are rescheduled
|
65
|
+
|
66
|
+
When releases get rescheduled, the storefront index can end up with
|
67
|
+
duplicate and/or incorrect entries. This adds a worker which updates the
|
68
|
+
index with minimal querying/updating.
|
69
|
+
|
70
|
+
Ben Crouse
|
71
|
+
|
72
|
+
* Don't assume promo codes for indexing discounts
|
73
|
+
|
74
|
+
A custom discount may be implemented that doesn't use promo codes.
|
75
|
+
|
76
|
+
Ben Crouse
|
77
|
+
|
78
|
+
* Bump rack-attack to latest version
|
79
|
+
|
80
|
+
This fixes rack-attack keys without TTLs set piling up in Redis. This has caused hosting problems.
|
81
|
+
|
82
|
+
Ben Crouse
|
83
|
+
|
84
|
+
* Bump Kaminari dependency to fix security alert
|
85
|
+
|
86
|
+
|
87
|
+
Ben Crouse
|
88
|
+
|
89
|
+
* Fix query caching in Releasable
|
90
|
+
|
91
|
+
When reloading a model to get an instance for a release, if the model
|
92
|
+
had already been loaded, a cached version of the model was returned.
|
93
|
+
This causes incorrect values on the instance you thought you were getting
|
94
|
+
for a release.
|
95
|
+
|
96
|
+
This first manifested as a bug where adding a featured product that
|
97
|
+
had a release change to make it active caused reindexing to make it
|
98
|
+
active but it shouldn't have been.
|
99
|
+
|
100
|
+
Ben Crouse
|
101
|
+
|
102
|
+
* Fix incorrect shipping options error flash message
|
103
|
+
|
104
|
+
A flash error incorrectly showed when the order doesn't require shipping,
|
105
|
+
and addresses are updated.
|
106
|
+
|
107
|
+
Ben Crouse
|
108
|
+
|
109
|
+
|
110
|
+
|
1
111
|
Workarea 3.5.12 (2020-05-26)
|
2
112
|
--------------------------------------------------------------------------------
|
3
113
|
|
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.13
|
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-06-11 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.13
|
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.13
|
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.13
|
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.13
|
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.13
|
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.13
|
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.13
|
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.13
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|