still_active 3.0.0.rc5 → 3.0.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +40 -2
- data/README.md +27 -2
- data/lib/still_active/artifactory_client.rb +1 -1
- data/lib/still_active/cli.rb +91 -29
- data/lib/still_active/compact_index_client.rb +1 -1
- data/lib/still_active/config.rb +2 -0
- data/lib/still_active/config_file.rb +3 -2
- data/lib/still_active/deps_dev_client.rb +24 -3
- data/lib/still_active/ecosystem_lens.rb +22 -8
- data/lib/still_active/ecosystems_client.rb +1 -1
- data/lib/still_active/forgejo_client.rb +1 -1
- data/lib/still_active/gitlab_client.rb +1 -1
- data/lib/{helpers → still_active/helpers}/activity_helper.rb +1 -1
- data/lib/{helpers → still_active/helpers}/cyclonedx_helper.rb +85 -7
- data/lib/{helpers → still_active/helpers}/libyear_helper.rb +1 -1
- data/lib/{helpers → still_active/helpers}/markdown_helper.rb +19 -0
- data/lib/{helpers → still_active/helpers}/sarif_helper.rb +17 -2
- data/lib/still_active/helpers/sbom_graph.rb +166 -0
- data/lib/{helpers → still_active/helpers}/status_helper.rb +23 -5
- data/lib/{helpers → still_active/helpers}/terminal_helper.rb +15 -0
- data/lib/{helpers → still_active/helpers}/version_helper.rb +14 -2
- data/lib/still_active/options.rb +6 -3
- data/lib/still_active/osv_client.rb +197 -27
- data/lib/still_active/poison_security_correlator.rb +3 -3
- data/lib/still_active/pypi_client.rb +1 -1
- data/lib/still_active/sarif/rules.rb +15 -0
- data/lib/still_active/sbom_reader.rb +117 -2
- data/lib/still_active/sbom_workflow.rb +4 -4
- data/lib/still_active/suppressions.rb +5 -3
- data/lib/still_active/version.rb +1 -1
- data/lib/still_active/workflow.rb +20 -13
- metadata +34 -33
- /data/lib/{helpers → still_active/helpers}/alternatives_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/ansi_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/bot_context.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/bundler_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/catalog_index.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/constraint_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/cvss_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/dependency_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/diff_markdown_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/dotnet_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/emoji_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/endoflife_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/http_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/lockfile_dependency_parser.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/lockfile_indexer.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/markdown_escape.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/pep440_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/python_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/ruby_advisory_db.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/ruby_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/runtime_ceiling_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/semver_satisfaction.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/summary_helper.rb +0 -0
- /data/lib/{helpers → still_active/helpers}/vulnerability_helper.rb +0 -0
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: still_active
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.0
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Floyd
|
|
@@ -133,38 +133,6 @@ files:
|
|
|
133
133
|
- LICENSE.txt
|
|
134
134
|
- README.md
|
|
135
135
|
- bin/still_active
|
|
136
|
-
- lib/helpers/activity_helper.rb
|
|
137
|
-
- lib/helpers/alternatives_helper.rb
|
|
138
|
-
- lib/helpers/ansi_helper.rb
|
|
139
|
-
- lib/helpers/bot_context.rb
|
|
140
|
-
- lib/helpers/bundler_helper.rb
|
|
141
|
-
- lib/helpers/catalog_index.rb
|
|
142
|
-
- lib/helpers/constraint_helper.rb
|
|
143
|
-
- lib/helpers/cvss_helper.rb
|
|
144
|
-
- lib/helpers/cyclonedx_helper.rb
|
|
145
|
-
- lib/helpers/dependency_helper.rb
|
|
146
|
-
- lib/helpers/diff_markdown_helper.rb
|
|
147
|
-
- lib/helpers/dotnet_helper.rb
|
|
148
|
-
- lib/helpers/emoji_helper.rb
|
|
149
|
-
- lib/helpers/endoflife_helper.rb
|
|
150
|
-
- lib/helpers/http_helper.rb
|
|
151
|
-
- lib/helpers/libyear_helper.rb
|
|
152
|
-
- lib/helpers/lockfile_dependency_parser.rb
|
|
153
|
-
- lib/helpers/lockfile_indexer.rb
|
|
154
|
-
- lib/helpers/markdown_escape.rb
|
|
155
|
-
- lib/helpers/markdown_helper.rb
|
|
156
|
-
- lib/helpers/pep440_helper.rb
|
|
157
|
-
- lib/helpers/python_helper.rb
|
|
158
|
-
- lib/helpers/ruby_advisory_db.rb
|
|
159
|
-
- lib/helpers/ruby_helper.rb
|
|
160
|
-
- lib/helpers/runtime_ceiling_helper.rb
|
|
161
|
-
- lib/helpers/sarif_helper.rb
|
|
162
|
-
- lib/helpers/semver_satisfaction.rb
|
|
163
|
-
- lib/helpers/status_helper.rb
|
|
164
|
-
- lib/helpers/summary_helper.rb
|
|
165
|
-
- lib/helpers/terminal_helper.rb
|
|
166
|
-
- lib/helpers/version_helper.rb
|
|
167
|
-
- lib/helpers/vulnerability_helper.rb
|
|
168
136
|
- lib/still_active.rb
|
|
169
137
|
- lib/still_active/artifactory_client.rb
|
|
170
138
|
- lib/still_active/ceiling_reconciler.rb
|
|
@@ -181,6 +149,39 @@ files:
|
|
|
181
149
|
- lib/still_active/forgejo_client.rb
|
|
182
150
|
- lib/still_active/github_client.rb
|
|
183
151
|
- lib/still_active/gitlab_client.rb
|
|
152
|
+
- lib/still_active/helpers/activity_helper.rb
|
|
153
|
+
- lib/still_active/helpers/alternatives_helper.rb
|
|
154
|
+
- lib/still_active/helpers/ansi_helper.rb
|
|
155
|
+
- lib/still_active/helpers/bot_context.rb
|
|
156
|
+
- lib/still_active/helpers/bundler_helper.rb
|
|
157
|
+
- lib/still_active/helpers/catalog_index.rb
|
|
158
|
+
- lib/still_active/helpers/constraint_helper.rb
|
|
159
|
+
- lib/still_active/helpers/cvss_helper.rb
|
|
160
|
+
- lib/still_active/helpers/cyclonedx_helper.rb
|
|
161
|
+
- lib/still_active/helpers/dependency_helper.rb
|
|
162
|
+
- lib/still_active/helpers/diff_markdown_helper.rb
|
|
163
|
+
- lib/still_active/helpers/dotnet_helper.rb
|
|
164
|
+
- lib/still_active/helpers/emoji_helper.rb
|
|
165
|
+
- lib/still_active/helpers/endoflife_helper.rb
|
|
166
|
+
- lib/still_active/helpers/http_helper.rb
|
|
167
|
+
- lib/still_active/helpers/libyear_helper.rb
|
|
168
|
+
- lib/still_active/helpers/lockfile_dependency_parser.rb
|
|
169
|
+
- lib/still_active/helpers/lockfile_indexer.rb
|
|
170
|
+
- lib/still_active/helpers/markdown_escape.rb
|
|
171
|
+
- lib/still_active/helpers/markdown_helper.rb
|
|
172
|
+
- lib/still_active/helpers/pep440_helper.rb
|
|
173
|
+
- lib/still_active/helpers/python_helper.rb
|
|
174
|
+
- lib/still_active/helpers/ruby_advisory_db.rb
|
|
175
|
+
- lib/still_active/helpers/ruby_helper.rb
|
|
176
|
+
- lib/still_active/helpers/runtime_ceiling_helper.rb
|
|
177
|
+
- lib/still_active/helpers/sarif_helper.rb
|
|
178
|
+
- lib/still_active/helpers/sbom_graph.rb
|
|
179
|
+
- lib/still_active/helpers/semver_satisfaction.rb
|
|
180
|
+
- lib/still_active/helpers/status_helper.rb
|
|
181
|
+
- lib/still_active/helpers/summary_helper.rb
|
|
182
|
+
- lib/still_active/helpers/terminal_helper.rb
|
|
183
|
+
- lib/still_active/helpers/version_helper.rb
|
|
184
|
+
- lib/still_active/helpers/vulnerability_helper.rb
|
|
184
185
|
- lib/still_active/options.rb
|
|
185
186
|
- lib/still_active/osv_client.rb
|
|
186
187
|
- lib/still_active/poison_security_correlator.rb
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|