workarea 3.4.31 → 3.4.36

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.
Files changed (4) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +1 -1
  3. data/CHANGELOG.md +261 -0
  4. metadata +12 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 8b0a8c7f28d7b3158e80b61110595a7fd4fdeed87dbba91b0bde9f5a8ed8b722
4
- data.tar.gz: cbc9ba62873c4cd15461d5bb5161901750dee66bbf0ea996625027478f22d76d
2
+ SHA1:
3
+ metadata.gz: 6e4520f150a1c62247e0169969c3a22dae79f9d1
4
+ data.tar.gz: 4af97c046d719e0d3b081c6aee9fda2d6cafcda9
5
5
  SHA512:
6
- metadata.gz: a7b913400af4ad6b843eae22c5ca8f92df168216b023683a2f85b62d556e6769bb60a2eafe820d17567ff85a4db5f334b7942f483127dffac166936ac08ccbf1
7
- data.tar.gz: a3e397371987467b92a724a206faedfad73b6d4a127636308edfefa1788d653b2f7b4cdd41109baba4b3276073344366697d54c1be6d3ee8abc4d74cb101dcc1
6
+ metadata.gz: 9212cb9bd3a795636504175171e0919506b64d950a71a5adc338a22e0e4a2fdb2981671f6290c5e40184f0ddc40d2a5f29204c6a39b3d185fc3c5bf83e0d41bc
7
+ data.tar.gz: ec89b5f7fd7cc959c18645d90a5d97a173124d336e1b94847871da9557df9078020a3e48dfb7f9987912ef4bf702ccf5d301b351650dfac929cb23e35cecfae5
@@ -198,7 +198,7 @@ Layout/SpaceInsideParens:
198
198
  - 'core/spec/models/workarea/order/queries_spec.rb'
199
199
 
200
200
  # Detect hard tabs, no hard tabs.
201
- Layout/Tab:
201
+ Layout/IndentationStyle:
202
202
  Enabled: true
203
203
  Exclude:
204
204
  - 'core/vendor/active_shipping/lib/active_shipping/carriers/canada_post.rb'
