workarea 3.5.20 → 3.5.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +69 -38
- 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: 2dec8f953583f336fb7382b95f2b493c505bbaa7ad8e2fe85ef2251dcddbd307
|
4
|
+
data.tar.gz: d9b310272749f52cc8a2e0ea9fd9d5a697daab32677e5102061f45d0710f64b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c4c4d2fd36e4d1fc657170e6c460b6a90fde8d502c96607d8b20786c4afe021ee7307654f14a8fbc783021667663e7437f77d1c0ff91e1cb6ecd0a5bfed16b6
|
7
|
+
data.tar.gz: 38c7677e07a5e96fd1c7c3fe31bd4774eba62c828bc572d9f5135439157f93773b0592fcf70eed19657c6df0c8089b6aa9035724101d4fbeeb1121997f20e9cc
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,72 @@
|
|
1
|
+
Workarea 3.5.21 (2020-10-14)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Prevent Clearing Out Navigable When Saving Taxons
|
5
|
+
|
6
|
+
The `WORKAREA.newNavigationTaxons` module was looking in the wrong place
|
7
|
+
for the selected navigable item, therefore the `selected` var would
|
8
|
+
always return `undefined`, causing the `navigable_id` param to be
|
9
|
+
blank every time. Fix this by querying for the correct DOM node (the
|
10
|
+
`[data-new-navigation-taxon]` element) and pulling the selected ID from
|
11
|
+
its data.
|
12
|
+
|
13
|
+
WORKAREA-297
|
14
|
+
Fixes #534
|
15
|
+
|
16
|
+
Tom Scott
|
17
|
+
|
18
|
+
* Make CSV test more robust to decorations
|
19
|
+
|
20
|
+
Improve this test so decorating ApplicationDocument to add a field won't
|
21
|
+
cause the test to break.
|
22
|
+
|
23
|
+
Ben Crouse
|
24
|
+
|
25
|
+
* Refactor product entries to allow accessing logic per-product
|
26
|
+
|
27
|
+
This allows easier reuse of this logic, specifically for the site
|
28
|
+
builder plugin we're working on.
|
29
|
+
|
30
|
+
Ben Crouse
|
31
|
+
|
32
|
+
* Fix Test That Will Never Fail
|
33
|
+
|
34
|
+
This test for the `StatusReporter` worker asserted `2`, which will never
|
35
|
+
fail because `2` will never be falsy. Updated the assertion to use the
|
36
|
+
intended `assert_equals`
|
37
|
+
|
38
|
+
Tom Scott
|
39
|
+
|
40
|
+
* Patch RefererParser for Android URLs
|
41
|
+
|
42
|
+
Android App URLs have a special `android-app://` scheme that is rejected
|
43
|
+
by the currently released version of the `referer-parser` gem. The code
|
44
|
+
in this patch already exists in the master branch of the gem, but this
|
45
|
+
has not yet been released, and if Android users browse the storefront it
|
46
|
+
can generate an error when collecting referer information. In case a
|
47
|
+
referer cannot be parsed, Workarea also rescues the error so that
|
48
|
+
checkout requests are not blocked.
|
49
|
+
|
50
|
+
WORKAREA-295
|
51
|
+
Fixes #531
|
52
|
+
|
53
|
+
Tom Scott
|
54
|
+
|
55
|
+
* Fix skip services
|
56
|
+
|
57
|
+
This was broken due to the admin-based configuration looking for a Mongo
|
58
|
+
connection.
|
59
|
+
|
60
|
+
Ben Crouse
|
61
|
+
|
62
|
+
* Try to clarify how to use search synonyms
|
63
|
+
|
64
|
+
There has been repeated confusion around why/how to use synonyms, so this is an attempt to clarify.
|
65
|
+
|
66
|
+
Ben Crouse
|
67
|
+
|
68
|
+
|
69
|
+
|
1
70
|
Workarea 3.5.20 (2020-09-30)
|
2
71
|
--------------------------------------------------------------------------------
|
3
72
|
|
@@ -47,44 +116,6 @@ Workarea 3.5.20 (2020-09-30)
|
|
47
116
|
|
48
117
|
Jonathan Mast
|
49
118
|
|
50
|
-
* Update docs/source/articles/decorate-and-write-tests.html.md
|
51
|
-
|
52
|
-
Co-authored-by: Ben Crouse <bcrouse@workarea.com>
|
53
|
-
|
54
|
-
Tom Scott
|
55
|
-
|
56
|
-
* Update docs/source/articles/decorate-and-write-tests.html.md
|
57
|
-
|
58
|
-
Co-authored-by: Ben Crouse <bcrouse@workarea.com>
|
59
|
-
|
60
|
-
Tom Scott
|
61
|
-
|
62
|
-
* Update docs/source/articles/http-caching.html.md
|
63
|
-
|
64
|
-
Co-authored-by: Ben Crouse <bcrouse@workarea.com>
|
65
|
-
|
66
|
-
Tom Scott
|
67
|
-
|
68
|
-
* Notate Rack::Cache Ignore Params In Documentation
|
69
|
-
|
70
|
-
Add documentation explaining why one might want to ignore query string
|
71
|
-
params in `Rack::Cache`, how to do it in a Workarea environment, and
|
72
|
-
which plugins will do it for you.
|
73
|
-
|
74
|
-
WORKAREA-287
|
75
|
-
|
76
|
-
Tom Scott
|
77
|
-
|
78
|
-
* Clarify Test Setup and Teardown in Documentation
|
79
|
-
|
80
|
-
Add documentation explaining why the `setup` and `teardown` macros are
|
81
|
-
recommended for use with Workarea to set up and teardown tests, as well
|
82
|
-
as some clear examples of how to do this properly.
|
83
|
-
|
84
|
-
WORKAREA-271
|
85
|
-
|
86
|
-
Tom Scott
|
87
|
-
|
88
119
|
* Handle `nil` Percentages in Tax Rates UI
|
89
120
|
|
90
121
|
The `TaxApplication` module already handles percentages that are not
|
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.21
|
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-10-14 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.21
|
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.21
|
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.21
|
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.21
|
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.21
|
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.21
|
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.21
|
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.21
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|