workarea 3.5.22 → 3.5.23
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +64 -13
- 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: b59e7c7a5613d6fdb84185e26d3a546e6608da318f53f54d829b9a0f1e49098f
|
4
|
+
data.tar.gz: e5be3470bb9703c60be7b9fa2326f05349280ba766118779a5e093f08aec40fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d36e7e06d17ea04ef2f45de939e76d423c9b8c883f14932ca4dd412c5a5743e71499ba4980b0db8339f19fd96312aa1f1e924af5071b185bc663bf59ffa5b0f
|
7
|
+
data.tar.gz: cef39ca5f623ecd006409b5e7a83c864461bae89cb1aa16bfb659ac4e5cb5d7f0eb919715a6657de8671e25cc95aaf0f4f0b26dbe07a140b74e175f84a098aed
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,67 @@
|
|
1
|
+
Workarea 3.5.23 (2020-11-25)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Bump jquery-rails to patch XSS vulnerabilities
|
5
|
+
|
6
|
+
|
7
|
+
Ben Crouse
|
8
|
+
|
9
|
+
* Add warning to inform developers why redirects aren't working locally
|
10
|
+
|
11
|
+
This has confused developers a couple of times, so hopefully adding a
|
12
|
+
warning will help.
|
13
|
+
|
14
|
+
Ben Crouse
|
15
|
+
|
16
|
+
* Fix Elasticsearch indexes when changing locales in tests
|
17
|
+
|
18
|
+
This ensures the proper search indexes are in place when you switch
|
19
|
+
locales for an integration test.
|
20
|
+
|
21
|
+
Ben Crouse
|
22
|
+
|
23
|
+
* Prevent Error on Missing Custom Template View Model Class
|
24
|
+
|
25
|
+
Typically, custom product templates use their own subclass of
|
26
|
+
`Workarea::Storefront::ProductViewModel`, but this isn't supposed to be
|
27
|
+
necessary if there's no custom logic that needs to be in the view model
|
28
|
+
layer. However, when developers tried to add a custom template without
|
29
|
+
the view model, they received an error. To prevent this, Workarea will
|
30
|
+
now catch the `NameError` thrown by `Storefront::ProductViewModel.wrap`
|
31
|
+
in the event of a custom product template not having a view model
|
32
|
+
defined.
|
33
|
+
|
34
|
+
WORKAREA-304
|
35
|
+
|
36
|
+
Tom Scott
|
37
|
+
|
38
|
+
* Fix Missing Instance Variable In Cart Items View
|
39
|
+
|
40
|
+
The `@cart` instance variable was only being conditionally defined if
|
41
|
+
`current_order.add_item` succeeded. This caused an error if `#add_item`
|
42
|
+
happens to fail when calling `POST /cart/items` from the storefront,
|
43
|
+
resulting in a 500 error. To prevent this error, the definition of this
|
44
|
+
variable has been moved above the condition.
|
45
|
+
|
46
|
+
WORKAREA-303
|
47
|
+
|
48
|
+
Tom Scott
|
49
|
+
|
50
|
+
* Shorten index name
|
51
|
+
|
52
|
+
Mongo will raise when index names exceed a certain length. For example,
|
53
|
+
having a long Workarea.config.site_name could cause this.
|
54
|
+
|
55
|
+
Ben Crouse
|
56
|
+
|
57
|
+
* Fix missing jump to positions breaking jump to
|
58
|
+
|
59
|
+
Ruby raises when nil is compared, so default these values.
|
60
|
+
|
61
|
+
Ben Crouse
|
62
|
+
|
63
|
+
|
64
|
+
|
1
65
|
Workarea 3.5.22 (2020-11-03)
|
2
66
|
--------------------------------------------------------------------------------
|
3
67
|
|
@@ -29,19 +93,6 @@ Workarea 3.5.22 (2020-11-03)
|
|
29
93
|
|
30
94
|
Ben Crouse
|
31
95
|
|
32
|
-
* Include Guest Orders In Admin For Users
|
33
|
-
|
34
|
-
When looking up recent orders for a user in the admin, also include any
|
35
|
-
guest orders placed with the same email address. This fixes a
|
36
|
-
discrepancy between the amount of orders seen in admin for a given user,
|
37
|
-
and the amount of orders attributed to a user within insights, as
|
38
|
-
insights treat all orders with the same email address as coming from the
|
39
|
-
same user.
|
40
|
-
|
41
|
-
WORKAREA-283
|
42
|
-
|
43
|
-
Tom Scott
|
44
|
-
|
45
96
|
* Add Note To Category Default Sort Edit
|
46
97
|
|
47
98
|
The selected `default_sort` of a category will be always used in the
|
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.23
|
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-
|
11
|
+
date: 2020-11-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.23
|
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.23
|
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.23
|
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.23
|
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.23
|
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.23
|
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.23
|
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.23
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|