rails_template_18f 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec09af68270ab8a9c37472e382f4f5c847e2b14a5d865d5d0b161fdb7a5fc6c2
4
- data.tar.gz: f83f58fc2fe89dc1d9516874138452ac2a6331aebaee7db9458abe1bc72c2cd2
3
+ metadata.gz: 9125789bccf3587593670a5046e6a019c8e65265cca40e8a9434f77b1a69cc7a
4
+ data.tar.gz: 72b8d7345799e1d26eef6506b035e80f1de94ea2679d6272f9ad525dbac5870a
5
5
  SHA512:
6
- metadata.gz: 63584d2d0737790f36294c34e7e8d3611cf2d4e930e6664582b1d812e9d6117b609ba1912f40a2243d5bb24178cf989fddc1c3db8e29f41e178e188bd1e576bd
7
- data.tar.gz: 6e78c92eb7cb24522aedb57c91a82ba077fd6780f4b34f0f138953e0ca4992daefcf610e0a934c10f32fee785e7dd72335ea2fbd87e4839d64dbae42cdc6a592
6
+ metadata.gz: 60c7961c07e40710113c4608162e3888335b0d86d8270d82b56bf7d16d607454dad73b7f4626fba87804d251358e744d5a307967562537b9d326f90d77a4630e
7
+ data.tar.gz: 3bd8def94a8f3f576b0f03622e1cf1461e6e79f00d4e3f3e17bd52bad4f91a59e365d3edcbc548be0ceeb6181271446b61a41ea0956832e64ad740c031ade812
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.7.2] - 2022-07-07
4
+
5
+ - update default node version in github actions to 16.15
6
+ - update OSCAL message format to include the app_name as an OSCAL component once assembled
7
+
3
8
  ## [0.7.1] - 2022-07-05
4
9
 
5
10
  - fix issue with initial git commit when no OSCAL docs were updated during initial app creation
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_template_18f (0.7.1)
4
+ rails_template_18f (0.7.2)
5
5
  activesupport (~> 7.0.0)
6
6
  colorize (~> 0.8)
7
7
  railties (~> 7.0.0)
@@ -145,7 +145,7 @@ EOB
145
145
  elsif File.exist?(nvmrc_path)
146
146
  File.read(nvmrc_path).strip
147
147
  else
148
- "16.13"
148
+ "16.15"
149
149
  end
150
150
  end
151
151
 
@@ -63,7 +63,7 @@ module RailsTemplate18f
63
63
  def insert_into_oscal(filename, content, after: "## What is the solution and how is it implemented?\n")
64
64
  content = <<~EOS
65
65
 
66
- **#{app_name} Implementation:**
66
+ ### #{app_name}
67
67
 
68
68
  #{content}
69
69
  EOS
@@ -94,18 +94,11 @@ module RailsTemplate18f
94
94
  insert_into_oscal "sa-11.md", <<~EOS, after: "## Implementation a.\n"
95
95
  The CI/CD pipeline utilizes multiple tools to perform static code analysis for security and privacy:
96
96
 
97
- ### Brakeman
98
- Brakeman is a static code scanner designed to find security issues in Ruby on Rails code. It can flag potential SQL injection,
97
+ * **Brakeman** is a static code scanner designed to find security issues in Ruby on Rails code. It can flag potential SQL injection,
99
98
  Command Injection, open redirects, and other common vulnerabilities.
100
-
101
- ### Bundle Audit
102
- bundle-audit checks Ruby dependencies against a database of known CVE numbers.
103
-
104
- ### Yarn Audit
105
- yarn audit checks Javascript dependencies against a database of known CVE numbers.
106
-
107
- ### OWASP ZAP
108
- OWASP ZAP is a dynamic security scanner that can simulate actual attacks on a running server.
99
+ * **bundle-audit** checks Ruby dependencies against a database of known CVE numbers.
100
+ * **yarn audit** checks Javascript dependencies against a database of known CVE numbers.
101
+ * **OWASP ZAP** is a dynamic security scanner that can simulate actual attacks on a running server.
109
102
 
110
103
  An additional RAILS_ENV has been created called ci. It inherits from production to ensure that the system being tested is as close as possible to production while allowing for overrides such as bypassing authentication in a secure way.
111
104
  EOS
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsTemplate18f
4
- VERSION = "0.7.1"
4
+ VERSION = "0.7.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_template_18f
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Ahearn
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-05 00:00:00.000000000 Z
11
+ date: 2022-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties