workarea 3.4.28 → 3.4.33

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/CHANGELOG.md +213 -0
  4. metadata +11 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0be8d416df649a9070efeed75289845b569463b197ba6bc4d8396e70a8aeaa8
4
- data.tar.gz: 072d602ac5415176b13dfbe82af3ec9de24eba7733fed5ad0f4572cd6bdf1a17
3
+ metadata.gz: 689dbd509ed5d18923b8b1b295c75c216712523285caacb2e5a37bd425fd38c6
4
+ data.tar.gz: 89178efe21351bd0cd632104b3808e6ee9b6d1ea96e0dc6470af6fe5fc0e8f68
5
5
  SHA512:
6
- metadata.gz: a1534cb0d39cc40c0468b8a8e4a9a3b1e296ea9fe86190393aa21a90645313eddfffd5477206a0a5e133ceefd921c3eb6a9643df1216391d00b65941d6933b2c
7
- data.tar.gz: 2a95bd9d7d0513feeb9adfc64883468f12a2f48ae0890cd9426f060903697ef2a21d8ee192578af4e363a8a8cf857354589512f3517a518a6079d5458b9f9d98
6
+ metadata.gz: 89c5be1a50842ac03edcbac92bb4538c1a8b6df5a78b39069fb15ac5cf38f41ab4c3a87a624a106bde5f8b2af6400b8bc3696bac3120808abf25d3c021612aec
7
+ data.tar.gz: 76dd41b089cdd0a2ec4bf9ab084658440961b593948b9423340647ebcd218ca9ed1a251b3704ca8432e6537b223fc673576f527c33a7c97a54d64aba65c9cb2a
@@ -198,7 +198,7 @@ Layout/SpaceInsideParens:
198
198
  - 'core/spec/models/workarea/order/queries_spec.rb'
199
199
 
200
200
  # Detect hard tabs, no hard tabs.
201
- Layout/Tab:
201
+ Layout/IndentationStyle:
202
202
  Enabled: true
203
203
  Exclude:
204
204
  - 'core/vendor/active_shipping/lib/active_shipping/carriers/canada_post.rb'
