workarea 3.4.43 → 3.4.44

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