@@ -1,3 +1,264 @@
1
+ Workarea 3.4.36 (2020-07-07)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Patch Jbuilder to Support Varying Cache
5
+
6
+ Previously, admins were not able to see up-to-date data in API requests
7
+ due to the `#cache!` method in Jbuilder not being patched to skip
8
+ caching when an admin is logged in. To resolve this, Workarea now
9
+ applies the same patch to Jbuilder as it does to ActionView. Reading
10
+ from the cache is now skipped if you're logged in as an admin, and cache
11
+ keys are appended with the configured `Cache::Varies` just the same as
12
+ in regular Haml views.
13
+
14
+ WORKAREA-243
15
+
16
+ Tom Scott
17
+
18
+ * Bump rack version
19
+
20
+ Fixes CVE-2020-8184
21
+
22
+ Ben Crouse
23
+
24
+ * Add Permissions Append Point to User Workflow
25
+
26
+ This allows a plugin (such as API) to specify permissions categories when
27
+ admins are either editing or creating a user.
28
+
29
+ WORKAREA-240
30
+
31
+ Tom Scott
32
+
33
+
34
+
35
+ Workarea 3.4.35 (2020-06-25)
36
+ --------------------------------------------------------------------------------
37
+
38
+ * Reset Geocoder between tests
39
+
40
+ This ensures individual tests monkeying around with Geocoder config will
41
+ get restored before the next test runs.
42
+
43
+ Ben Crouse
44
+
45
+ * Use Display Name For Applied Facet Values
46
+
47
+ When rendering the applied filters, wrap the given facet value in
48
+ the `facet_value_display_name` helper, ensuring that the value rendered
49
+ is always human readable. This addresses an issue where if the applied
50
+ filter value is that of a BSON ID, referencing a model somewhere, the
51
+ BSON ID was rendered in place of the model's name.
52
+
53
+ WORKAREA-122
54
+
55
+ Tom Scott
56
+
57
+ * Fix Promo Code Counts in Admin
58
+
59
+ Previously, promo codes could only be generated once through the admin,
60
+ so rendering the count of all promo codes as the count requested to be
61
+ generated was working out. However, as CSV imports and API updates became
62
+ more widespread, this began to break down as the `#count` field would
63
+ have to be updated each time a new set of promo codes were added.
64
+ Instead of reading from this pre-defined field on the code list, render
65
+ the actual count of promo codes from the database on the code list and
66
+ promo codes admin pages.
67
+
68
+ WORKAREA-199
69
+
70
+ Tom Scott
71
+
72
+
73
+
74
+ Workarea 3.4.35 (2020-06-25)
75
+ --------------------------------------------------------------------------------
76
+
77
+ * Reset Geocoder between tests
78
+
79
+ This ensures individual tests monkeying around with Geocoder config will
80
+ get restored before the next test runs.
81
+
82
+ Ben Crouse
83
+
84
+ * Use Display Name For Applied Facet Values
85
+
86
+ When rendering the applied filters, wrap the given facet value in
87
+ the `facet_value_display_name` helper, ensuring that the value rendered
88
+ is always human readable. This addresses an issue where if the applied
89
+ filter value is that of a BSON ID, referencing a model somewhere, the
90
+ BSON ID was rendered in place of the model's name.
91
+
92
+ WORKAREA-122
93
+
94
+ Tom Scott
95
+
96
+ * Fix Promo Code Counts in Admin
97
+
98
+ Previously, promo codes could only be generated once through the admin,
99
+ so rendering the count of all promo codes as the count requested to be
100
+ generated was working out. However, as CSV imports and API updates became
101
+ more widespread, this began to break down as the `#count` field would
102
+ have to be updated each time a new set of promo codes were added.
103
+ Instead of reading from this pre-defined field on the code list, render
104
+ the actual count of promo codes from the database on the code list and
105
+ promo codes admin pages.
106
+
107
+ WORKAREA-199
108
+
109
+ Tom Scott
110
+
111
+
112
+
113
+ Workarea 3.4.34 (2020-06-11)
114
+ --------------------------------------------------------------------------------
115
+
116
+ * Bump Geocoder
117
+
118
+ This fixes an irrelevant bundler-audit CVE warning, and adds/updates a bunch of Geocoder lookup options. See https://github.com/alexreisner/geocoder/blob/master/CHANGELOG.md for more info.
119
+
120
+ Ben Crouse
121
+
122
+ * Add QueuePauser to pause sidekiq queues, pause for search reindexing
123
+
124
+ WORKAREA-236
125
+
126
+ Matt Duffy
127
+
128
+ * Handle error from attempting to fetch missing S3 CORS configuration
129
+
130
+ WORKAREA-234
131
+
132
+ Matt Duffy
133
+
134
+ * Don't assume promo codes for indexing discounts
135
+
136
+ A custom discount may be implemented that doesn't use promo codes.
137
+
138
+ Ben Crouse
139
+
140
+ * Bump rack-attack to latest version
141
+
142
+ This fixes rack-attack keys without TTLs set piling up in Redis. This has caused hosting problems.
143
+
144
+ Ben Crouse
145
+
146
+ * Bump Kaminari dependency to fix security alert
147
+
148
+
149
+ Ben Crouse
150
+
151
+ * Fix incorrect shipping options error flash message
152
+
153
+ A flash error incorrectly showed when the order doesn't require shipping,
154
+ and addresses are updated.
155
+
156
+ Ben Crouse
157
+
158
+
159
+
160
+ Workarea 3.4.33 (2020-05-26)
161
+ --------------------------------------------------------------------------------
162
+
163
+ * Fix incorrect import errors
164
+
165
+ When an import fails due to a missing `DataFile::Import` document, the
166
+ `ProcessImport` worker will raise a nil error due to the ensure. This
167
+ fixes by ensuring the `DocumentNotFound` error gets raised.
168
+
169
+ Ben Crouse
170
+
171
+ * Remove caching from direct upload CORS requests
172
+
173
+ The caching continues to give us problems, and this isn't a high-traffic
174
+ part of the system so there isn't a practical need for it.
175
+
176
+ Ben Crouse
177
+
178
+ * Correct/clarify Dragonfly configuration warning
179
+
180
+
181
+ Ben Crouse
182
+
183
+
184
+
185
+ Workarea 3.4.32 (2020-04-28)
186
+ --------------------------------------------------------------------------------
187
+
188
+ * Fix bugs with per_page used in page calculation for search queries
189
+
190
+ Even though this shouldn't come from the outside world, it's easy and
191
+ best to ensure per_page is always a valid number.
192
+
193
+ Ben Crouse
194
+
195
+ * Stub S3 CORS for all integration tests
196
+
197
+ It's annoying and unnecessary to have to stub this for every test that
198
+ uses an asset picker.
199
+
200
+ WORKAREA-209
201
+
202
+ Ben Crouse
203
+
204
+ * Skip localized activeness test when localized active fields are off
205
+
206
+ Fixes #421
207
+
208
+ Ben Crouse
209
+
210
+ * Fix accepting per_page param from outside world
211
+
212
+ Page size is the most important factor in performance for browse pages,
213
+ so we don't want these exposed to the outside world out-of-the-box.
214
+
215
+ Ben Crouse
216
+
217
+ * Update grammar for consistency
218
+
219
+
220
+ Ben Crouse
221
+
222
+ * Corrected no_available_shipping_options translation typo (#418)
223
+
224
+
225
+ JurgenHahn
226
+
227
+ * Fix fullfilment shipped mailer template
228
+
229
+ Fullfilment shipped mailer template is using cancellation header.
230
+
231
+ heyqule
232
+
233
+ * Improve visual design of most discounted products insight
234
+
235
+
236
+ Ben Crouse
237
+
238
+ * Change HashUpdate to use the setter instead of mutation
239
+
240
+ Simply mutating the value doesn't work when the field is localized.
241
+ Mongoid's localization behavior only kicks in when you use the setter.
242
+
243
+ Ben Crouse
244
+
245
+ * Allow setting locale fallbacks for a test
246
+
247
+ This is useful if you want to test fallback behavior. Tests in base
248
+ should be agnostic to whether fallbacks are available or not.
249
+
250
+ Ben Crouse
251
+
252
+ * Fix locale fallback getting unexpectedly autloaded
253
+
254
+ This can happen in the middle of a test suite, causing apparently random
255
+ test failure. This freedom patch prevents fallbacks from autoloading.
256
+ We want to let the implementation make that decision.
257
+
258
+ Ben Crouse
259
+
260
+
261
+
1
262
  Workarea 3.4.31 (2020-04-15)
2
263
  --------------------------------------------------------------------------------
3
264
 
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.31
4
+ version: 3.4.36
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-04-15 00:00:00.000000000 Z
11
+ date: 2020-07-07 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.31
19
+ version: 3.4.36
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.31
26
+ version: 3.4.36
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.31
33
+ version: 3.4.36
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.31
40
+ version: 3.4.36
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.31
47
+ version: 3.4.36
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.31
54
+ version: 3.4.36
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.31
61
+ version: 3.4.36
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.31
68
+ version: 3.4.36
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com
@@ -97,7 +97,8 @@ 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
+ rubyforge_project:
101
+ rubygems_version: 2.6.14.1
101
102
  signing_key:
102
103
  specification_version: 4
103
104
  summary: The Workarea Commerce Platform