workarea 3.5.0.beta.1 → 3.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +210 -0
  3. data/README.md +2 -0
  4. metadata +12 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d185842403bac844fda8dc3aaa3c2d95ab10cc118c2340995a1163312bdb548
4
- data.tar.gz: 546ff669389350c217233e4a37ca7d7670170cbfef8b16fe2498e75d18a26155
3
+ metadata.gz: 2986fd8e76c9acdf1bda6a3632bb2e7b6bf6350bd5eb5d1060df0afddb1b327f
4
+ data.tar.gz: 485febd94846e7dfc13b8b5ce2f56a886067ecd613d1cdf30abb0390e77ce913
5
5
  SHA512:
6
- metadata.gz: 11eeb85e4b1eed6d61ebc85bf606479ba5c20c4b6c6eb4df644dbc89baafd6dabf00c655eb7ebfdecf4ad9d8b3fbd75a5f5d01cbecb88e987f924afe56315e16
7
- data.tar.gz: 0e467db6433045462068a18881e31609e1e1d18b9c423cd12df51b280454bb1275385cf010093721bb78aaa315237b16813edcd7f16eadfabdccff3784defc33
6
+ metadata.gz: 013cd5c18dc8c03f0af24d47c56ca32388059cb82d776e3c65f6c7e3d21b88ad6f2e958a0e843c6cce4509cdb14c1a4fb4ab4b0225fc430214b9da33a1896fa4
7
+ data.tar.gz: 25b2f50a44a93221045d0bdaa5e2c312301f17a3279f65fe817386edc103bf314b1cee8641a08eb68fd112d924fdaf141482f2cf18e9c1c5097b601d8972cee4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,213 @@
1
+ Workarea 3.5.0 (2019-11-26)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Add caching to order item details results
5
+
6
+ This was a point of bottleneck during recent Reformation load-testing.
7
+
8
+ WORKAREA-102
9
+ Ben Crouse
10
+
11
+ * Add admin alert when a newer workarea version is available
12
+
13
+ WORKAREA-107
14
+ Matt Duffy
15
+
16
+ * Base discount auto-deactivation on updated_at, expose auto_deactivate field
17
+
18
+ WORKAREA-114
19
+ Matt Duffy
20
+
21
+ * Ensure UTF-8 Encoding of Data File Import Samples
22
+
23
+ This ensures data file import samples are always treated as UTF-8.
24
+ While Ruby itself does do this pretty well, and most browsers are good
25
+ at guessing the file type/encoding based on the contents of the file,
26
+ there might be some outliers that rely on metadata that's a bit more
27
+ strictly adhered to. This change ensures that sample CSV/JSON files are
28
+ delivered to the user as an attachment, and using the correct MIME type,
29
+ so that they register as such when downloaded by the browser.
30
+ Previously, all imports were showing as "TXT file" types, when they were
31
+ really "CSV file" or "JSON file", and at least in Firefox, they were not
32
+ downloading when you clicked the sample link. Instead, a new tab would
33
+ open (since Firefox thinks it's a text file), and you have to refresh
34
+ the page to actually get the browser to download the file.
35
+
36
+ WORKAREA-77
37
+ Tom Scott
38
+
39
+ * Import UTF-8 CSVs With BOM Characters
40
+
41
+ UTF-8 doesn't need a BOM in order to start or end a file, but these
42
+ characters can end up in CSVs generated by older software that doesn't
43
+ have great support for Unicode. As a result, if a BOM is in the CSV near
44
+ `_id` it will cause improper importing of the data held within. To
45
+ address this, Workarea now specifies the `bom|` prefix in the `:encoding`
46
+ param for `CSV.foreach` by default. This can still be overridden if you
47
+ have an ASCII file, and since BOM stripping doesn't really apply,
48
+ developers can override the entire encoding string in configuration
49
+ if necessary. But this is a sane default for those who use UTF-8 and
50
+ happen to be exporting out of older spreadsheet software.
51
+
52
+ WORKAREA-79
53
+ Tom Scott
54
+
55
+ * Fix content block asset uploads, set redis key to reduce S3 CORS config requests
56
+
57
+ WORKAREA-109
58
+ Matt Duffy
59
+
60
+ * Handle display of missing segment for active_by_segment admin filter
61
+
62
+ Matt Duffy
63
+
64
+ * Add admin alert for segmented resources with no matching segments
65
+
66
+ WORKAREA-116
67
+ Matt Duffy
68
+
69
+ * Clean up generic admin activity view partials
70
+
71
+ WORKAREA-117
72
+ Matt Duffy
73
+
74
+ * Clean up generic admin activity view partials
75
+
76
+ Matt Duffy
77
+
78
+ * Allow redis to be configured with TLS (#234)
79
+
80
+ Matt Martyn
81
+
82
+ * Update Tests Referencing 2020
83
+
84
+ The credit card expiration year `2020` was hard-coded into many Workarea
85
+ integration tests, and would fail when January 2020 passes. Update these
86
+ tests to always set the credit card expiration year to 1 year in
87
+ advance of when the test runs so this won't happen again in the future.
88
+
89
+ WORKAREA-104
90
+
91
+ Fixes #222
92
+ Tom Scott
93
+
94
+ * Extend impersonation notification to guest browsing
95
+
96
+ WORKAREA-115
97
+ Matt Duffy
98
+
99
+ * Add special tags information tooltip to content asset tags field
100
+
101
+ WORKAREA-99
102
+ Matt Duffy
103
+
104
+ * Add Event functionality to Timeline Report UI
105
+
106
+ WORKAREA-86
107
+ Curt Howard
108
+
109
+ * Expand last order segment rule to allow not ordered within
110
+
111
+ WORKAREA-90
112
+ Matt Duffy
113
+
114
+ * Bump Chartkick dependency to fix security warning
115
+
116
+ Fixes bundler-audit failures in builds.
117
+ Ben Crouse
118
+
119
+ * Add link to browse as a guest to admin shortcuts menu
120
+
121
+ Matt Duffy
122
+
123
+ * Add discount cards append point
124
+
125
+ Ben Crouse
126
+
127
+ * Create the life cycle segments as part of migration task
128
+
129
+ Ben Crouse
130
+
131
+ * Use query string over ID for insights display
132
+
133
+ Query string will also be used in the search autocomplete output.
134
+ Ben Crouse
135
+
136
+ * Remove require_permission for admin guest browsing
137
+
138
+ Matt Duffy
139
+
140
+ * [DOCS] Improve table of contents for docs
141
+
142
+ The table of contents that appears within each doc contains a link to
143
+ every h2-h6 in the document. Therefore, in longer docs, the TOC gets
144
+ quite crowded and stops communicating the overall structure of the doc.
145
+
146
+ Help readers maintain context by simplifying the TOC, limiting links to
147
+ h2-h3.
148
+
149
+ I spot-checked docs of various lengths and found this version of the TOC
150
+ more useful in all cases.
151
+
152
+ WORKAREA-96
153
+ Chris Cressman
154
+
155
+ * Update `Redis::Rack::Cache` to v2.2.0
156
+
157
+ This new version requires `Rack::Cache` v1.10 and enables over-the-wire
158
+ gzip compression to the Redis server. This feature is useful for
159
+ extremely high traffic sites, but should be used with caution since it
160
+ will increase the CPU/RAM load on your application server. You should
161
+ use this if the trade-off between RAM increase and bandwidth decrease
162
+ makes sense.
163
+
164
+ WORKAREA-94
165
+ Tom Scott
166
+
167
+ * Bump Chartkick dependency to fix security warning
168
+
169
+ Fixes bundler-audit failures in builds.
170
+ Ben Crouse
171
+
172
+ * Add index to SearchByDay model
173
+
174
+ Bryan Alexander
175
+
176
+ * Add index to SearchByDay model
177
+
178
+ Bryan Alexander
179
+
180
+ * Add admin browsing by segmentable content
181
+
182
+ This adds "Active by Segment" as a filter, and adds a "Content" card to
183
+ segments to surface what stuff has been setup specifically for a
184
+ segment.
185
+
186
+ WORKAREA-89
187
+ Ben Crouse
188
+
189
+ * Remove now-unneeded version restriction on the BSON gem
190
+
191
+ If we remove this restriction, we can use newer versions of the `mongo` gem, which contain cluster fixes.
192
+ Ben Crouse
193
+
194
+ * [DOCS] Rename and update doc for testing CC transactions
195
+
196
+ Rename "Test a Credit Card Transaction" to
197
+ "Manually Test Credit Card Transactions" and update the content.
198
+
199
+ The content was specific to a particular gateway and didn't make that
200
+ clear. These changes provide a generic solution in addition to the
201
+ specifics for the default gateway.
202
+
203
+ The title confused devs who reviewed this doc in a different PR,
204
+ thinking that it had to do with automated testing.
205
+
206
+ WORKAREA-13
207
+ Chris Cressman
208
+
209
+
210
+
1
211
  Workarea 3.5.0.beta.1 (2019-11-07)
2
212
  --------------------------------------------------------------------------------
3
213
 
data/README.md CHANGED
@@ -87,6 +87,8 @@ Then try following [our guide on creating a new Workarea Rails app](https://deve
87
87
 
88
88
  If you have any problems, reach out on our [public Slack](https://www.workarea.com/slack). We're happy to help!
89
89
 
90
+ **Watch the Quickstart Video:** <https://vimeo.com/370085475>
91
+
90
92
 
91
93
  Plugins
92
94
  --------------------------------------------------------------------------------
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.5.0.beta.1
4
+ version: 3.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Crouse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-07 00:00:00.000000000 Z
11
+ date: 2019-11-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.5.0.beta.1
19
+ version: 3.5.0
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.5.0.beta.1
26
+ version: 3.5.0
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.5.0.beta.1
33
+ version: 3.5.0
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.5.0.beta.1
40
+ version: 3.5.0
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.5.0.beta.1
47
+ version: 3.5.0
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.5.0.beta.1
54
+ version: 3.5.0
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.5.0.beta.1
61
+ version: 3.5.0
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.5.0.beta.1
68
+ version: 3.5.0
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com
@@ -93,9 +93,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
93
93
  version: '0'
94
94
  required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  requirements:
96
- - - ">"
96
+ - - ">="
97
97
  - !ruby/object:Gem::Version
98
- version: 1.3.1
98
+ version: '0'
99
99
  requirements: []
100
100
  rubygems_version: 3.0.6
101
101
  signing_key: