workarea 3.4.30 → 3.4.35

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 +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/CHANGELOG.md +266 -0
  4. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e34ecd2ecf9a1af3fe91d895b0d38fad3a597f91a0ce1a6a5bc8114bab14a8b3
4
- data.tar.gz: c3a604f24deb8f62b47bf29d31f5bd0df682a34e8a0b897c68bf2a59dc1d10c4
3
+ metadata.gz: aa9860dff671718a99702382c8152f5b09df8f771e279bdc6b111c77313aedd2
4
+ data.tar.gz: 1356a871dd097b8cf6c72b3b0970892c027ebc96da7f0c26a698866c6f336ccf
5
5
  SHA512:
6
- metadata.gz: d06d72b138c2ad0c6c6706ec16dc344257038c4935ada3fd565ce1ff053f070cb621ca3468a3a3a06c7cd9c3372c5b6e7152c2fda390d71fd07f94482a97ff10
7
- data.tar.gz: 335df900290f4e45673de5664f5e97b5a44210d92775d2ffb1a186cee76a91c1ef9dce3704f2345be22ad64a28bec8fd833fcab071b2becc3168385df7725892
6
+ metadata.gz: 20d49c885eb997e5a782e5a5908b1dc352152aade409e5096bd75bb9f408f8a869f2d4be9b6a6d709acd60c49ce23d72151458c83b5295bdb8b8acd4457ad4ac
7
+ data.tar.gz: 1514faeed52dbc4e6e762a28d1c62c25c00fd47b729f3baa89501a8fe851fcac1b1b6a881105261f6e95e83ca2337deacc107f96f6a9f2e8f163b3ead2defdd8
@@ -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,269 @@
1
+ Workarea 3.4.35 (2020-06-25)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Reset Geocoder between tests
5
+
6
+ This ensures individual tests monkeying around with Geocoder config will
7
+ get restored before the next test runs.
8
+
9
+ Ben Crouse
10
+
11
+ * Use Display Name For Applied Facet Values
12
+
13
+ When rendering the applied filters, wrap the given facet value in
14
+ the `facet_value_display_name` helper, ensuring that the value rendered
15
+ is always human readable. This addresses an issue where if the applied
16
+ filter value is that of a BSON ID, referencing a model somewhere, the
17
+ BSON ID was rendered in place of the model's name.
18
+
19
+ WORKAREA-122
20
+
21
+ Tom Scott
22
+
23
+ * Fix Promo Code Counts in Admin
24
+
25
+ Previously, promo codes could only be generated once through the admin,
26
+ so rendering the count of all promo codes as the count requested to be
27
+ generated was working out. However, as CSV imports and API updates became
28
+ more widespread, this began to break down as the `#count` field would
29
+ have to be updated each time a new set of promo codes were added.
30
+ Instead of reading from this pre-defined field on the code list, render
31
+ the actual count of promo codes from the database on the code list and
32
+ promo codes admin pages.
33
+
34
+ WORKAREA-199
35
+
36
+ Tom Scott
37
+
38
+
39
+
40
+ Workarea 3.4.35 (2020-06-25)
41
+ --------------------------------------------------------------------------------
42
+
43
+ * Reset Geocoder between tests
44
+
45
+ This ensures individual tests monkeying around with Geocoder config will
46
+ get restored before the next test runs.
47
+
48
+ Ben Crouse
49
+
50
+ * Use Display Name For Applied Facet Values
51
+
52
+ When rendering the applied filters, wrap the given facet value in
53
+ the `facet_value_display_name` helper, ensuring that the value rendered
54
+ is always human readable. This addresses an issue where if the applied
55
+ filter value is that of a BSON ID, referencing a model somewhere, the
56
+ BSON ID was rendered in place of the model's name.
57
+
58
+ WORKAREA-122
59
+
60
+ Tom Scott
61
+
62
+ * Fix Promo Code Counts in Admin
63
+
64
+ Previously, promo codes could only be generated once through the admin,
65
+ so rendering the count of all promo codes as the count requested to be
66
+ generated was working out. However, as CSV imports and API updates became
67
+ more widespread, this began to break down as the `#count` field would
68
+ have to be updated each time a new set of promo codes were added.
69
+ Instead of reading from this pre-defined field on the code list, render
70
+ the actual count of promo codes from the database on the code list and
71
+ promo codes admin pages.
72
+
73
+ WORKAREA-199
74
+
75
+ Tom Scott
76
+
77
+
78
+
79
+ Workarea 3.4.34 (2020-06-11)
80
+ --------------------------------------------------------------------------------
81
+
82
+ * Bump Geocoder
83
+
84
+ 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.
85
+
86
+ Ben Crouse
87
+
88
+ * Add QueuePauser to pause sidekiq queues, pause for search reindexing
89
+
90
+ WORKAREA-236
91
+
92
+ Matt Duffy
93
+
94
+ * Handle error from attempting to fetch missing S3 CORS configuration
95
+
96
+ WORKAREA-234
97
+
98
+ Matt Duffy
99
+
100
+ * Don't assume promo codes for indexing discounts
101
+
102
+ A custom discount may be implemented that doesn't use promo codes.
103
+
104
+ Ben Crouse
105
+
106
+ * Bump rack-attack to latest version
107
+
108
+ This fixes rack-attack keys without TTLs set piling up in Redis. This has caused hosting problems.
109
+
110
+ Ben Crouse
111
+
112
+ * Bump Kaminari dependency to fix security alert
113
+
114
+
115
+ Ben Crouse
116
+
117
+ * Fix incorrect shipping options error flash message
118
+
119
+ A flash error incorrectly showed when the order doesn't require shipping,
120
+ and addresses are updated.
121
+
122
+ Ben Crouse
123
+
124
+
125
+
126
+ Workarea 3.4.33 (2020-05-26)
127
+ --------------------------------------------------------------------------------
128
+
129
+ * Fix incorrect import errors
130
+
131
+ When an import fails due to a missing `DataFile::Import` document, the
132
+ `ProcessImport` worker will raise a nil error due to the ensure. This
133
+ fixes by ensuring the `DocumentNotFound` error gets raised.
134
+
135
+ Ben Crouse
136
+
137
+ * Remove caching from direct upload CORS requests
138
+
139
+ The caching continues to give us problems, and this isn't a high-traffic
140
+ part of the system so there isn't a practical need for it.
141
+
142
+ Ben Crouse
143
+
144
+ * Correct/clarify Dragonfly configuration warning
145
+
146
+
147
+ Ben Crouse
148
+
149
+
150
+
151
+ Workarea 3.4.32 (2020-04-28)
152
+ --------------------------------------------------------------------------------
153
+
154
+ * Fix bugs with per_page used in page calculation for search queries
155
+
156
+ Even though this shouldn't come from the outside world, it's easy and
157
+ best to ensure per_page is always a valid number.
158
+
159
+ Ben Crouse
160
+
161
+ * Stub S3 CORS for all integration tests
162
+
163
+ It's annoying and unnecessary to have to stub this for every test that
164
+ uses an asset picker.
165
+
166
+ WORKAREA-209
167
+
168
+ Ben Crouse
169
+
170
+ * Skip localized activeness test when localized active fields are off
171
+
172
+ Fixes #421
173
+
174
+ Ben Crouse
175
+
176
+ * Fix accepting per_page param from outside world
177
+
178
+ Page size is the most important factor in performance for browse pages,
179
+ so we don't want these exposed to the outside world out-of-the-box.
180
+
181
+ Ben Crouse
182
+
183
+ * Update grammar for consistency
184
+
185
+
186
+ Ben Crouse
187
+
188
+ * Corrected no_available_shipping_options translation typo (#418)
189
+
190
+
191
+ JurgenHahn
192
+
193
+ * Fix fullfilment shipped mailer template
194
+
195
+ Fullfilment shipped mailer template is using cancellation header.
196
+
197
+ heyqule
198
+
199
+ * Improve visual design of most discounted products insight
200
+
201
+
202
+ Ben Crouse
203
+
204
+ * Change HashUpdate to use the setter instead of mutation
205
+
206
+ Simply mutating the value doesn't work when the field is localized.
207
+ Mongoid's localization behavior only kicks in when you use the setter.
208
+
209
+ Ben Crouse
210
+
211
+ * Allow setting locale fallbacks for a test
212
+
213
+ This is useful if you want to test fallback behavior. Tests in base
214
+ should be agnostic to whether fallbacks are available or not.
215
+
216
+ Ben Crouse
217
+
218
+ * Fix locale fallback getting unexpectedly autloaded
219
+
220
+ This can happen in the middle of a test suite, causing apparently random
221
+ test failure. This freedom patch prevents fallbacks from autoloading.
222
+ We want to let the implementation make that decision.
223
+
224
+ Ben Crouse
225
+
226
+
227
+
228
+ Workarea 3.4.31 (2020-04-15)
229
+ --------------------------------------------------------------------------------
230
+
231
+ * Fix harded JS path for admin jump to dropdown
232
+
233
+ This prevents locale from being included in the path to load results.
234
+ Ben Crouse
235
+
236
+ * Fix index serialization not happening per-locale
237
+
238
+ Previously, indexing was using the same document per-locale. This was
239
+ masked by Mongoid loading data from the cached document to look correct
240
+ in most browse scenarios. This fixes it to serialize per-locale so each
241
+ locale has a separate representation of the document.
242
+ Ben Crouse
243
+
244
+ * Fix Mongoid not returning defaults for localized fields
245
+
246
+ If a locale is missing from the translations hash, Mongoid returns nil
247
+ instead of the default specified on the field. That causes all kinds of
248
+ errors.
249
+ Ben Crouse
250
+
251
+ * Add missing append points to option-based product templates
252
+
253
+ This append point was only in the generic template, but is useful for
254
+ plugins.
255
+ Ben Crouse
256
+
257
+ * Fix dev env autoloading problem with Categorization
258
+
259
+ Ben Crouse
260
+
261
+ * Don't allow more than one valid password reset token per-user
262
+
263
+ Ben Crouse
264
+
265
+
266
+
1
267
  Workarea 3.4.30 (2020-03-31)
2
268
  --------------------------------------------------------------------------------
3
269
 
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.30
4
+ version: 3.4.35
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-03-31 00:00:00.000000000 Z
11
+ date: 2020-06-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.30
19
+ version: 3.4.35
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.30
26
+ version: 3.4.35
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.30
33
+ version: 3.4.35
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.30
40
+ version: 3.4.35
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.30
47
+ version: 3.4.35
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.30
54
+ version: 3.4.35
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.30
61
+ version: 3.4.35
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.30
68
+ version: 3.4.35
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com