workarea 3.4.34 → 3.4.39
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/CHANGELOG.md +226 -0
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9087f292e085e07a8cd5f7c1f816f4ed9c37aad5ee2f0959fff72d2d3985bdee
|
4
|
+
data.tar.gz: af79a31abe8fe4703ed4d66128b9c13a4a18336d934efd9d8374682608c45940
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f37876495e9beb7382cf2a5a02207baaf26ee5a331bf85e1e8fbb1c9065015ad9ece7bad929d5674b6766b56a4dbe20c178bf29a81729218da1164e997914829
|
7
|
+
data.tar.gz: 9c7a5fa6329fd15aeb0c4f6282d3dd50f7582d3499f3e60a9ac646f324fe19e2d63d4a9581972ae063ae9841ac20f0404d503911724f7b6aadf085fc2da0fcae
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,229 @@
|
|
1
|
+
Workarea 3.4.39 (2020-09-01)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Set Default Inventory Policy to "Standard" in Create Product Workflow
|
5
|
+
|
6
|
+
When creating a new product through the workflow, setting the
|
7
|
+
"Inventory" on a particular SKU would still cause the `Inventory::Sku`
|
8
|
+
to be created with the "Ignore" policy rather than "Standard". Setting
|
9
|
+
inventory on a SKU now automatically causes the `Inventory::Sku` record
|
10
|
+
to be created with a policy of "Standard" so as to deduct the given
|
11
|
+
inventory to the varaint. When no inventory is given, Workarea will fall
|
12
|
+
back to the default of "Ignore".
|
13
|
+
|
14
|
+
WORKAREA-265
|
15
|
+
|
16
|
+
Tom Scott
|
17
|
+
|
18
|
+
* Handle missing or invalid current impersonation
|
19
|
+
|
20
|
+
This surfaced as a random failing test, this should make the feature more robust.
|
21
|
+
|
22
|
+
Ben Crouse
|
23
|
+
|
24
|
+
* Fix wrong sorting on default admin index pages
|
25
|
+
|
26
|
+
The query for an admin index page can end up inadvertantly introduce a
|
27
|
+
scoring variation, which can cause results to not match the `updated_at`
|
28
|
+
default sort.
|
29
|
+
|
30
|
+
This makes `updated_at` the true default sort, and allows the general
|
31
|
+
admin search to override, where `_score` is still the desired default
|
32
|
+
sort.
|
33
|
+
|
34
|
+
Ben Crouse
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
Workarea 3.4.38 (2020-08-19)
|
39
|
+
--------------------------------------------------------------------------------
|
40
|
+
|
41
|
+
* Return Status of `Checkout#update`
|
42
|
+
|
43
|
+
For APIs and other consumers of the Checkout model, return a boolean
|
44
|
+
response from the `#update` method to signify whether the operation
|
45
|
+
succeeded or failed. This response is used directly in the API to return
|
46
|
+
an `:unprocessable_entity` response code when an update operation fails.
|
47
|
+
|
48
|
+
WORKAREA-253
|
49
|
+
|
50
|
+
Tom Scott
|
51
|
+
|
52
|
+
* Remove port from host configuration in installer
|
53
|
+
|
54
|
+
Ports aren't part of hosts, this causes problems when the value is used
|
55
|
+
like a true host.
|
56
|
+
|
57
|
+
This PR also fixes mailer links with missing ports as a result of this
|
58
|
+
change.
|
59
|
+
|
60
|
+
Ben Crouse
|
61
|
+
|
62
|
+
* Bump Chartkick to fix bundler audit warning
|
63
|
+
|
64
|
+
The vulnerability won't affect Workarea in use, but it'll be easier to fix builds doing this.
|
65
|
+
|
66
|
+
Ben Crouse
|
67
|
+
|
68
|
+
* Allow inquiry subjects to be localized
|
69
|
+
|
70
|
+
WORKAREA-238
|
71
|
+
|
72
|
+
Matt Duffy
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
Workarea 3.4.37 (2020-07-22)
|
77
|
+
--------------------------------------------------------------------------------
|
78
|
+
|
79
|
+
* Configure Sliced Credit Card Attributes
|
80
|
+
|
81
|
+
To prevent an unnecessary decoration of the `Workarea::Payment` class,
|
82
|
+
the attributes sliced out of the Hash given to `Workarea::Payment#set_credit_card`
|
83
|
+
is now configurable in initializers. This same set of attributes is also
|
84
|
+
used in the `Users::CreditCardsController`, so the configuration will be
|
85
|
+
reused when users are attempting to add a new credit card to their
|
86
|
+
account.
|
87
|
+
|
88
|
+
WORKAREA-257
|
89
|
+
|
90
|
+
Tom Scott
|
91
|
+
|
92
|
+
* Setup PlaceOrderIntegrationTest in a Method
|
93
|
+
|
94
|
+
Currently, decorating the PlaceOrderIntegrationTest to edit the way its
|
95
|
+
set up (such as when adding an additional step) is impossible, you have
|
96
|
+
to basically copy everything out of the `setup` block and duplicate it
|
97
|
+
in your tests. Setup blocks should be methods anyway, so convert this to
|
98
|
+
a method and allow it to be decorated in host apps.
|
99
|
+
|
100
|
+
Tom Scott
|
101
|
+
|
102
|
+
* Improve Content Area Select UX
|
103
|
+
|
104
|
+
Remove the current content name and replace it with a static label
|
105
|
+
indicating what the `<select>` menu to the right of it is selecting,
|
106
|
+
which is the current content area. This UI only displays when there are
|
107
|
+
multiple areas for a given `Content`.
|
108
|
+
|
109
|
+
WORKAREA-244
|
110
|
+
|
111
|
+
Tom Scott
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
Workarea 3.4.36 (2020-07-07)
|
116
|
+
--------------------------------------------------------------------------------
|
117
|
+
|
118
|
+
* Patch Jbuilder to Support Varying Cache
|
119
|
+
|
120
|
+
Previously, admins were not able to see up-to-date data in API requests
|
121
|
+
due to the `#cache!` method in Jbuilder not being patched to skip
|
122
|
+
caching when an admin is logged in. To resolve this, Workarea now
|
123
|
+
applies the same patch to Jbuilder as it does to ActionView. Reading
|
124
|
+
from the cache is now skipped if you're logged in as an admin, and cache
|
125
|
+
keys are appended with the configured `Cache::Varies` just the same as
|
126
|
+
in regular Haml views.
|
127
|
+
|
128
|
+
WORKAREA-243
|
129
|
+
|
130
|
+
Tom Scott
|
131
|
+
|
132
|
+
* Bump rack version
|
133
|
+
|
134
|
+
Fixes CVE-2020-8184
|
135
|
+
|
136
|
+
Ben Crouse
|
137
|
+
|
138
|
+
* Add Permissions Append Point to User Workflow
|
139
|
+
|
140
|
+
This allows a plugin (such as API) to specify permissions categories when
|
141
|
+
admins are either editing or creating a user.
|
142
|
+
|
143
|
+
WORKAREA-240
|
144
|
+
|
145
|
+
Tom Scott
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
Workarea 3.4.35 (2020-06-25)
|
150
|
+
--------------------------------------------------------------------------------
|
151
|
+
|
152
|
+
* Reset Geocoder between tests
|
153
|
+
|
154
|
+
This ensures individual tests monkeying around with Geocoder config will
|
155
|
+
get restored before the next test runs.
|
156
|
+
|
157
|
+
Ben Crouse
|
158
|
+
|
159
|
+
* Use Display Name For Applied Facet Values
|
160
|
+
|
161
|
+
When rendering the applied filters, wrap the given facet value in
|
162
|
+
the `facet_value_display_name` helper, ensuring that the value rendered
|
163
|
+
is always human readable. This addresses an issue where if the applied
|
164
|
+
filter value is that of a BSON ID, referencing a model somewhere, the
|
165
|
+
BSON ID was rendered in place of the model's name.
|
166
|
+
|
167
|
+
WORKAREA-122
|
168
|
+
|
169
|
+
Tom Scott
|
170
|
+
|
171
|
+
* Fix Promo Code Counts in Admin
|
172
|
+
|
173
|
+
Previously, promo codes could only be generated once through the admin,
|
174
|
+
so rendering the count of all promo codes as the count requested to be
|
175
|
+
generated was working out. However, as CSV imports and API updates became
|
176
|
+
more widespread, this began to break down as the `#count` field would
|
177
|
+
have to be updated each time a new set of promo codes were added.
|
178
|
+
Instead of reading from this pre-defined field on the code list, render
|
179
|
+
the actual count of promo codes from the database on the code list and
|
180
|
+
promo codes admin pages.
|
181
|
+
|
182
|
+
WORKAREA-199
|
183
|
+
|
184
|
+
Tom Scott
|
185
|
+
|
186
|
+
|
187
|
+
|
188
|
+
Workarea 3.4.35 (2020-06-25)
|
189
|
+
--------------------------------------------------------------------------------
|
190
|
+
|
191
|
+
* Reset Geocoder between tests
|
192
|
+
|
193
|
+
This ensures individual tests monkeying around with Geocoder config will
|
194
|
+
get restored before the next test runs.
|
195
|
+
|
196
|
+
Ben Crouse
|
197
|
+
|
198
|
+
* Use Display Name For Applied Facet Values
|
199
|
+
|
200
|
+
When rendering the applied filters, wrap the given facet value in
|
201
|
+
the `facet_value_display_name` helper, ensuring that the value rendered
|
202
|
+
is always human readable. This addresses an issue where if the applied
|
203
|
+
filter value is that of a BSON ID, referencing a model somewhere, the
|
204
|
+
BSON ID was rendered in place of the model's name.
|
205
|
+
|
206
|
+
WORKAREA-122
|
207
|
+
|
208
|
+
Tom Scott
|
209
|
+
|
210
|
+
* Fix Promo Code Counts in Admin
|
211
|
+
|
212
|
+
Previously, promo codes could only be generated once through the admin,
|
213
|
+
so rendering the count of all promo codes as the count requested to be
|
214
|
+
generated was working out. However, as CSV imports and API updates became
|
215
|
+
more widespread, this began to break down as the `#count` field would
|
216
|
+
have to be updated each time a new set of promo codes were added.
|
217
|
+
Instead of reading from this pre-defined field on the code list, render
|
218
|
+
the actual count of promo codes from the database on the code list and
|
219
|
+
promo codes admin pages.
|
220
|
+
|
221
|
+
WORKAREA-199
|
222
|
+
|
223
|
+
Tom Scott
|
224
|
+
|
225
|
+
|
226
|
+
|
1
227
|
Workarea 3.4.34 (2020-06-11)
|
2
228
|
--------------------------------------------------------------------------------
|
3
229
|
|
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.39
|
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-09-01 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.39
|
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.39
|
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.39
|
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.39
|
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.39
|
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.39
|
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.39
|
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.39
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|