@@ -1,3 +1,216 @@
1
+ Workarea 3.4.33 (2020-05-26)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Fix incorrect import errors
5
+
6
+ When an import fails due to a missing `DataFile::Import` document, the
7
+ `ProcessImport` worker will raise a nil error due to the ensure. This
8
+ fixes by ensuring the `DocumentNotFound` error gets raised.
9
+
10
+ Ben Crouse
11
+
12
+ * Remove caching from direct upload CORS requests
13
+
14
+ The caching continues to give us problems, and this isn't a high-traffic
15
+ part of the system so there isn't a practical need for it.
16
+
17
+ Ben Crouse
18
+
19
+ * Correct/clarify Dragonfly configuration warning
20
+
21
+
22
+ Ben Crouse
23
+
24
+
25
+
26
+ Workarea 3.4.32 (2020-04-28)
27
+ --------------------------------------------------------------------------------
28
+
29
+ * Fix bugs with per_page used in page calculation for search queries
30
+
31
+ Even though this shouldn't come from the outside world, it's easy and
32
+ best to ensure per_page is always a valid number.
33
+
34
+ Ben Crouse
35
+
36
+ * Stub S3 CORS for all integration tests
37
+
38
+ It's annoying and unnecessary to have to stub this for every test that
39
+ uses an asset picker.
40
+
41
+ WORKAREA-209
42
+
43
+ Ben Crouse
44
+
45
+ * Skip localized activeness test when localized active fields are off
46
+
47
+ Fixes #421
48
+
49
+ Ben Crouse
50
+
51
+ * Fix accepting per_page param from outside world
52
+
53
+ Page size is the most important factor in performance for browse pages,
54
+ so we don't want these exposed to the outside world out-of-the-box.
55
+
56
+ Ben Crouse
57
+
58
+ * Update grammar for consistency
59
+
60
+
61
+ Ben Crouse
62
+
63
+ * Corrected no_available_shipping_options translation typo (#418)
64
+
65
+
66
+ JurgenHahn
67
+
68
+ * Fix fullfilment shipped mailer template
69
+
70
+ Fullfilment shipped mailer template is using cancellation header.
71
+
72
+ heyqule
73
+
74
+ * Improve visual design of most discounted products insight
75
+
76
+
77
+ Ben Crouse
78
+
79
+ * Change HashUpdate to use the setter instead of mutation
80
+
81
+ Simply mutating the value doesn't work when the field is localized.
82
+ Mongoid's localization behavior only kicks in when you use the setter.
83
+
84
+ Ben Crouse
85
+
86
+ * Allow setting locale fallbacks for a test
87
+
88
+ This is useful if you want to test fallback behavior. Tests in base
89
+ should be agnostic to whether fallbacks are available or not.
90
+
91
+ Ben Crouse
92
+
93
+ * Fix locale fallback getting unexpectedly autloaded
94
+
95
+ This can happen in the middle of a test suite, causing apparently random
96
+ test failure. This freedom patch prevents fallbacks from autoloading.
97
+ We want to let the implementation make that decision.
98
+
99
+ Ben Crouse
100
+
101
+
102
+
103
+ Workarea 3.4.31 (2020-04-15)
104
+ --------------------------------------------------------------------------------
105
+
106
+ * Fix harded JS path for admin jump to dropdown
107
+
108
+ This prevents locale from being included in the path to load results.
109
+ Ben Crouse
110
+
111
+ * Fix index serialization not happening per-locale
112
+
113
+ Previously, indexing was using the same document per-locale. This was
114
+ masked by Mongoid loading data from the cached document to look correct
115
+ in most browse scenarios. This fixes it to serialize per-locale so each
116
+ locale has a separate representation of the document.
117
+ Ben Crouse
118
+
119
+ * Fix Mongoid not returning defaults for localized fields
120
+
121
+ If a locale is missing from the translations hash, Mongoid returns nil
122
+ instead of the default specified on the field. That causes all kinds of
123
+ errors.
124
+ Ben Crouse
125
+
126
+ * Add missing append points to option-based product templates
127
+
128
+ This append point was only in the generic template, but is useful for
129
+ plugins.
130
+ Ben Crouse
131
+
132
+ * Fix dev env autoloading problem with Categorization
133
+
134
+ Ben Crouse
135
+
136
+ * Don't allow more than one valid password reset token per-user
137
+
138
+ Ben Crouse
139
+
140
+
141
+
142
+ Workarea 3.4.30 (2020-03-31)
143
+ --------------------------------------------------------------------------------
144
+
145
+ * Fix incorrect placeholder text
146
+
147
+ Ben Crouse
148
+
149
+ * Remove unneeded grid modifier
150
+
151
+ Causes misalignment of the users index aux navigation append point.
152
+ Ben Crouse
153
+
154
+ * Update critical easymon checks
155
+
156
+ Only elasticsearch, mongodb and redis are critical services for running
157
+ the application.
158
+ Eric Pigeon
159
+
160
+ * Sort jump to results by last updated_at (within each type)
161
+
162
+ This adds updated_at as a sort in jump to so most recent results show at
163
+ the top within their type. The types are still sorted the same.
164
+ Ben Crouse
165
+
166
+ * Handle missing price in sell_price method itself
167
+
168
+ Fixes QA issue.
169
+
170
+ WORKAREA-220
171
+ Tom Scott
172
+
173
+
174
+
175
+ Workarea 3.4.29 (2020-03-17)
176
+ --------------------------------------------------------------------------------
177
+
178
+ * Handle Missing Price in Pricing SKUs Admin Index
179
+
180
+ Ensure that price ranges in the pricing SKUs admin index can handle when
181
+ there are no prices for the SKU.
182
+
183
+ WORKAREA-220
184
+ Tom Scott
185
+
186
+ * Prevent Tracking Index Filters on JSON Requests
187
+
188
+ When `.json` or Ajax requests are made against the admin, the
189
+ `#track_index_filters` callback was previously saving off the full path,
190
+ resulting in issues with the back-linking on the admin UI. To resolve
191
+ this, Workarea no longer considers `.json` requests on the index page to
192
+ be a valid `session[:last_index_path]`.
193
+
194
+ WORKAREA-214
195
+ Tom Scott
196
+
197
+ * Add append point to user index page
198
+
199
+ Jeff Yucis
200
+
201
+ * Add pricing SKU admin append points and align views (#388)
202
+
203
+ Ben Crouse
204
+
205
+ * Improve admin jump to search result types
206
+
207
+ This improves results by limiting the number of results that will show
208
+ per-type. This allows the user to see a more diverse set of results
209
+ instead of being overwhelmed by many matches in the top types.
210
+ Ben Crouse
211
+
212
+
213
+
1
214
  Workarea 3.4.28 (2020-03-03)
2
215
  --------------------------------------------------------------------------------
3
216
 
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.28
4
+ version: 3.4.33
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-03-03 00:00:00.000000000 Z
11
+ date: 2020-05-26 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.28
19
+ version: 3.4.33
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.28
26
+ version: 3.4.33
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.28
33
+ version: 3.4.33
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.28
40
+ version: 3.4.33
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.28
47
+ version: 3.4.33
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.28
54
+ version: 3.4.33
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.28
61
+ version: 3.4.33
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.28
68
+ version: 3.4.33
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubygems_version: 3.0.6
100
+ rubygems_version: 3.0.3
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: The Workarea Commerce Platform