workarea 3.4.35 → 3.4.40

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 +187 -0
  3. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa9860dff671718a99702382c8152f5b09df8f771e279bdc6b111c77313aedd2
4
- data.tar.gz: 1356a871dd097b8cf6c72b3b0970892c027ebc96da7f0c26a698866c6f336ccf
3
+ metadata.gz: b08db93240b686ce618f7085a8fd9964c1f0fce18c581360f2071b1c9a5a64c8
4
+ data.tar.gz: 8e7460613beec5cba3e2e7131c80e562a4c072a33087e58c9928b56fa4e66a71
5
5
  SHA512:
6
- metadata.gz: 20d49c885eb997e5a782e5a5908b1dc352152aade409e5096bd75bb9f408f8a869f2d4be9b6a6d709acd60c49ce23d72151458c83b5295bdb8b8acd4457ad4ac
7
- data.tar.gz: 1514faeed52dbc4e6e762a28d1c62c25c00fd47b729f3baa89501a8fe851fcac1b1b6a881105261f6e95e83ca2337deacc107f96f6a9f2e8f163b3ead2defdd8
6
+ metadata.gz: c3f2f7511fe32a18f668e8f775451a3b90b96b2327fe7b571d588939884d5b552b28532b449ef9d6ce03ed886aa0dc1129acb95380ece9e6ccec08ae10769531
7
+ data.tar.gz: ebd7e7fe34e367c343fc5c4da55a0d7535b2a5caac12aa7d09bdf555dfb6ba05c86c4ec78df590e15f422ee817eb388ea4f987ef3fc5149327892124583447f3
@@ -1,3 +1,190 @@
1
+ Workarea 3.4.40 (2020-09-16)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Fix Editing Product Images in Admin
5
+
6
+ When an image does not include an option, the edit page errors because
7
+ `#parameterize` cannot be called on `@image.option` since that is
8
+ returning `nil`. Additionally, the line of code in which this is called
9
+ is meant to set an ID attribute on the element for which an image is
10
+ rendered. There doesn't seem to be anything in our codebase that uses
11
+ this, and furthermore since there's no validation for unique options per
12
+ set of product images, this could cause a duplicate ID error in certain
13
+ scenarios. To resolve this, the ID attribute has been removed from this
14
+ `<img>` tag.
15
+
16
+ WORKAREA-254
17
+
18
+ Tom Scott
19
+
20
+ * Improve display of disabled toggles
21
+
22
+ When a toggle button is disabled, it should reflect that visually
23
+ instead of just looking like it should be functional.
24
+
25
+ Ben Crouse
26
+
27
+ * Remove CSV Messaging For Options Fields
28
+
29
+ This removes the "Comma separated: just, like, this" messaging and
30
+ tooltip that explains more about comma-separated fields for filters and
31
+ details. Options do not have these same constraints, and this help
32
+ bubble just serves as a point of confusion for admins.
33
+
34
+ WORKAREA-266
35
+
36
+ Tom Scott
37
+
38
+
39
+
40
+ Workarea 3.4.39 (2020-09-01)
41
+ --------------------------------------------------------------------------------
42
+
43
+ * Set Default Inventory Policy to "Standard" in Create Product Workflow
44
+
45
+ When creating a new product through the workflow, setting the
46
+ "Inventory" on a particular SKU would still cause the `Inventory::Sku`
47
+ to be created with the "Ignore" policy rather than "Standard". Setting
48
+ inventory on a SKU now automatically causes the `Inventory::Sku` record
49
+ to be created with a policy of "Standard" so as to deduct the given
50
+ inventory to the varaint. When no inventory is given, Workarea will fall
51
+ back to the default of "Ignore".
52
+
53
+ WORKAREA-265
54
+
55
+ Tom Scott
56
+
57
+ * Handle missing or invalid current impersonation
58
+
59
+ This surfaced as a random failing test, this should make the feature more robust.
60
+
61
+ Ben Crouse
62
+
63
+ * Fix wrong sorting on default admin index pages
64
+
65
+ The query for an admin index page can end up inadvertantly introduce a
66
+ scoring variation, which can cause results to not match the `updated_at`
67
+ default sort.
68
+
69
+ This makes `updated_at` the true default sort, and allows the general
70
+ admin search to override, where `_score` is still the desired default
71
+ sort.
72
+
73
+ Ben Crouse
74
+
75
+
76
+
77
+ Workarea 3.4.38 (2020-08-19)
78
+ --------------------------------------------------------------------------------
79
+
80
+ * Return Status of `Checkout#update`
81
+
82
+ For APIs and other consumers of the Checkout model, return a boolean
83
+ response from the `#update` method to signify whether the operation
84
+ succeeded or failed. This response is used directly in the API to return
85
+ an `:unprocessable_entity` response code when an update operation fails.
86
+
87
+ WORKAREA-253
88
+
89
+ Tom Scott
90
+
91
+ * Remove port from host configuration in installer
92
+
93
+ Ports aren't part of hosts, this causes problems when the value is used
94
+ like a true host.
95
+
96
+ This PR also fixes mailer links with missing ports as a result of this
97
+ change.
98
+
99
+ Ben Crouse
100
+
101
+ * Bump Chartkick to fix bundler audit warning
102
+
103
+ The vulnerability won't affect Workarea in use, but it'll be easier to fix builds doing this.
104
+
105
+ Ben Crouse
106
+
107
+ * Allow inquiry subjects to be localized
108
+
109
+ WORKAREA-238
110
+
111
+ Matt Duffy
112
+
113
+
114
+
115
+ Workarea 3.4.37 (2020-07-22)
116
+ --------------------------------------------------------------------------------
117
+
118
+ * Configure Sliced Credit Card Attributes
119
+
120
+ To prevent an unnecessary decoration of the `Workarea::Payment` class,
121
+ the attributes sliced out of the Hash given to `Workarea::Payment#set_credit_card`
122
+ is now configurable in initializers. This same set of attributes is also
123
+ used in the `Users::CreditCardsController`, so the configuration will be
124
+ reused when users are attempting to add a new credit card to their
125
+ account.
126
+
127
+ WORKAREA-257
128
+
129
+ Tom Scott
130
+
131
+ * Setup PlaceOrderIntegrationTest in a Method
132
+
133
+ Currently, decorating the PlaceOrderIntegrationTest to edit the way its
134
+ set up (such as when adding an additional step) is impossible, you have
135
+ to basically copy everything out of the `setup` block and duplicate it
136
+ in your tests. Setup blocks should be methods anyway, so convert this to
137
+ a method and allow it to be decorated in host apps.
138
+
139
+ Tom Scott
140
+
141
+ * Improve Content Area Select UX
142
+
143
+ Remove the current content name and replace it with a static label
144
+ indicating what the `<select>` menu to the right of it is selecting,
145
+ which is the current content area. This UI only displays when there are
146
+ multiple areas for a given `Content`.
147
+
148
+ WORKAREA-244
149
+
150
+ Tom Scott
151
+
152
+
153
+
154
+ Workarea 3.4.36 (2020-07-07)
155
+ --------------------------------------------------------------------------------
156
+
157
+ * Patch Jbuilder to Support Varying Cache
158
+
159
+ Previously, admins were not able to see up-to-date data in API requests
160
+ due to the `#cache!` method in Jbuilder not being patched to skip
161
+ caching when an admin is logged in. To resolve this, Workarea now
162
+ applies the same patch to Jbuilder as it does to ActionView. Reading
163
+ from the cache is now skipped if you're logged in as an admin, and cache
164
+ keys are appended with the configured `Cache::Varies` just the same as
165
+ in regular Haml views.
166
+
167
+ WORKAREA-243
168
+
169
+ Tom Scott
170
+
171
+ * Bump rack version
172
+
173
+ Fixes CVE-2020-8184
174
+
175
+ Ben Crouse
176
+
177
+ * Add Permissions Append Point to User Workflow
178
+
179
+ This allows a plugin (such as API) to specify permissions categories when
180
+ admins are either editing or creating a user.
181
+
182
+ WORKAREA-240
183
+
184
+ Tom Scott
185
+
186
+
187
+
1
188
  Workarea 3.4.35 (2020-06-25)
2
189
  --------------------------------------------------------------------------------
3
190
 
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.35
4
+ version: 3.4.40
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-06-25 00:00:00.000000000 Z
11
+ date: 2020-09-16 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.35
19
+ version: 3.4.40
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.35
26
+ version: 3.4.40
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.35
33
+ version: 3.4.40
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.35
40
+ version: 3.4.40
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.35
47
+ version: 3.4.40
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.35
54
+ version: 3.4.40
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.35
61
+ version: 3.4.40
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.35
68
+ version: 3.4.40
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com