workarea 3.5.13 → 3.5.14
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 +89 -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: 64e9c868e612655443d4c9de8998738836921b13f9ec5e73c5debc41c628468b
|
4
|
+
data.tar.gz: 7d9fc5e37cd69180fc2deee141be46c7c8f8a5666251dc120df787feb87ce544
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d80715c18039bb42ef5deeea1b374bb2299976d8ddf9cf6b5c488ce7b56445a0fe9f1a8142f58120bbce7965a12cf9c84355c6c2ce35aa330248ca8ae791e86a
|
7
|
+
data.tar.gz: c6c54268250931f26d0155436652bb19bbcd3817ac2270b3e3f4d4dcf2f866a188f4288481229ff78a027d76070d5e9b38c4397218490ca60a0b79ff321bd4fb
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,92 @@
|
|
1
|
+
Workarea 3.5.14 (2020-06-25)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Reset Geocoder between tests
|
5
|
+
|
6
|
+
This ensures individual tests monkeying around with Geocoder config will
|
7
|
+
get restored before the next test runs.
|
8
|
+
|
9
|
+
Ben Crouse
|
10
|
+
|
11
|
+
* Fix indexing categorization changesets for deleted releases
|
12
|
+
|
13
|
+
A category can have orphan changesets (from deleted releases) that cause
|
14
|
+
an error when indexing the percolation document for that category.
|
15
|
+
|
16
|
+
Ben Crouse
|
17
|
+
|
18
|
+
* Disable previewing for already published, unscheduled releases
|
19
|
+
|
20
|
+
Due to the previewing in the search index, previewing a published and
|
21
|
+
unscheduled release can cause issues that require it to go through
|
22
|
+
scheduling to get reindexed.
|
23
|
+
|
24
|
+
Ben Crouse
|
25
|
+
|
26
|
+
* Use Display Name For Applied Facet Values
|
27
|
+
|
28
|
+
When rendering the applied filters, wrap the given facet value in
|
29
|
+
the `facet_value_display_name` helper, ensuring that the value rendered
|
30
|
+
is always human readable. This addresses an issue where if the applied
|
31
|
+
filter value is that of a BSON ID, referencing a model somewhere, the
|
32
|
+
BSON ID was rendered in place of the model's name.
|
33
|
+
|
34
|
+
WORKAREA-122
|
35
|
+
|
36
|
+
Tom Scott
|
37
|
+
|
38
|
+
* Fix Segments Workflow Setup Duplication
|
39
|
+
|
40
|
+
The setup form for the new custom segment workflow did not include the
|
41
|
+
ID of an existing segment (if persisted) in the form when submitted,
|
42
|
+
causing multiple duplicate segment records to be created when users go
|
43
|
+
back to the setup step in the workflow. None of the other steps are
|
44
|
+
affected because the ID appears in the URL, but the setup step does a
|
45
|
+
direct POST to `/admin/create_segments`, thus causing this problem.
|
46
|
+
|
47
|
+
WORKAREA-219
|
48
|
+
|
49
|
+
Tom Scott
|
50
|
+
|
51
|
+
* Fix index duplicates after a release is removed
|
52
|
+
|
53
|
+
When a release is deleted, its changes must be reindexed to fix previews
|
54
|
+
for releases scheduled after it. This manifests as duplicate products
|
55
|
+
when previewing releases.
|
56
|
+
|
57
|
+
Ben Crouse
|
58
|
+
|
59
|
+
* Fix Promo Code Counts in Admin
|
60
|
+
|
61
|
+
Previously, promo codes could only be generated once through the admin,
|
62
|
+
so rendering the count of all promo codes as the count requested to be
|
63
|
+
generated was working out. However, as CSV imports and API updates became
|
64
|
+
more widespread, this began to break down as the `#count` field would
|
65
|
+
have to be updated each time a new set of promo codes were added.
|
66
|
+
Instead of reading from this pre-defined field on the code list, render
|
67
|
+
the actual count of promo codes from the database on the code list and
|
68
|
+
promo codes admin pages.
|
69
|
+
|
70
|
+
WORKAREA-199
|
71
|
+
|
72
|
+
Tom Scott
|
73
|
+
|
74
|
+
* Fix indexing after a release publishes
|
75
|
+
|
76
|
+
Due to potential changes in the index, publishing a release can result
|
77
|
+
in duplicate products when previewing.
|
78
|
+
|
79
|
+
Ben Crouse
|
80
|
+
|
81
|
+
* Update queue for release reschedule indexing
|
82
|
+
|
83
|
+
This should be in the releases queue, which has top priority. This will
|
84
|
+
help decrease the latency to accurate previews.
|
85
|
+
|
86
|
+
Ben Crouse
|
87
|
+
|
88
|
+
|
89
|
+
|
1
90
|
Workarea 3.5.13 (2020-06-11)
|
2
91
|
--------------------------------------------------------------------------------
|
3
92
|
|
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.14
|
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-06-
|
11
|
+
date: 2020-06-25 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.14
|
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.14
|
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.14
|
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.14
|
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.14
|
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.14
|
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.14
|
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.14
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|