workarea 3.5.22 → 3.5.27

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 +203 -13
  3. metadata +11 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2c0f56cccaf60f9b13b1b967b85827bf5cf296a55fd8a110b302d5e2762d2b9
4
- data.tar.gz: 413fbff8139c784676bf66210053e5f08e0700da8b34d0241cc1ba0eaf1b44ba
3
+ metadata.gz: 6ad6f228c01bf05687709d5e0104834eec2bc3c118dd2456b24c00caa619953d
4
+ data.tar.gz: 5f83a881dbefe741abddc8b234b8c55de1944e9e733cc1c82a4f92d795c4c654
5
5
  SHA512:
6
- metadata.gz: 5ec9fbdcdaee5d691f6150788a6c03ccd15bcc3504657f16c6025bc3b8f46c963d153e79fb7a93b354c4e6c9875aea28e7cad2227fc188691211df4522afdb41
7
- data.tar.gz: c6bdf6685116c185654dc63e643d54c6e291ff69e835e02d2e2b388196ea935cf15e18148791a8b03ff4022e074a9fcc14b91f6b9f73f3d2a38ba889c4feeea9
6
+ metadata.gz: aed04a0da873f57beb339d9c607045a5abfa8f2e9027ba6aeb94ca25658c7509537f845f0b28526317f0aa39f76ff0d31d674ccc9078245fdb1248e61cc3cd92
7
+ data.tar.gz: 5e4976e60f6202ab407d1c98e26d167664478cc87574d86b46269a9c5b4b7523ed303f77548203368f327101c404eeb82947874cfc48105712c39d0d32948afa
data/CHANGELOG.md CHANGED
@@ -1,3 +1,206 @@
1
+ Workarea 3.5.27 (2021-07-19)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Fix services which broke due to new docker-compose release
5
+
6
+ docker-composer -v is no longer works for the recent version 2.0.0-beta.4 (#598)
7
+
8
+ Rocela Durazo
9
+
10
+
11
+
12
+ Workarea 3.5.26 (2021-01-20)
13
+ --------------------------------------------------------------------------------
14
+
15
+ * Improve password performance when running tests
16
+
17
+ Lowering the bcrypt cost lowers the time required to encrypt a password, at the
18
+ cost of increasing the speed at which an attacker can try to crack the password.
19
+ This is an acceptable tradeoff for improving performance of running tests. This
20
+ shaves about 5 minutes off of the admin tests.
21
+
22
+ Hat tip to Jeff Yucis for discovery.
23
+
24
+ Ben Crouse
25
+
26
+ * Bump redcarpet version to fix security warnings
27
+
28
+ Redcarpet released a security fix, so ensure using a version with that fix.
29
+
30
+ Redcarpet is only used to render help pages in the admin, so the vulnerability in Workarea is minimal.
31
+
32
+ Ben Crouse
33
+
34
+ * Improve image URL detection for dialog_buttons
35
+
36
+ This only worked if the URL had only one dot (before the file extension)
37
+ and no query parameters. Run it through the URL parser to provide more
38
+ robust handling.
39
+
40
+ Jonathan Mast
41
+
42
+ * Improve image URL detection for dialog_buttons
43
+
44
+ This only worked if the URL had only one dot (before the file extension)
45
+ and no query parameters. Run it through the URL parser to provide more
46
+ robust handling.
47
+
48
+ Jonathan Mast
49
+
50
+ * Bump version for release
51
+
52
+
53
+ Ben Crouse
54
+
55
+
56
+
57
+ Workarea 3.5.25 (2020-12-23)
58
+ --------------------------------------------------------------------------------
59
+
60
+ * Fix admin indexing for embedded model changes
61
+
62
+ When embedded models are changed, their root documents weren't being
63
+ reindexed for admin search. This PR ensures admin indexing happens
64
+ correctly.
65
+
66
+ Ben Crouse
67
+
68
+ * Index search customizations, handle missing search models for changeset releasables
69
+
70
+ WORKAREA-322
71
+
72
+ Matt Duffy
73
+
74
+ * Move release undo changeset building to sidekiq for large changesets
75
+
76
+ WORKAREA-316
77
+
78
+ Matt Duffy
79
+
80
+ * Fix undo releases not causing models to reindex
81
+
82
+ Because the changeset is the only getting saved when building an undo,
83
+ admin reindexing for the affected models isn't happening. This change
84
+ triggers callbacks to ensure any related side-effects happen.
85
+
86
+ Ben Crouse
87
+
88
+ * Use inline_svg fallback for missing releasable icons
89
+
90
+ WORKAREA-310
91
+
92
+ Matt Duffy
93
+
94
+ * Simplify undo releases, allow multiple undo releases from a single release
95
+
96
+ WORKAREA-316
97
+
98
+ Matt Duffy
99
+
100
+ * Update display of release changeset to handle large changesets
101
+
102
+ WORKAREA-310
103
+
104
+ Matt Duffy
105
+
106
+ * Allow admin config array fields to define a values type
107
+
108
+ WORKAREA-311
109
+
110
+ Matt Duffy
111
+
112
+ * Check if a releasable has a localized active field before redefining it
113
+
114
+ If Workarea.config.localized_active_field is set to false, the active
115
+ field is redefined for each Releasable model to ensure the configuration
116
+ is honored. With inherited models like discounts, this can cause the
117
+ redefintion of active multiple times causing it to override custom active
118
+ behaviors for segments. Only redefining the method if its currently in
119
+ the models localized_fields list should ensure this does not happen.
120
+
121
+ WORKAREA-309
122
+
123
+ Matt Duffy
124
+
125
+ * Update releasable active test to work without localized active fields
126
+
127
+ WORKAREA-309
128
+
129
+ Matt Duffy
130
+
131
+
132
+
133
+ Workarea 3.5.24 (2020-12-22)
134
+ --------------------------------------------------------------------------------
135
+
136
+ Due to a mistake releasing this gem, it has been yanked. See v3.5.25 instead.
137
+
138
+
139
+
140
+ Workarea 3.5.23 (2020-11-25)
141
+ --------------------------------------------------------------------------------
142
+
143
+ * Bump jquery-rails to patch XSS vulnerabilities
144
+
145
+
146
+ Ben Crouse
147
+
148
+ * Add warning to inform developers why redirects aren't working locally
149
+
150
+ This has confused developers a couple of times, so hopefully adding a
151
+ warning will help.
152
+
153
+ Ben Crouse
154
+
155
+ * Fix Elasticsearch indexes when changing locales in tests
156
+
157
+ This ensures the proper search indexes are in place when you switch
158
+ locales for an integration test.
159
+
160
+ Ben Crouse
161
+
162
+ * Prevent Error on Missing Custom Template View Model Class
163
+
164
+ Typically, custom product templates use their own subclass of
165
+ `Workarea::Storefront::ProductViewModel`, but this isn't supposed to be
166
+ necessary if there's no custom logic that needs to be in the view model
167
+ layer. However, when developers tried to add a custom template without
168
+ the view model, they received an error. To prevent this, Workarea will
169
+ now catch the `NameError` thrown by `Storefront::ProductViewModel.wrap`
170
+ in the event of a custom product template not having a view model
171
+ defined.
172
+
173
+ WORKAREA-304
174
+
175
+ Tom Scott
176
+
177
+ * Fix Missing Instance Variable In Cart Items View
178
+
179
+ The `@cart` instance variable was only being conditionally defined if
180
+ `current_order.add_item` succeeded. This caused an error if `#add_item`
181
+ happens to fail when calling `POST /cart/items` from the storefront,
182
+ resulting in a 500 error. To prevent this error, the definition of this
183
+ variable has been moved above the condition.
184
+
185
+ WORKAREA-303
186
+
187
+ Tom Scott
188
+
189
+ * Shorten index name
190
+
191
+ Mongo will raise when index names exceed a certain length. For example,
192
+ having a long Workarea.config.site_name could cause this.
193
+
194
+ Ben Crouse
195
+
196
+ * Fix missing jump to positions breaking jump to
197
+
198
+ Ruby raises when nil is compared, so default these values.
199
+
200
+ Ben Crouse
201
+
202
+
203
+
1
204
  Workarea 3.5.22 (2020-11-03)
2
205
  --------------------------------------------------------------------------------
3
206
 
@@ -29,19 +232,6 @@ Workarea 3.5.22 (2020-11-03)
29
232
 
30
233
  Ben Crouse
31
234
 
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
235
  * Add Note To Category Default Sort Edit
46
236
 
47
237
  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.22
4
+ version: 3.5.27
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: 2021-07-19 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.22
19
+ version: 3.5.27
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.22
26
+ version: 3.5.27
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.22
33
+ version: 3.5.27
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.22
40
+ version: 3.5.27
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.22
47
+ version: 3.5.27
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.22
54
+ version: 3.5.27
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.22
61
+ version: 3.5.27
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.22
68
+ version: 3.5.27
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubygems_version: 3.0.3
100
+ rubygems_version: 3.2.3
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: The Workarea Commerce Platform