workarea 3.4.32 → 3.4.37

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +223 -0
  3. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51eba346422f6eca518f517e6beac88a833a8157fd99c67892a415f3e1a9dacc
4
- data.tar.gz: 490d7f731ebf23442495afda5b0953bc860efc51e72ffbd4ea75ed268ae0c335
3
+ metadata.gz: d8e99dbd603c4bc0d0c6ed453ba5ad1f3c0c32030bc22b8e22b6865542765fcc
4
+ data.tar.gz: e4f0e045dc4b62693d0a1ead19598bf9065d3a71bbeee494f5b0c4371165ff7f
5
5
  SHA512:
6
- metadata.gz: a7cb96c24237329b3f93fe0dac024d441f9f9f0fdda8c6346be6697c36a1eda4a15560c5bd2d00ee43e8c9637436397287e7813c80b8a51fcb9ab2b1badbaca2
7
- data.tar.gz: 21d2b70c52b7eac7ccc7d4550ee7e4ec83bbd3ea36d711478f7ffef681a3fa92d8d3221f612aa7919a2a8c71b3fb1634efd86977dbe96ba11401fa93a5f4ea92
6
+ metadata.gz: dfd3c3392dc586ebd5081feb86a27e68d0f03ba0bd0b81143b8b42ea1ac943f39875032ffac2848c6ebc4f0d56a33ad32c20a22f823034b8476e52f69b7185fe
7
+ data.tar.gz: db61b7e15ee7924d44bef765ad1d926ebc0747b9ac8347314cfd1a83adf53474ee641c0fe4bf0b185320bc0109c57c3ad55acbbdfed939ff1837b8ff7df19813
@@ -1,3 +1,226 @@
1
+ Workarea 3.4.37 (2020-07-22)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Configure Sliced Credit Card Attributes
5
+
6
+ To prevent an unnecessary decoration of the `Workarea::Payment` class,
7
+ the attributes sliced out of the Hash given to `Workarea::Payment#set_credit_card`
8
+ is now configurable in initializers. This same set of attributes is also
9
+ used in the `Users::CreditCardsController`, so the configuration will be
10
+ reused when users are attempting to add a new credit card to their
11
+ account.
12
+
13
+ WORKAREA-257
14
+
15
+ Tom Scott
16
+
17
+ * Setup PlaceOrderIntegrationTest in a Method
18
+
19
+ Currently, decorating the PlaceOrderIntegrationTest to edit the way its
20
+ set up (such as when adding an additional step) is impossible, you have
21
+ to basically copy everything out of the `setup` block and duplicate it
22
+ in your tests. Setup blocks should be methods anyway, so convert this to
23
+ a method and allow it to be decorated in host apps.
24
+
25
+ Tom Scott
26
+
27
+ * Improve Content Area Select UX
28
+
29
+ Remove the current content name and replace it with a static label
30
+ indicating what the `<select>` menu to the right of it is selecting,
31
+ which is the current content area. This UI only displays when there are
32
+ multiple areas for a given `Content`.
33
+
34
+ WORKAREA-244
35
+
36
+ Tom Scott
37
+
38
+
39
+
40
+ Workarea 3.4.36 (2020-07-07)
41
+ --------------------------------------------------------------------------------
42
+
43
+ * Patch Jbuilder to Support Varying Cache
44
+
45
+ Previously, admins were not able to see up-to-date data in API requests
46
+ due to the `#cache!` method in Jbuilder not being patched to skip
47
+ caching when an admin is logged in. To resolve this, Workarea now
48
+ applies the same patch to Jbuilder as it does to ActionView. Reading
49
+ from the cache is now skipped if you're logged in as an admin, and cache
50
+ keys are appended with the configured `Cache::Varies` just the same as
51
+ in regular Haml views.
52
+
53
+ WORKAREA-243
54
+
55
+ Tom Scott
56
+
57
+ * Bump rack version
58
+
59
+ Fixes CVE-2020-8184
60
+
61
+ Ben Crouse
62
+
63
+ * Add Permissions Append Point to User Workflow
64
+
65
+ This allows a plugin (such as API) to specify permissions categories when
66
+ admins are either editing or creating a user.
67
+
68
+ WORKAREA-240
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.35 (2020-06-25)
114
+ --------------------------------------------------------------------------------
115
+
116
+ * Reset Geocoder between tests
117
+
118
+ This ensures individual tests monkeying around with Geocoder config will
119
+ get restored before the next test runs.
120
+
121
+ Ben Crouse
122
+
123
+ * Use Display Name For Applied Facet Values
124
+
125
+ When rendering the applied filters, wrap the given facet value in
126
+ the `facet_value_display_name` helper, ensuring that the value rendered
127
+ is always human readable. This addresses an issue where if the applied
128
+ filter value is that of a BSON ID, referencing a model somewhere, the
129
+ BSON ID was rendered in place of the model's name.
130
+
131
+ WORKAREA-122
132
+
133
+ Tom Scott
134
+
135
+ * Fix Promo Code Counts in Admin
136
+
137
+ Previously, promo codes could only be generated once through the admin,
138
+ so rendering the count of all promo codes as the count requested to be
139
+ generated was working out. However, as CSV imports and API updates became
140
+ more widespread, this began to break down as the `#count` field would
141
+ have to be updated each time a new set of promo codes were added.
142
+ Instead of reading from this pre-defined field on the code list, render
143
+ the actual count of promo codes from the database on the code list and
144
+ promo codes admin pages.
145
+
146
+ WORKAREA-199
147
+
148
+ Tom Scott
149
+
150
+
151
+
152
+ Workarea 3.4.34 (2020-06-11)
153
+ --------------------------------------------------------------------------------
154
+
155
+ * Bump Geocoder
156
+
157
+ 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.
158
+
159
+ Ben Crouse
160
+
161
+ * Add QueuePauser to pause sidekiq queues, pause for search reindexing
162
+
163
+ WORKAREA-236
164
+
165
+ Matt Duffy
166
+
167
+ * Handle error from attempting to fetch missing S3 CORS configuration
168
+
169
+ WORKAREA-234
170
+
171
+ Matt Duffy
172
+
173
+ * Don't assume promo codes for indexing discounts
174
+
175
+ A custom discount may be implemented that doesn't use promo codes.
176
+
177
+ Ben Crouse
178
+
179
+ * Bump rack-attack to latest version
180
+
181
+ This fixes rack-attack keys without TTLs set piling up in Redis. This has caused hosting problems.
182
+
183
+ Ben Crouse
184
+
185
+ * Bump Kaminari dependency to fix security alert
186
+
187
+
188
+ Ben Crouse
189
+
190
+ * Fix incorrect shipping options error flash message
191
+
192
+ A flash error incorrectly showed when the order doesn't require shipping,
193
+ and addresses are updated.
194
+
195
+ Ben Crouse
196
+
197
+
198
+
199
+ Workarea 3.4.33 (2020-05-26)
200
+ --------------------------------------------------------------------------------
201
+
202
+ * Fix incorrect import errors
203
+
204
+ When an import fails due to a missing `DataFile::Import` document, the
205
+ `ProcessImport` worker will raise a nil error due to the ensure. This
206
+ fixes by ensuring the `DocumentNotFound` error gets raised.
207
+
208
+ Ben Crouse
209
+
210
+ * Remove caching from direct upload CORS requests
211
+
212
+ The caching continues to give us problems, and this isn't a high-traffic
213
+ part of the system so there isn't a practical need for it.
214
+
215
+ Ben Crouse
216
+
217
+ * Correct/clarify Dragonfly configuration warning
218
+
219
+
220
+ Ben Crouse
221
+
222
+
223
+
1
224
  Workarea 3.4.32 (2020-04-28)
2
225
  --------------------------------------------------------------------------------
3
226
 
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.32
4
+ version: 3.4.37
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-28 00:00:00.000000000 Z
11
+ date: 2020-07-22 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.32
19
+ version: 3.4.37
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.32
26
+ version: 3.4.37
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.32
33
+ version: 3.4.37
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.32
40
+ version: 3.4.37
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.32
47
+ version: 3.4.37
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.32
54
+ version: 3.4.37
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.32
61
+ version: 3.4.37
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.32
68
+ version: 3.4.37
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com