workarea 3.5.0 → 3.5.1

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/.rubocop.yml +2 -2
  3. data/CHANGELOG.md +111 -0
  4. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2986fd8e76c9acdf1bda6a3632bb2e7b6bf6350bd5eb5d1060df0afddb1b327f
4
- data.tar.gz: 485febd94846e7dfc13b8b5ce2f56a886067ecd613d1cdf30abb0390e77ce913
3
+ metadata.gz: ada7addf5d4d39eff40209b70b7082dbd3b4357fb2a19cd0f0e8b259aa27e113
4
+ data.tar.gz: c30ce14d06e739908869d5b9554f8d0002824584459aac825709f6a2adf120e8
5
5
  SHA512:
6
- metadata.gz: 013cd5c18dc8c03f0af24d47c56ca32388059cb82d776e3c65f6c7e3d21b88ad6f2e958a0e843c6cce4509cdb14c1a4fb4ab4b0225fc430214b9da33a1896fa4
7
- data.tar.gz: 25b2f50a44a93221045d0bdaa5e2c312301f17a3279f65fe817386edc103bf314b1cee8641a08eb68fd112d924fdaf141482f2cf18e9c1c5097b601d8972cee4
6
+ metadata.gz: c9bb6f4c578e4e45dd8a4644b82eaf1c10a57a2e85d39f85bc9f40cd0a089d834c7b90133b86fc7aec08c6aebe985cd971172a15c641017785819eadf4698772
7
+ data.tar.gz: 847109d8324b279ff910996df807116339b7d03a6380a3b52d998d30a6909ed04d6804deea19fddbab72f043fa5a14f8cfcb4904512854f846ac7411365d2761
data/.rubocop.yml CHANGED
@@ -95,7 +95,7 @@ Layout/EmptyLinesAroundModuleBody:
95
95
  - 'storefront/app/view_models/workarea/storefront/search_customization_content.rb'
96
96
  - 'testing/lib/workarea/testing/warning_suppressor.rb'
97
97
 
98
- Layout/IndentFirstArgument:
98
+ Layout/FirstArgumentIndentation:
99
99
  Enabled: true
100
100
  Exclude:
101
101
  - 'admin/test/helpers/workarea/admin/releases_helper_test.rb'
@@ -204,7 +204,7 @@ Layout/Tab:
204
204
  - 'core/vendor/active_shipping/lib/active_shipping/carriers/canada_post.rb'
205
205
 
206
206
  # Blank lines should not have any spaces.
207
- Layout/TrailingBlankLines:
207
+ Layout/TrailingEmptyLines:
208
208
  Enabled: true
209
209
 
210
210
  # No trailing whitespace.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,114 @@
1
+ Workarea 3.5.1 (2019-12-17)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Bump Puma version to fix security advisory
5
+
6
+ See https://github.com/advisories/GHSA-7xx3-m584-x994 for more details.
7
+ Ben Crouse
8
+
9
+ * Exclude Update Timestamp From Imports
10
+
11
+ Update the `:updated_at` timestamp to the current time when existing
12
+ models are updated via an import, and ignore any settings of the
13
+ `:updated_at` timestamp in JSON/CSV imports, as this can interfere with
14
+ cache key generation.
15
+
16
+ WORKAREA-126
17
+ Tom Scott
18
+
19
+ * Improve Redis configuration defaulting
20
+
21
+ This makes Redis configuration a little more robust, allowing partial
22
+ configuration values that will always end up falling back to defaults.
23
+ Ben Crouse
24
+
25
+ * Fix time zone querying for insights and reports
26
+
27
+ Data was getting stored correctly, but not queried correctly. When
28
+ building aggregations for MongoDB, the Mongoid logic to use UTC does not
29
+ kick in since it's not going through the Mongoid DSL.
30
+
31
+ This was the lowest impact fix. Changing how we store reporting_on will
32
+ invalidate current data and not allow for changing timezones later.
33
+
34
+ WORKAREA-135
35
+ Ben Crouse
36
+
37
+ * Fix Install Generator On Freshly Created App (#274)
38
+
39
+ The `workarea:install` generator failed with an error finding the
40
+ `Storefront::Engine` constant when it was run against a freshly
41
+ generated Rails 5.2.3 application. To resolve this, require the
42
+ necessary engines in **lib/workarea/core.rb** so the application loads
43
+ properly the first time, and can run the generator.
44
+
45
+ WORKAREA-134
46
+ Tom Scott
47
+
48
+ * [DOCS] Add/improve payment tender types documentation
49
+
50
+ Existing payment tender type documentation is limited to the credit card
51
+ tender type, covers only a portion of the implementation, and does not
52
+ explain the concepts or provide context to those new to the platform.
53
+
54
+ Replace and significantly expand coverage, providing 3 separate howtos:
55
+
56
+ * Customize the Credit Card Tender Type
57
+ * Implement a Primary Tender Type
58
+ * Implement an Advance Payment Tender Type
59
+
60
+ WORKAREA-13
61
+ Chris Cressman
62
+
63
+ * Remove Logstasher as a dependency (#273)
64
+
65
+ Logstasher isn't required to run an instance of Workarea. This dependency is being moved to the `workarea-commerce_cloud` gem for hosting.
66
+ Eric Pigeon
67
+
68
+ * Fix password config not available when building indexes
69
+
70
+ This causes a null value for expireAfterSeconds when creating indexes in
71
+ Mongo.
72
+ Ben Crouse
73
+
74
+ * Add index for better redemption querying
75
+
76
+ As suggested by the hosting team.
77
+ Ben Crouse
78
+
79
+ * Restrict release datetimepicker to dates in the future
80
+
81
+ WORKAREA-65
82
+ Matt Duffy
83
+
84
+ * Add activate_with as a field on block drafts for compatibility
85
+
86
+ Matt Duffy
87
+
88
+ * Fix adding a new first content block hidden
89
+
90
+ This can happen in certain release conditions
91
+
92
+ WORKAREA-111
93
+ Ben Crouse
94
+
95
+ * Remove Releasable module from Content::BlockDraft
96
+
97
+ WORKAREA-121
98
+ Matt Duffy
99
+
100
+ * Fix nil search customizations when inactive in ProductSearch
101
+
102
+ WORKAREA-80
103
+ Ben Crouse
104
+
105
+ * Fix polymorphic embedded relations in CSV importing/exporting
106
+
107
+ WORKAREA-120
108
+ Ben Crouse
109
+
110
+
111
+
1
112
  Workarea 3.5.0 (2019-11-26)
2
113
  --------------------------------------------------------------------------------
3
114
 
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
4
+ version: 3.5.1
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-26 00:00:00.000000000 Z
11
+ date: 2019-12-18 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
19
+ version: 3.5.1
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
26
+ version: 3.5.1
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
33
+ version: 3.5.1
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
40
+ version: 3.5.1
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
47
+ version: 3.5.1
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
54
+ version: 3.5.1
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
61
+ version: 3.5.1
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
68
+ version: 3.5.1
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com