workarea 3.4.29 → 3.4.34
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.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +221 -0
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9dd665448005fc987e300f597fc7c3ce3dbb51cc452a43b093fd4eb0f4abdf7
|
4
|
+
data.tar.gz: 33985ea549e8d982250f2671157a5910f43f7669afa9fa24c9c62e594c5740e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b463245e3bf858d3096cadad4cb6e6876429644c4b32883e23238c8e2dea19e91cf3f1246b77c6df3b580fd78ddfe28c5d2a3b5b5a44e8225a4c8e35c38532f3
|
7
|
+
data.tar.gz: e9b5d8b5c39c604662745f200bb993708df5d88d43b56e409cb56730f151aecc2faddeefdca29ad16b00cac6eb39d04008d53ae241ae8d415004d655d967ad68
|
data/.rubocop.yml
CHANGED
@@ -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/
|
201
|
+
Layout/IndentationStyle:
|
202
202
|
Enabled: true
|
203
203
|
Exclude:
|
204
204
|
- 'core/vendor/active_shipping/lib/active_shipping/carriers/canada_post.rb'
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,224 @@
|
|
1
|
+
Workarea 3.4.34 (2020-06-11)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Bump Geocoder
|
5
|
+
|
6
|
+
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.
|
7
|
+
|
8
|
+
Ben Crouse
|
9
|
+
|
10
|
+
* Add QueuePauser to pause sidekiq queues, pause for search reindexing
|
11
|
+
|
12
|
+
WORKAREA-236
|
13
|
+
|
14
|
+
Matt Duffy
|
15
|
+
|
16
|
+
* Handle error from attempting to fetch missing S3 CORS configuration
|
17
|
+
|
18
|
+
WORKAREA-234
|
19
|
+
|
20
|
+
Matt Duffy
|
21
|
+
|
22
|
+
* Don't assume promo codes for indexing discounts
|
23
|
+
|
24
|
+
A custom discount may be implemented that doesn't use promo codes.
|
25
|
+
|
26
|
+
Ben Crouse
|
27
|
+
|
28
|
+
* Bump rack-attack to latest version
|
29
|
+
|
30
|
+
This fixes rack-attack keys without TTLs set piling up in Redis. This has caused hosting problems.
|
31
|
+
|
32
|
+
Ben Crouse
|
33
|
+
|
34
|
+
* Bump Kaminari dependency to fix security alert
|
35
|
+
|
36
|
+
|
37
|
+
Ben Crouse
|
38
|
+
|
39
|
+
* Fix incorrect shipping options error flash message
|
40
|
+
|
41
|
+
A flash error incorrectly showed when the order doesn't require shipping,
|
42
|
+
and addresses are updated.
|
43
|
+
|
44
|
+
Ben Crouse
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
Workarea 3.4.33 (2020-05-26)
|
49
|
+
--------------------------------------------------------------------------------
|
50
|
+
|
51
|
+
* Fix incorrect import errors
|
52
|
+
|
53
|
+
When an import fails due to a missing `DataFile::Import` document, the
|
54
|
+
`ProcessImport` worker will raise a nil error due to the ensure. This
|
55
|
+
fixes by ensuring the `DocumentNotFound` error gets raised.
|
56
|
+
|
57
|
+
Ben Crouse
|
58
|
+
|
59
|
+
* Remove caching from direct upload CORS requests
|
60
|
+
|
61
|
+
The caching continues to give us problems, and this isn't a high-traffic
|
62
|
+
part of the system so there isn't a practical need for it.
|
63
|
+
|
64
|
+
Ben Crouse
|
65
|
+
|
66
|
+
* Correct/clarify Dragonfly configuration warning
|
67
|
+
|
68
|
+
|
69
|
+
Ben Crouse
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
Workarea 3.4.32 (2020-04-28)
|
74
|
+
--------------------------------------------------------------------------------
|
75
|
+
|
76
|
+
* Fix bugs with per_page used in page calculation for search queries
|
77
|
+
|
78
|
+
Even though this shouldn't come from the outside world, it's easy and
|
79
|
+
best to ensure per_page is always a valid number.
|
80
|
+
|
81
|
+
Ben Crouse
|
82
|
+
|
83
|
+
* Stub S3 CORS for all integration tests
|
84
|
+
|
85
|
+
It's annoying and unnecessary to have to stub this for every test that
|
86
|
+
uses an asset picker.
|
87
|
+
|
88
|
+
WORKAREA-209
|
89
|
+
|
90
|
+
Ben Crouse
|
91
|
+
|
92
|
+
* Skip localized activeness test when localized active fields are off
|
93
|
+
|
94
|
+
Fixes #421
|
95
|
+
|
96
|
+
Ben Crouse
|
97
|
+
|
98
|
+
* Fix accepting per_page param from outside world
|
99
|
+
|
100
|
+
Page size is the most important factor in performance for browse pages,
|
101
|
+
so we don't want these exposed to the outside world out-of-the-box.
|
102
|
+
|
103
|
+
Ben Crouse
|
104
|
+
|
105
|
+
* Update grammar for consistency
|
106
|
+
|
107
|
+
|
108
|
+
Ben Crouse
|
109
|
+
|
110
|
+
* Corrected no_available_shipping_options translation typo (#418)
|
111
|
+
|
112
|
+
|
113
|
+
JurgenHahn
|
114
|
+
|
115
|
+
* Fix fullfilment shipped mailer template
|
116
|
+
|
117
|
+
Fullfilment shipped mailer template is using cancellation header.
|
118
|
+
|
119
|
+
heyqule
|
120
|
+
|
121
|
+
* Improve visual design of most discounted products insight
|
122
|
+
|
123
|
+
|
124
|
+
Ben Crouse
|
125
|
+
|
126
|
+
* Change HashUpdate to use the setter instead of mutation
|
127
|
+
|
128
|
+
Simply mutating the value doesn't work when the field is localized.
|
129
|
+
Mongoid's localization behavior only kicks in when you use the setter.
|
130
|
+
|
131
|
+
Ben Crouse
|
132
|
+
|
133
|
+
* Allow setting locale fallbacks for a test
|
134
|
+
|
135
|
+
This is useful if you want to test fallback behavior. Tests in base
|
136
|
+
should be agnostic to whether fallbacks are available or not.
|
137
|
+
|
138
|
+
Ben Crouse
|
139
|
+
|
140
|
+
* Fix locale fallback getting unexpectedly autloaded
|
141
|
+
|
142
|
+
This can happen in the middle of a test suite, causing apparently random
|
143
|
+
test failure. This freedom patch prevents fallbacks from autoloading.
|
144
|
+
We want to let the implementation make that decision.
|
145
|
+
|
146
|
+
Ben Crouse
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
Workarea 3.4.31 (2020-04-15)
|
151
|
+
--------------------------------------------------------------------------------
|
152
|
+
|
153
|
+
* Fix harded JS path for admin jump to dropdown
|
154
|
+
|
155
|
+
This prevents locale from being included in the path to load results.
|
156
|
+
Ben Crouse
|
157
|
+
|
158
|
+
* Fix index serialization not happening per-locale
|
159
|
+
|
160
|
+
Previously, indexing was using the same document per-locale. This was
|
161
|
+
masked by Mongoid loading data from the cached document to look correct
|
162
|
+
in most browse scenarios. This fixes it to serialize per-locale so each
|
163
|
+
locale has a separate representation of the document.
|
164
|
+
Ben Crouse
|
165
|
+
|
166
|
+
* Fix Mongoid not returning defaults for localized fields
|
167
|
+
|
168
|
+
If a locale is missing from the translations hash, Mongoid returns nil
|
169
|
+
instead of the default specified on the field. That causes all kinds of
|
170
|
+
errors.
|
171
|
+
Ben Crouse
|
172
|
+
|
173
|
+
* Add missing append points to option-based product templates
|
174
|
+
|
175
|
+
This append point was only in the generic template, but is useful for
|
176
|
+
plugins.
|
177
|
+
Ben Crouse
|
178
|
+
|
179
|
+
* Fix dev env autoloading problem with Categorization
|
180
|
+
|
181
|
+
Ben Crouse
|
182
|
+
|
183
|
+
* Don't allow more than one valid password reset token per-user
|
184
|
+
|
185
|
+
Ben Crouse
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
Workarea 3.4.30 (2020-03-31)
|
190
|
+
--------------------------------------------------------------------------------
|
191
|
+
|
192
|
+
* Fix incorrect placeholder text
|
193
|
+
|
194
|
+
Ben Crouse
|
195
|
+
|
196
|
+
* Remove unneeded grid modifier
|
197
|
+
|
198
|
+
Causes misalignment of the users index aux navigation append point.
|
199
|
+
Ben Crouse
|
200
|
+
|
201
|
+
* Update critical easymon checks
|
202
|
+
|
203
|
+
Only elasticsearch, mongodb and redis are critical services for running
|
204
|
+
the application.
|
205
|
+
Eric Pigeon
|
206
|
+
|
207
|
+
* Sort jump to results by last updated_at (within each type)
|
208
|
+
|
209
|
+
This adds updated_at as a sort in jump to so most recent results show at
|
210
|
+
the top within their type. The types are still sorted the same.
|
211
|
+
Ben Crouse
|
212
|
+
|
213
|
+
* Handle missing price in sell_price method itself
|
214
|
+
|
215
|
+
Fixes QA issue.
|
216
|
+
|
217
|
+
WORKAREA-220
|
218
|
+
Tom Scott
|
219
|
+
|
220
|
+
|
221
|
+
|
1
222
|
Workarea 3.4.29 (2020-03-17)
|
2
223
|
--------------------------------------------------------------------------------
|
3
224
|
|
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.
|
4
|
+
version: 3.4.34
|
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
|
+
date: 2020-06-11 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.
|
19
|
+
version: 3.4.34
|
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.
|
26
|
+
version: 3.4.34
|
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.
|
33
|
+
version: 3.4.34
|
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.
|
40
|
+
version: 3.4.34
|
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.
|
47
|
+
version: 3.4.34
|
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.
|
54
|
+
version: 3.4.34
|
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.
|
61
|
+
version: 3.4.34
|
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.
|
68
|
+
version: 3.4.34
|
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.
|
100
|
+
rubygems_version: 3.0.3
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: The Workarea Commerce Platform
|