workarea 3.4.37 → 3.4.42

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 +184 -0
  3. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8e99dbd603c4bc0d0c6ed453ba5ad1f3c0c32030bc22b8e22b6865542765fcc
4
- data.tar.gz: e4f0e045dc4b62693d0a1ead19598bf9065d3a71bbeee494f5b0c4371165ff7f
3
+ metadata.gz: 3dc480733f733d3fb42f1fc369525e63763142ee62714388fb638fe3159c8200
4
+ data.tar.gz: 77f4bb9edd00389d0aaad494cd50cfb203e97206f59ee44bd067a0aed80f0206
5
5
  SHA512:
6
- metadata.gz: dfd3c3392dc586ebd5081feb86a27e68d0f03ba0bd0b81143b8b42ea1ac943f39875032ffac2848c6ebc4f0d56a33ad32c20a22f823034b8476e52f69b7185fe
7
- data.tar.gz: db61b7e15ee7924d44bef765ad1d926ebc0747b9ac8347314cfd1a83adf53474ee641c0fe4bf0b185320bc0109c57c3ad55acbbdfed939ff1837b8ff7df19813
6
+ metadata.gz: 0f99b397e4b401ec283fb02ef3db54d5908fa7a886a6706953024fe3b3b6a8d8d60228a5c7a753423aecb679b7b6721af0c391ed519e3f222c0c4f67c3706766
7
+ data.tar.gz: 26d9c72ca4df9ef70b024c9d15036a6eb8b10f6e51bd335cf9a92eff703a6471f156114073efd11502de212fb2067a06c9487c9d996521c9d6dc30aa99708906
@@ -1,3 +1,187 @@
1
+ Workarea 3.4.42 (2020-10-14)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Prevent Clearing Out Navigable When Saving Taxons
5
+
6
+ The `WORKAREA.newNavigationTaxons` module was looking in the wrong place
7
+ for the selected navigable item, therefore the `selected` var would
8
+ always return `undefined`, causing the `navigable_id` param to be
9
+ blank every time. Fix this by querying for the correct DOM node (the
10
+ `[data-new-navigation-taxon]` element) and pulling the selected ID from
11
+ its data.
12
+
13
+ WORKAREA-297
14
+ Fixes #534
15
+
16
+ Tom Scott
17
+
18
+ * Patch RefererParser for Android URLs
19
+
20
+ Android App URLs have a special `android-app://` scheme that is rejected
21
+ by the currently released version of the `referer-parser` gem. The code
22
+ in this patch already exists in the master branch of the gem, but this
23
+ has not yet been released, and if Android users browse the storefront it
24
+ can generate an error when collecting referer information. In case a
25
+ referer cannot be parsed, Workarea also rescues the error so that
26
+ checkout requests are not blocked.
27
+
28
+ WORKAREA-295
29
+ Fixes #531
30
+
31
+ Tom Scott
32
+
33
+ * Try to clarify how to use search synonyms
34
+
35
+ There has been repeated confusion around why/how to use synonyms, so this is an attempt to clarify.
36
+
37
+ Ben Crouse
38
+
39
+
40
+
41
+ Workarea 3.4.41 (2020-09-30)
42
+ --------------------------------------------------------------------------------
43
+
44
+ * Rename Admin::ProductViewModel#options to avoid conflict with normal options method
45
+
46
+
47
+ Matt Duffy
48
+
49
+ * Improve clarity of discount verbiage
50
+
51
+ This hopes to address some recent confusion around how the discount
52
+ works.
53
+
54
+ Ben Crouse
55
+
56
+ * Fix safe navigation method calls
57
+
58
+ This will raise if the menu content is nil.
59
+
60
+ Ben Crouse
61
+
62
+ * Redirect back to the previous page after stopping impersonation
63
+
64
+ Currently we redirect to the user's show page, which can be pretty
65
+ disorienting.
66
+
67
+ Ben Crouse
68
+
69
+
70
+
71
+ Workarea 3.4.40 (2020-09-16)
72
+ --------------------------------------------------------------------------------
73
+
74
+ * Fix Editing Product Images in Admin
75
+
76
+ When an image does not include an option, the edit page errors because
77
+ `#parameterize` cannot be called on `@image.option` since that is
78
+ returning `nil`. Additionally, the line of code in which this is called
79
+ is meant to set an ID attribute on the element for which an image is
80
+ rendered. There doesn't seem to be anything in our codebase that uses
81
+ this, and furthermore since there's no validation for unique options per
82
+ set of product images, this could cause a duplicate ID error in certain
83
+ scenarios. To resolve this, the ID attribute has been removed from this
84
+ `<img>` tag.
85
+
86
+ WORKAREA-254
87
+
88
+ Tom Scott
89
+
90
+ * Improve display of disabled toggles
91
+
92
+ When a toggle button is disabled, it should reflect that visually
93
+ instead of just looking like it should be functional.
94
+
95
+ Ben Crouse
96
+
97
+ * Remove CSV Messaging For Options Fields
98
+
99
+ This removes the "Comma separated: just, like, this" messaging and
100
+ tooltip that explains more about comma-separated fields for filters and
101
+ details. Options do not have these same constraints, and this help
102
+ bubble just serves as a point of confusion for admins.
103
+
104
+ WORKAREA-266
105
+
106
+ Tom Scott
107
+
108
+
109
+
110
+ Workarea 3.4.39 (2020-09-01)
111
+ --------------------------------------------------------------------------------
112
+
113
+ * Set Default Inventory Policy to "Standard" in Create Product Workflow
114
+
115
+ When creating a new product through the workflow, setting the
116
+ "Inventory" on a particular SKU would still cause the `Inventory::Sku`
117
+ to be created with the "Ignore" policy rather than "Standard". Setting
118
+ inventory on a SKU now automatically causes the `Inventory::Sku` record
119
+ to be created with a policy of "Standard" so as to deduct the given
120
+ inventory to the varaint. When no inventory is given, Workarea will fall
121
+ back to the default of "Ignore".
122
+
123
+ WORKAREA-265
124
+
125
+ Tom Scott
126
+
127
+ * Handle missing or invalid current impersonation
128
+
129
+ This surfaced as a random failing test, this should make the feature more robust.
130
+
131
+ Ben Crouse
132
+
133
+ * Fix wrong sorting on default admin index pages
134
+
135
+ The query for an admin index page can end up inadvertantly introduce a
136
+ scoring variation, which can cause results to not match the `updated_at`
137
+ default sort.
138
+
139
+ This makes `updated_at` the true default sort, and allows the general
140
+ admin search to override, where `_score` is still the desired default
141
+ sort.
142
+
143
+ Ben Crouse
144
+
145
+
146
+
147
+ Workarea 3.4.38 (2020-08-19)
148
+ --------------------------------------------------------------------------------
149
+
150
+ * Return Status of `Checkout#update`
151
+
152
+ For APIs and other consumers of the Checkout model, return a boolean
153
+ response from the `#update` method to signify whether the operation
154
+ succeeded or failed. This response is used directly in the API to return
155
+ an `:unprocessable_entity` response code when an update operation fails.
156
+
157
+ WORKAREA-253
158
+
159
+ Tom Scott
160
+
161
+ * Remove port from host configuration in installer
162
+
163
+ Ports aren't part of hosts, this causes problems when the value is used
164
+ like a true host.
165
+
166
+ This PR also fixes mailer links with missing ports as a result of this
167
+ change.
168
+
169
+ Ben Crouse
170
+
171
+ * Bump Chartkick to fix bundler audit warning
172
+
173
+ The vulnerability won't affect Workarea in use, but it'll be easier to fix builds doing this.
174
+
175
+ Ben Crouse
176
+
177
+ * Allow inquiry subjects to be localized
178
+
179
+ WORKAREA-238
180
+
181
+ Matt Duffy
182
+
183
+
184
+
1
185
  Workarea 3.4.37 (2020-07-22)
2
186
  --------------------------------------------------------------------------------
3
187
 
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.37
4
+ version: 3.4.42
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-07-22 00:00:00.000000000 Z
11
+ date: 2020-10-14 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.37
19
+ version: 3.4.42
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.37
26
+ version: 3.4.42
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.37
33
+ version: 3.4.42
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.37
40
+ version: 3.4.42
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.37
47
+ version: 3.4.42
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.37
54
+ version: 3.4.42
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.37
61
+ version: 3.4.42
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.37
68
+ version: 3.4.42
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com