workarea 3.4.38 → 3.4.43

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 +214 -0
  3. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 748aea3eb8c4e0ebbc85d1e67a74c7077a617b404f4d37819cebc73a4706e50a
4
- data.tar.gz: 0136a3fabc6a31b949920bb5138569fd4b01ec73a3a4aa0454612295e63b3d3f
3
+ metadata.gz: 92003ba59c2d81aaf711d73400f8bcf06f850a905131a8713eb305f3cec9ed7c
4
+ data.tar.gz: aec49677476497147a62a9e997b923185e285e09dc453b1a8c95b77b6c56b15d
5
5
  SHA512:
6
- metadata.gz: 969aba207ff2e74116b3def42f03cabfe386704f782957d339e71959754f7679564412b6665b5db4170e89d6bea0dda73a0d78aa7e998fd09550d8f44a01bdfc
7
- data.tar.gz: 3d1782aa0992fb37b68a3e6e08450ac4afa7fa351dbc0fde07eeea80740850a7efb52761cfb608b3df5492af95da878abe7321c066bf75495cef5a43f2e4fd61
6
+ metadata.gz: 0e984ba960a49e954160460e23e7b4b339b705ac9102786a3b39b71b39020300b49969d6cc8b8f2436e5797449b9ffcf565f6561329b8693784af90358a4d380
7
+ data.tar.gz: bf5452903ac1a7706957bb3cbb87ecb588f092319da27f1a966a9336830371aba77bf4be1afe121f6911ca96aa1a5b337570ad6507939756f320c188d7ba9946
@@ -1,3 +1,217 @@
1
+ Workarea 3.4.43 (2020-11-03)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Delete old user metrics after merging
5
+
6
+ This will ensure the consistency of user-based reports.
7
+
8
+ Ben Crouse
9
+
10
+ * Be more specific when matching reverts in changelogs
11
+
12
+ This change will allow starting commit messages with the word Revert
13
+ without the changelog task ignoring the commit.
14
+
15
+ Ben Crouse
16
+
17
+ * Add metrics explanation for users
18
+
19
+ This additional explanation is meant to communicate why customer
20
+ insights may occasionally mismatch with the orders card.
21
+
22
+ Ben Crouse
23
+
24
+ * Include Guest Orders In Admin For Users
25
+
26
+ When looking up recent orders for a user in the admin, also include any
27
+ guest orders placed with the same email address. This fixes a
28
+ discrepancy between the amount of orders seen in admin for a given user,
29
+ and the amount of orders attributed to a user within insights, as
30
+ insights treat all orders with the same email address as coming from the
31
+ same user.
32
+
33
+ WORKAREA-283
34
+
35
+ Tom Scott
36
+
37
+ * Add Note To Category Default Sort Edit
38
+
39
+ The selected `default_sort` of a category will be always used in the
40
+ storefront. If the category contains featured products, this sort will
41
+ be labelled "Featured", and this might prove confusing to some admins.
42
+ To resolve this, add a note just below the dropdown indicating what will
43
+ occur when products are featured in the category.
44
+
45
+ WORKAREA-289
46
+
47
+ Tom Scott
48
+
49
+ * Include referrer in ending impersonation redirect fallbacks
50
+
51
+ When ending an impersonation, this changes to allow redirecting to the referrer
52
+ if the return_to parameter isn't present. Better UX for ending
53
+ impersonations while working in the admin.
54
+
55
+ WORKAREA-293
56
+
57
+ Ben Crouse
58
+
59
+ * Merge metrics when a user's email is updated
60
+
61
+ This ensures the old metrics info stays around after the email change.
62
+
63
+ WORKAREA-294
64
+
65
+ Ben Crouse
66
+
67
+
68
+
69
+ Workarea 3.4.42 (2020-10-14)
70
+ --------------------------------------------------------------------------------
71
+
72
+ * Prevent Clearing Out Navigable When Saving Taxons
73
+
74
+ The `WORKAREA.newNavigationTaxons` module was looking in the wrong place
75
+ for the selected navigable item, therefore the `selected` var would
76
+ always return `undefined`, causing the `navigable_id` param to be
77
+ blank every time. Fix this by querying for the correct DOM node (the
78
+ `[data-new-navigation-taxon]` element) and pulling the selected ID from
79
+ its data.
80
+
81
+ WORKAREA-297
82
+ Fixes #534
83
+
84
+ Tom Scott
85
+
86
+ * Patch RefererParser for Android URLs
87
+
88
+ Android App URLs have a special `android-app://` scheme that is rejected
89
+ by the currently released version of the `referer-parser` gem. The code
90
+ in this patch already exists in the master branch of the gem, but this
91
+ has not yet been released, and if Android users browse the storefront it
92
+ can generate an error when collecting referer information. In case a
93
+ referer cannot be parsed, Workarea also rescues the error so that
94
+ checkout requests are not blocked.
95
+
96
+ WORKAREA-295
97
+ Fixes #531
98
+
99
+ Tom Scott
100
+
101
+ * Try to clarify how to use search synonyms
102
+
103
+ There has been repeated confusion around why/how to use synonyms, so this is an attempt to clarify.
104
+
105
+ Ben Crouse
106
+
107
+
108
+
109
+ Workarea 3.4.41 (2020-09-30)
110
+ --------------------------------------------------------------------------------
111
+
112
+ * Rename Admin::ProductViewModel#options to avoid conflict with normal options method
113
+
114
+
115
+ Matt Duffy
116
+
117
+ * Improve clarity of discount verbiage
118
+
119
+ This hopes to address some recent confusion around how the discount
120
+ works.
121
+
122
+ Ben Crouse
123
+
124
+ * Fix safe navigation method calls
125
+
126
+ This will raise if the menu content is nil.
127
+
128
+ Ben Crouse
129
+
130
+ * Redirect back to the previous page after stopping impersonation
131
+
132
+ Currently we redirect to the user's show page, which can be pretty
133
+ disorienting.
134
+
135
+ Ben Crouse
136
+
137
+
138
+
139
+ Workarea 3.4.40 (2020-09-16)
140
+ --------------------------------------------------------------------------------
141
+
142
+ * Fix Editing Product Images in Admin
143
+
144
+ When an image does not include an option, the edit page errors because
145
+ `#parameterize` cannot be called on `@image.option` since that is
146
+ returning `nil`. Additionally, the line of code in which this is called
147
+ is meant to set an ID attribute on the element for which an image is
148
+ rendered. There doesn't seem to be anything in our codebase that uses
149
+ this, and furthermore since there's no validation for unique options per
150
+ set of product images, this could cause a duplicate ID error in certain
151
+ scenarios. To resolve this, the ID attribute has been removed from this
152
+ `<img>` tag.
153
+
154
+ WORKAREA-254
155
+
156
+ Tom Scott
157
+
158
+ * Improve display of disabled toggles
159
+
160
+ When a toggle button is disabled, it should reflect that visually
161
+ instead of just looking like it should be functional.
162
+
163
+ Ben Crouse
164
+
165
+ * Remove CSV Messaging For Options Fields
166
+
167
+ This removes the "Comma separated: just, like, this" messaging and
168
+ tooltip that explains more about comma-separated fields for filters and
169
+ details. Options do not have these same constraints, and this help
170
+ bubble just serves as a point of confusion for admins.
171
+
172
+ WORKAREA-266
173
+
174
+ Tom Scott
175
+
176
+
177
+
178
+ Workarea 3.4.39 (2020-09-01)
179
+ --------------------------------------------------------------------------------
180
+
181
+ * Set Default Inventory Policy to "Standard" in Create Product Workflow
182
+
183
+ When creating a new product through the workflow, setting the
184
+ "Inventory" on a particular SKU would still cause the `Inventory::Sku`
185
+ to be created with the "Ignore" policy rather than "Standard". Setting
186
+ inventory on a SKU now automatically causes the `Inventory::Sku` record
187
+ to be created with a policy of "Standard" so as to deduct the given
188
+ inventory to the varaint. When no inventory is given, Workarea will fall
189
+ back to the default of "Ignore".
190
+
191
+ WORKAREA-265
192
+
193
+ Tom Scott
194
+
195
+ * Handle missing or invalid current impersonation
196
+
197
+ This surfaced as a random failing test, this should make the feature more robust.
198
+
199
+ Ben Crouse
200
+
201
+ * Fix wrong sorting on default admin index pages
202
+
203
+ The query for an admin index page can end up inadvertantly introduce a
204
+ scoring variation, which can cause results to not match the `updated_at`
205
+ default sort.
206
+
207
+ This makes `updated_at` the true default sort, and allows the general
208
+ admin search to override, where `_score` is still the desired default
209
+ sort.
210
+
211
+ Ben Crouse
212
+
213
+
214
+
1
215
  Workarea 3.4.38 (2020-08-19)
2
216
  --------------------------------------------------------------------------------
3
217
 
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.38
4
+ version: 3.4.43
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-08-19 00:00:00.000000000 Z
11
+ date: 2020-11-03 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.38
19
+ version: 3.4.43
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.38
26
+ version: 3.4.43
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.38
33
+ version: 3.4.43
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.38
40
+ version: 3.4.43
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.38
47
+ version: 3.4.43
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.38
54
+ version: 3.4.43
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.38
61
+ version: 3.4.43
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.38
68
+ version: 3.4.43
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com