workarea 3.5.16 → 3.5.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +63 -0
  3. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39991bc8577724552faa38d465eaedf2494c0a322ad88f3cd8472b0b9ca21453
4
- data.tar.gz: b9dcc936f93f1af302dfe4fafcf83708d47f22a271efbe10b7e234f97a5f09f8
3
+ metadata.gz: 3a8cace53094c2ac105388ab7f3c4bbf854143b5db054146db26676d93b43c7e
4
+ data.tar.gz: 2b4ec90d8cf33f5032e8968c2000bd861ff7e12fec510cdda5e36f556b198958
5
5
  SHA512:
6
- metadata.gz: 0bf217bed75b403e7ff9677618bb3ac94d76c76d901d7f56f71ff44f3540d584be379f5cf5627940fa755203262476eba7d74cbf3a44a8503dad4f45a950f7e5
7
- data.tar.gz: f2ea65dbb8af02f3858b8164b2575120a00527d7c41716bda0dd284ef3eca3bb3227f7930b8fc53f35658ad4d6b69b518dbb0c8ec6baa753b4579a1f5deaf3ef
6
+ metadata.gz: 40ce2e17562d044f89d5fbad27e5d612e3920dce129bdc7a184dc6ce6eab8638d3698e2fc1379e97fb5bb1d57005fb0d830d1aad2f536f114c1722fb5f66fc83
7
+ data.tar.gz: 335b5fbd76fe7483b283b52be962d04f862f112eb3c8cbc75c90141af6d900ec9c3b852f0aec44caffaa9b91a76d852c58193e0b23e02c3ed58fe4cd39f7a1a4
@@ -1,3 +1,66 @@
1
+ Workarea 3.5.17 (2020-08-19)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Fix missing release changes for CSV importing with embedded models
5
+
6
+ Trying to update an embedded model via CSV import with a release causes
7
+ an existing changeset for the root model to get destroyed. This happens
8
+ because the CSV import calls `#save` on the root, which has no changes
9
+ so it removes the changeset.
10
+
11
+ This patch fixes by iterating over the models the CSV row might affect
12
+ and calling `#save` on the embedded ones first (if necessary) to ensure
13
+ the changesets get correctly created and to avoid calling the save on
14
+ the root without changes which removes the existing changeset.
15
+
16
+ Ben Crouse
17
+
18
+ * Return Status of `Checkout#update`
19
+
20
+ For APIs and other consumers of the Checkout model, return a boolean
21
+ response from the `#update` method to signify whether the operation
22
+ succeeded or failed. This response is used directly in the API to return
23
+ an `:unprocessable_entity` response code when an update operation fails.
24
+
25
+ WORKAREA-253
26
+
27
+ Tom Scott
28
+
29
+ * Remove port from host configuration in installer
30
+
31
+ Ports aren't part of hosts, this causes problems when the value is used
32
+ like a true host.
33
+
34
+ This PR also fixes mailer links with missing ports as a result of this
35
+ change.
36
+
37
+ Ben Crouse
38
+
39
+ * Bump Chartkick to fix bundler audit warning
40
+
41
+ The vulnerability won't affect Workarea in use, but it'll be easier to fix builds doing this.
42
+
43
+ Ben Crouse
44
+
45
+ * Allow inquiry subjects to be localized
46
+
47
+ WORKAREA-238
48
+
49
+ Matt Duffy
50
+
51
+ * Update inquiry subject documentation
52
+
53
+ WORKAREA-238
54
+
55
+ Matt Duffy
56
+
57
+ * Remove order summary append point from mailer that is meant for storefront views
58
+
59
+
60
+ Matt Duffy
61
+
62
+
63
+
1
64
  Workarea 3.5.16 (2020-07-22)
2
65
  --------------------------------------------------------------------------------
3
66
 
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.16
4
+ version: 3.5.17
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-22 00:00:00.000000000 Z
11
+ date: 2020-08-19 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.16
19
+ version: 3.5.17
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.16
26
+ version: 3.5.17
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.16
33
+ version: 3.5.17
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.16
40
+ version: 3.5.17
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.16
47
+ version: 3.5.17
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.16
54
+ version: 3.5.17
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.16
61
+ version: 3.5.17
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.16
68
+ version: 3.5.17
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com