workarea 3.4.36 → 3.4.41

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