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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 829c10c48f022ae3585be483c470a724b74574ab08aaab2a084e768708b7f0b9
4
- data.tar.gz: 0660d20df4943c705ecf1dfa3212ccf85aa8dc494d4e6d3131d11c5b92d95ca6
3
+ metadata.gz: 7ba052a7936e82d5a5888c8adfd340bac1929ea5bb51215cdad3c78b108984c4
4
+ data.tar.gz: 53e80aab76684b7a4fe2e6ae7e6cb2e567b814e27e7cc237c6f604e27c90a964
5
5
  SHA512:
6
- metadata.gz: b38737a65a97ed523136d583f8dcd9ca35edcd94b123665245079fe509ca1cf16bb3e1caf825524191fa119f345d7a27eb9d25d19d709e606c7857ff689bfb75
7
- data.tar.gz: 323ff43d6c0052737395a2993542bbb110e34d34f48e1f7da38cc0bcafb0e8fce1a54accab77446b088aede0c896302be4bbc855298c14923e3710e9b5510d1b
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.2.min15.0.0.max15.2.0)
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.2.min15.0.0.max15.2.0
1
+ 0.1.3.min15.0.0.max15.2.1
@@ -30,4 +30,5 @@ Gem::Specification.new do |spec|
30
30
 
31
31
  spec.add_dependency "activesupport", ">= 6", "< 8"
32
32
  spec.add_dependency "json_schemer", "~> 2.3.0"
33
+ spec.add_dependency "mutex_m", "~> 0.3.0"
33
34
  end
@@ -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
 
@@ -5,7 +5,7 @@ module Gitlab
5
5
  # Represents the version of the gem
6
6
  class Version
7
7
  VERSION_SPEC = "%<gem_version>s.min%<min_schema>s.max%<max_schema>s"
8
- GEM_VERSION = "0.1.2"
8
+ GEM_VERSION = "0.1.3"
9
9
  MISSING_SCHEMA_VERSION = "0.0.0"
10
10
 
11
11
  class << self
@@ -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