gitlab-security_report_schemas 0.1.2.min15.0.0.max15.2.0 → 0.1.3.min15.0.0.max15.2.1
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/Gemfile.lock +3 -1
- data/README.md +0 -3
- data/Rakefile +0 -9
- data/gem_version +1 -1
- data/gitlab-security_report_schemas.gemspec +1 -0
- data/lib/gitlab/security_report_schemas/configuration.rb +0 -3
- data/lib/gitlab/security_report_schemas/version.rb +1 -1
- data/lib/gitlab/security_report_schemas.rb +0 -4
- data/schemas/15.2.1/cluster-image-scanning-report-format.json +1243 -0
- data/schemas/15.2.1/container-scanning-report-format.json +1176 -0
- data/schemas/15.2.1/coverage-fuzzing-report-format.json +1153 -0
- data/schemas/15.2.1/dast-report-format.json +1558 -0
- data/schemas/15.2.1/dependency-scanning-report-format.json +1164 -0
- data/schemas/15.2.1/sast-report-format.json +1148 -0
- data/schemas/15.2.1/secret-detection-report-format.json +1172 -0
- data/supported_versions +1 -0
- metadata +23 -8
- data/lib/gitlab/security_report_schemas/release/bundler.rb +0 -34
- data/lib/gitlab/security_report_schemas/release/gemfile.rb +0 -49
- data/lib/gitlab/security_report_schemas/release/issue.rb +0 -77
- data/lib/gitlab/security_report_schemas/release/merge_request.rb +0 -84
- data/lib/gitlab/security_report_schemas/release/templates/issue_description.erb +0 -13
- data/lib/gitlab/security_report_schemas/release/workflow.rb +0 -108
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ba052a7936e82d5a5888c8adfd340bac1929ea5bb51215cdad3c78b108984c4
|
4
|
+
data.tar.gz: 53e80aab76684b7a4fe2e6ae7e6cb2e567b814e27e7cc237c6f604e27c90a964
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bebe86108042279de541e80deaefd90561840502d9db291940728e5d988d71b057f775abdc807f698fcf98d710d8b2f7dde3d41ce747f2de004bc903bbbeeb75
|
7
|
+
data.tar.gz: 29aa663c77051ab73feecbeea252f87c957ef51508069e03c81376720959c4cd138b7a0ef769136d32c795c2bb5725885aad8700a05ee56252dcc5f58485c608
|
data/Gemfile.lock
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gitlab-security_report_schemas (0.1.
|
4
|
+
gitlab-security_report_schemas (0.1.3.min15.0.0.max15.2.1)
|
5
5
|
activesupport (>= 6, < 8)
|
6
6
|
json_schemer (~> 2.3.0)
|
7
|
+
mutex_m (~> 0.3.0)
|
7
8
|
|
8
9
|
GEM
|
9
10
|
remote: https://rubygems.org/
|
@@ -31,6 +32,7 @@ GEM
|
|
31
32
|
simpleidn (~> 0.2)
|
32
33
|
method_source (1.0.0)
|
33
34
|
minitest (5.16.2)
|
35
|
+
mutex_m (0.3.0)
|
34
36
|
parallel (1.22.1)
|
35
37
|
parser (3.1.2.0)
|
36
38
|
ast (~> 2.4.1)
|
data/README.md
CHANGED
@@ -50,7 +50,6 @@ bundle exec security-reports-schemas $FILE_PATH
|
|
50
50
|
| Key | Description |
|
51
51
|
|-----------------------------|-----------------------------------------------------------------------------------------------|
|
52
52
|
| `GITLAB_PUSH_ACCESS_TOKEN` | Own project access token used to push new schema versions. Requires `write_repository` scope. |
|
53
|
-
| `GITLAB_ISSUE_ACCESS_TOKEN` | Project access token used to create an issue on `gitlab-org/gitlab`. Requires `api` scopes. |
|
54
53
|
| `GEM_HOST_API_KEY` | rubygems.org API key |
|
55
54
|
|
56
55
|
#### Configuration
|
@@ -59,8 +58,6 @@ bundle exec security-reports-schemas $FILE_PATH
|
|
59
58
|
|---------------------------|--------------------------------------------------------|----------------------------------------|
|
60
59
|
| `SCHEMAS_PATH` | `./schemas` | Schema storage location |
|
61
60
|
| `SCHEMA_PROJECT` | `gitlab-org/security-products/security-report-schemas` | Where to source schemas |
|
62
|
-
| `GITLAB_PROJECT` | `gitlab-org/gitlab` | Project to open MRs for |
|
63
|
-
| `ISSUE_TARGET_PROJECT_ID` | `278964` (`gitlab-org/gitlab`) | Project ID for which to open an issue. |
|
64
61
|
|
65
62
|
## Maintenance
|
66
63
|
|
data/Rakefile
CHANGED
@@ -41,15 +41,6 @@ task integrity_check: :prepare_schemas do
|
|
41
41
|
end
|
42
42
|
end
|
43
43
|
|
44
|
-
namespace :release do
|
45
|
-
desc "Open patch Issue on gitlab-org/gitlab to update its Gemfile to use the current gem version"
|
46
|
-
task :issue do
|
47
|
-
require "gitlab/security_report_schemas"
|
48
|
-
|
49
|
-
Gitlab::SecurityReportSchemas::Release::Workflow.execute
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
44
|
def cleanup_schema_dir
|
54
45
|
puts "Cleaning the schemas directory..."
|
55
46
|
|
data/gem_version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3.min15.0.0.max15.2.1
|
@@ -8,9 +8,6 @@ module Gitlab
|
|
8
8
|
schemas_path: -> { SecurityReportSchemas.root_path.join("schemas") },
|
9
9
|
deprecated_versions: -> { [] },
|
10
10
|
schema_project: -> { "gitlab-org/security-products/security-report-schemas" },
|
11
|
-
gitlab_project: -> { "gitlab-org/gitlab" },
|
12
|
-
issue_target_project_id: -> { "278964" }, # gitlab-org/gitlab
|
13
|
-
gitlab_issue_access_token: nil,
|
14
11
|
ci_server_host: nil
|
15
12
|
}.freeze
|
16
13
|
|
@@ -6,10 +6,6 @@ require_relative "security_report_schemas/configuration"
|
|
6
6
|
require_relative "security_report_schemas/schema_ver"
|
7
7
|
require_relative "security_report_schemas/version"
|
8
8
|
require_relative "security_report_schemas/validator"
|
9
|
-
require_relative "security_report_schemas/release/bundler"
|
10
|
-
require_relative "security_report_schemas/release/gemfile"
|
11
|
-
require_relative "security_report_schemas/release/issue"
|
12
|
-
require_relative "security_report_schemas/release/workflow"
|
13
9
|
|
14
10
|
module Gitlab
|
15
11
|
# The `gitlab-security_report_schemas` gem contains JSON schemas and utilities
|