dependabot-common 0.113.27 → 0.115.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: 7f0e4d76c265cd26e320b581934db9030da05396c366b4b363cd01e1e6e8d6d6
4
- data.tar.gz: 3956472f4028a54b8988a367771c39ef5915e474b02e55e853633a7d50d54530
3
+ metadata.gz: ab043ac61d68f051ee37b932fd0c13abdab6570877a3daf992c92de594838877
4
+ data.tar.gz: cab7b77dabfc106e699da58f2c4ddf304a76e60823a3172da2958bcac38f633c
5
5
  SHA512:
6
- metadata.gz: 343ac30f99614a6f497e4fd3531b9c2ebbc9c5b5a13114e9eeae07469d5425264d93e2cdf910efcf5f045731928ac73e1d9f632254e6a4463660b35fd3305c2e
7
- data.tar.gz: 0cc640d26ac45f0bb049911508a63d9ed9a618cf5d0aa28bc561faf0992b8f30bb292e5a1ca070a7ae58811ad1e7c974fd4d02fc1ed92e2e4668f4c4b15f093a
6
+ metadata.gz: 98cfd039b43f695b37c5466925271c39960b445f43349a9202348b8ee7a334653997cd3b47299fcc463a4bc7f3424e27f0057411cdb4775e94378f306d15025e
7
+ data.tar.gz: f16086153e97711f3adba45dda4745229d2b712a4a4802053bc0a17daebcec23858dbf79ddfaa41723030c672f3f9410854ccd618e0c3296fe81b8ed1f7abd60
@@ -351,7 +351,6 @@ module Dependabot
351
351
  end
352
352
 
353
353
  # rubocop:disable Metrics/AbcSize
354
- # rubocop:disable Metrics/MethodLength
355
354
  def _fetch_file_content_from_github(path, repo, commit)
356
355
  tmp = github_client.contents(repo, path: path, ref: commit)
357
356
 
@@ -388,7 +387,6 @@ module Dependabot
388
387
  Base64.decode64(tmp.content).force_encoding("UTF-8").encode
389
388
  end
390
389
  # rubocop:enable Metrics/AbcSize
391
- # rubocop:enable Metrics/MethodLength
392
390
 
393
391
  def default_branch_for_repo
394
392
  @default_branch_for_repo ||= client_for_provider.
@@ -60,8 +60,6 @@ module Dependabot
60
60
  dependencies.find { |d| d.name&.downcase == name&.downcase }
61
61
  end
62
62
 
63
- # rubocop:disable Metrics/AbcSize
64
- # rubocop:disable Metrics/CyclomaticComplexity
65
63
  # rubocop:disable Metrics/PerceivedComplexity
66
64
  def combined_dependency(old_dep, new_dep)
67
65
  package_manager = old_dep.package_manager
@@ -91,8 +89,7 @@ module Dependabot
91
89
  subdependency_metadata: subdependency_metadata
92
90
  )
93
91
  end
94
- # rubocop:enable Metrics/AbcSize
95
- # rubocop:enable Metrics/CyclomaticComplexity
92
+
96
93
  # rubocop:enable Metrics/PerceivedComplexity
97
94
  end
98
95
  end
@@ -11,8 +11,6 @@ require "dependabot/utils"
11
11
  require "dependabot/source"
12
12
  require "dependabot/dependency"
13
13
  require "dependabot/git_metadata_fetcher"
14
-
15
- # rubocop:disable Metrics/ClassLength
16
14
  module Dependabot
17
15
  class GitCommitChecker
18
16
  VERSION_REGEX = /
@@ -362,4 +360,3 @@ module Dependabot
362
360
  end
363
361
  end
364
362
  end
365
- # rubocop:enable Metrics/ClassLength
@@ -8,8 +8,6 @@ require "dependabot/clients/gitlab_with_retries"
8
8
  require "dependabot/clients/bitbucket_with_retries"
9
9
  require "dependabot/shared_helpers"
10
10
  require "dependabot/metadata_finders/base"
11
-
12
- # rubocop:disable Metrics/ClassLength
13
11
  module Dependabot
14
12
  module MetadataFinders
15
13
  class Base
@@ -382,4 +380,3 @@ module Dependabot
382
380
  end
383
381
  end
384
382
  end
385
- # rubocop:enable Metrics/ClassLength
@@ -22,7 +22,6 @@ module Dependabot
22
22
  end
23
23
 
24
24
  # rubocop:disable Metrics/PerceivedComplexity
25
- # rubocop:disable Metrics/CyclomaticComplexity
26
25
  def pruned_text
27
26
  changelog_lines = changelog_text.split("\n")
28
27
 
@@ -53,7 +52,6 @@ module Dependabot
53
52
  changelog_lines.slice(slice_range).join("\n").sub(/\n*\z/, "")
54
53
  end
55
54
  # rubocop:enable Metrics/PerceivedComplexity
56
- # rubocop:enable Metrics/CyclomaticComplexity
57
55
 
58
56
  private
59
57
 
@@ -70,7 +68,6 @@ module Dependabot
70
68
  changelog_line_for_version(new_version)
71
69
  end
72
70
 
73
- # rubocop:disable Metrics/CyclomaticComplexity
74
71
  # rubocop:disable Metrics/PerceivedComplexity
75
72
  def changelog_line_for_version(version)
76
73
  raise "No changelog text" unless changelog_text
@@ -93,7 +90,7 @@ module Dependabot
93
90
  false
94
91
  end
95
92
  end
96
- # rubocop:enable Metrics/CyclomaticComplexity
93
+
97
94
  # rubocop:enable Metrics/PerceivedComplexity
98
95
 
99
96
  def changelog_contains_relevant_versions?
@@ -35,7 +35,6 @@ module Dependabot
35
35
  "#{source.url}/#{path}"
36
36
  end
37
37
 
38
- # rubocop:disable Metrics/CyclomaticComplexity
39
38
  def commits
40
39
  return [] unless source
41
40
  return [] unless new_tag && previous_tag
@@ -48,7 +47,6 @@ module Dependabot
48
47
  else raise "Unexpected source provider '#{source.provider}'"
49
48
  end
50
49
  end
51
- # rubocop:enable Metrics/CyclomaticComplexity
52
50
 
53
51
  def new_tag
54
52
  new_version = dependency.version
@@ -68,7 +66,6 @@ module Dependabot
68
66
 
69
67
  private
70
68
 
71
- # rubocop:disable Metrics/CyclomaticComplexity
72
69
  # rubocop:disable Metrics/PerceivedComplexity
73
70
  def previous_tag
74
71
  previous_version = dependency.previous_version
@@ -88,7 +85,7 @@ module Dependabot
88
85
  lowest_tag_satisfying_previous_requirements
89
86
  end
90
87
  end
91
- # rubocop:enable Metrics/CyclomaticComplexity
88
+
92
89
  # rubocop:enable Metrics/PerceivedComplexity
93
90
 
94
91
  def lowest_tag_satisfying_previous_requirements
@@ -126,7 +126,7 @@ module Dependabot
126
126
  author_details: author_details,
127
127
  labeler: labeler,
128
128
  approvers: reviewers,
129
- assignee: assignees&.first,
129
+ assignees: assignees,
130
130
  milestone: milestone
131
131
  )
132
132
  end
@@ -17,9 +17,7 @@ module Dependabot
17
17
  @prefix = prefix
18
18
  end
19
19
 
20
- # rubocop:disable Metrics/AbcSize
21
20
  # rubocop:disable Metrics/PerceivedComplexity
22
- # rubocop:disable Metrics/CyclomaticComplexity
23
21
  def new_branch_name
24
22
  @name ||=
25
23
  begin
@@ -50,9 +48,8 @@ module Dependabot
50
48
  # Some users need branch names without slashes
51
49
  branch_name.gsub("/", separator)
52
50
  end
53
- # rubocop:enable Metrics/AbcSize
51
+
54
52
  # rubocop:enable Metrics/PerceivedComplexity
55
- # rubocop:enable Metrics/CyclomaticComplexity
56
53
 
57
54
  private
58
55
 
@@ -5,8 +5,6 @@ require "securerandom"
5
5
  require "dependabot/clients/github_with_retries"
6
6
  require "dependabot/pull_request_creator"
7
7
  require "dependabot/pull_request_creator/commit_signer"
8
-
9
- # rubocop:disable Metrics/ClassLength
10
8
  module Dependabot
11
9
  class PullRequestCreator
12
10
  class Github
@@ -405,7 +403,6 @@ module Dependabot
405
403
  )
406
404
  end
407
405
 
408
- # rubocop:disable Metrics/CyclomaticComplexity
409
406
  def handle_error(err)
410
407
  case err
411
408
  when Octokit::Forbidden
@@ -425,8 +422,6 @@ module Dependabot
425
422
  raise err
426
423
  end
427
424
  end
428
- # rubocop:enable Metrics/CyclomaticComplexity
429
425
  end
430
426
  end
431
427
  end
432
- # rubocop:enable Metrics/ClassLength
@@ -9,12 +9,12 @@ module Dependabot
9
9
  class Gitlab
10
10
  attr_reader :source, :branch_name, :base_commit, :credentials,
11
11
  :files, :pr_description, :pr_name, :commit_message,
12
- :author_details, :labeler, :approvers, :assignee,
12
+ :author_details, :labeler, :approvers, :assignees,
13
13
  :milestone
14
14
 
15
15
  def initialize(source:, branch_name:, base_commit:, credentials:,
16
16
  files:, commit_message:, pr_description:, pr_name:,
17
- author_details:, labeler:, approvers:, assignee:,
17
+ author_details:, labeler:, approvers:, assignees:,
18
18
  milestone:)
19
19
  @source = source
20
20
  @branch_name = branch_name
@@ -27,7 +27,7 @@ module Dependabot
27
27
  @author_details = author_details
28
28
  @labeler = labeler
29
29
  @approvers = approvers
30
- @assignee = assignee
30
+ @assignees = assignees
31
31
  @milestone = milestone
32
32
  end
33
33
 
@@ -140,7 +140,7 @@ module Dependabot
140
140
  target_branch: source.branch || default_branch,
141
141
  description: pr_description,
142
142
  remove_source_branch: true,
143
- assignee_id: assignee,
143
+ assignee_ids: assignees,
144
144
  labels: labeler.labels_for_pr.join(","),
145
145
  milestone_id: milestone
146
146
  )
@@ -2,8 +2,6 @@
2
2
 
3
3
  require "octokit"
4
4
  require "dependabot/pull_request_creator"
5
-
6
- # rubocop:disable Metrics/ClassLength
7
5
  module Dependabot
8
6
  class PullRequestCreator
9
7
  class Labeler
@@ -89,7 +87,6 @@ module Dependabot
89
87
  @automerge_candidate
90
88
  end
91
89
 
92
- # rubocop:disable Metrics/CyclomaticComplexity
93
90
  # rubocop:disable Metrics/PerceivedComplexity
94
91
  def update_type
95
92
  return unless dependencies.any?(&:previous_version)
@@ -112,7 +109,7 @@ module Dependabot
112
109
  when 3 then "patch"
113
110
  end
114
111
  end
115
- # rubocop:enable Metrics/CyclomaticComplexity
112
+
116
113
  # rubocop:enable Metrics/PerceivedComplexity
117
114
 
118
115
  def version(dep)
@@ -394,4 +391,3 @@ module Dependabot
394
391
  end
395
392
  end
396
393
  end
397
- # rubocop:enable Metrics/ClassLength
@@ -72,7 +72,6 @@ module Dependabot
72
72
  end
73
73
  end
74
74
 
75
- # rubocop:disable Metrics/AbcSize
76
75
  def application_pr_name
77
76
  pr_name = "bump "
78
77
  pr_name = pr_name.capitalize if pr_name_prefixer.capitalize_first_word?
@@ -96,7 +95,6 @@ module Dependabot
96
95
  "#{names[0..-2].join(', ')} and #{names[-1]}"
97
96
  end
98
97
  end
99
- # rubocop:enable Metrics/AbcSize
100
98
 
101
99
  def pr_name_prefix
102
100
  pr_name_prefixer.pr_name_prefix
@@ -166,7 +164,6 @@ module Dependabot
166
164
  msg + "to permit the latest version."
167
165
  end
168
166
 
169
- # rubocop:disable Metrics/CyclomaticComplexity
170
167
  # rubocop:disable Metrics/PerceivedComplexity
171
168
  def version_commit_message_intro
172
169
  if dependencies.count > 1 && updating_a_property?
@@ -196,7 +193,7 @@ module Dependabot
196
193
 
197
194
  msg
198
195
  end
199
- # rubocop:enable Metrics/CyclomaticComplexity
196
+
200
197
  # rubocop:enable Metrics/PerceivedComplexity
201
198
 
202
199
  def multidependency_property_intro
@@ -292,7 +289,7 @@ module Dependabot
292
289
  end
293
290
 
294
291
  dependencies.map do |dep|
295
- msg = "\n\nUpdates `#{dep.display_name}` from "\
292
+ msg = "\nUpdates `#{dep.display_name}` from "\
296
293
  "#{previous_version(dep)} to #{new_version(dep)}"
297
294
 
298
295
  if vulnerabilities_fixed[dep.name]&.one?
@@ -314,7 +311,7 @@ module Dependabot
314
311
  msg += commits_cascade(dep)
315
312
  msg += maintainer_changes_cascade(dep)
316
313
  msg += "\n<br />" unless msg == ""
317
- sanitize_links_and_mentions(msg)
314
+ "\n" + sanitize_links_and_mentions(msg)
318
315
  end
319
316
 
320
317
  def vulnerabilities_cascade(dep)
@@ -438,9 +435,9 @@ module Dependabot
438
435
  if source.provider == ("azure" || "codecommit")
439
436
  "\n\##{summary}\n\n#{body}"
440
437
  else
441
- msg = "\n<details>\n<summary>#{summary}</summary>\n\n"
438
+ msg = "<details>\n<summary>#{summary}</summary>\n\n"
442
439
  msg += body
443
- msg + "</details>"
440
+ msg + "</details>\n"
444
441
  end
445
442
  end
446
443
 
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "commonmarker"
3
4
  require "strscan"
4
5
  require "dependabot/pull_request_creator/message_builder"
5
6
 
@@ -13,21 +14,16 @@ module Dependabot
13
14
  github\.com/(?<repo>#{GITHUB_USERNAME}/[^/\s]+)/
14
15
  (?:issue|pull)s?/(?<number>\d+)
15
16
  }x.freeze
16
- # rubocop:disable Metrics/LineLength
17
- # Context:
18
- # - https://github.github.com/gfm/#fenced-code-block (``` or ~~~)
19
- # (?<=\n|^) Positive look-behind to ensure we start at a line start
20
- # (?>`{3,}|~{3,}) Atomic group marking the beginning of the block (3 or more chars)
21
- # (?>\k<fenceopen>) Atomic group marking the end of the code block (same length as opening)
22
- # - https://github.github.com/gfm/#code-span
23
- # (?<codespanopen>`+) Capturing group marking the beginning of the span (1 or more chars)
24
- # (?![^`]*?\n{2,}) Negative look-ahead to avoid empty lines inside code span
25
- # (?:.|\n)*? Non-capturing group to consume code span content (non-eager)
26
- # (?>\k<codespanopen>) Atomic group marking the end of the code span (same length as opening)
27
- # rubocop:enable Metrics/LineLength
28
- CODEBLOCK_REGEX = /```|~~~/.freeze
17
+ MENTION_REGEX = %r{(?<![A-Za-z0-9`~])@#{GITHUB_USERNAME}/?}.freeze
29
18
  # End of string
30
19
  EOS_REGEX = /\z/.freeze
20
+ # We rely on GitHub to do the HTML sanitization
21
+ COMMONMARKER_OPTIONS = %i(
22
+ UNSAFE GITHUB_PRE_LANG FULL_INFO_STRING
23
+ ).freeze
24
+ COMMONMARKER_EXTENSIONS = %i(
25
+ table tasklist strikethrough autolink tagfilter
26
+ ).freeze
31
27
 
32
28
  attr_reader :github_redirection_service
33
29
 
@@ -36,60 +32,88 @@ module Dependabot
36
32
  end
37
33
 
38
34
  def sanitize_links_and_mentions(text:)
39
- # We don't want to sanitize any links or mentions that are contained
40
- # within code blocks, so we split the text on "```" or "~~~"
41
- lines = []
42
- scan = StringScanner.new(text)
43
- until scan.eos?
44
- line = scan.scan_until(CODEBLOCK_REGEX) ||
45
- scan.scan_until(EOS_REGEX)
46
- delimiter = line.match(CODEBLOCK_REGEX)&.to_s
47
- unless delimiter && lines.count { |l| l.include?(delimiter) }.odd?
48
- line = sanitize_mentions(line)
49
- line = sanitize_links(line)
50
- end
51
- lines << line
52
- end
53
- lines.join
35
+ doc = CommonMarker.render_doc(
36
+ text, :LIBERAL_HTML_TAG, COMMONMARKER_EXTENSIONS
37
+ )
38
+
39
+ sanitize_mentions(doc)
40
+ sanitize_links(doc)
41
+ doc.to_html(COMMONMARKER_OPTIONS, COMMONMARKER_EXTENSIONS)
54
42
  end
55
43
 
56
44
  private
57
45
 
58
- def sanitize_mentions(text)
59
- text.gsub(%r{(?<![A-Za-z0-9`~])@#{GITHUB_USERNAME}/?}) do |mention|
60
- next mention if mention.end_with?("/")
46
+ def sanitize_mentions(doc)
47
+ doc.walk do |node|
48
+ if !parent_node_link?(node) && node.type == :text &&
49
+ node.string_content.match?(MENTION_REGEX)
50
+ nodes = build_mention_nodes(node.string_content)
61
51
 
62
- last_match = Regexp.last_match
52
+ nodes.each do |n|
53
+ node.insert_before(n)
54
+ end
63
55
 
64
- sanitized_mention = mention.gsub("@", "@&#8203;")
65
- if last_match.pre_match.chars.last == "[" &&
66
- last_match.post_match.chars.first == "]"
67
- sanitized_mention
68
- else
69
- "[#{sanitized_mention}]"\
70
- "(https://github.com/#{mention.tr('@', '')})"
56
+ node.delete
71
57
  end
72
58
  end
73
59
  end
74
60
 
75
- def sanitize_links(text)
76
- text.gsub(GITHUB_REF_REGEX) do |ref|
77
- last_match = Regexp.last_match
78
- previous_char = last_match.pre_match.chars.last
79
- next_char = last_match.post_match.chars.first
80
-
81
- sanitized_url =
82
- ref.gsub("github.com", github_redirection_service || "github.com")
83
- if (previous_char.nil? || previous_char.match?(/\s/)) &&
84
- (next_char.nil? || next_char.match?(/\s/))
85
- number = last_match.named_captures.fetch("number")
86
- repo = last_match.named_captures.fetch("repo")
87
- "[#{repo}##{number}]"\
88
- "(#{sanitized_url})"
61
+ def sanitize_links(doc)
62
+ doc.walk do |node|
63
+ if node.type == :link && node.url.match?(GITHUB_REF_REGEX)
64
+ node.each do |subnode|
65
+ last_match = subnode.string_content.match(GITHUB_REF_REGEX)
66
+ next unless subnode.type == :text && last_match
67
+
68
+ number = last_match.named_captures.fetch("number")
69
+ repo = last_match.named_captures.fetch("repo")
70
+ subnode.string_content = "#{repo}##{number}"
71
+ end
72
+
73
+ node.url = node.url.gsub(
74
+ "github.com", github_redirection_service || "github.com"
75
+ )
76
+ end
77
+ end
78
+ end
79
+
80
+ def build_mention_nodes(text)
81
+ nodes = []
82
+ scan = StringScanner.new(text)
83
+
84
+ until scan.eos?
85
+ line = scan.scan_until(MENTION_REGEX) ||
86
+ scan.scan_until(EOS_REGEX)
87
+ line_match = line.match(MENTION_REGEX)
88
+ mention = line_match&.to_s
89
+ text_node = CommonMarker::Node.new(:text)
90
+
91
+ if mention && !mention.end_with?("/")
92
+ text_node.string_content = line_match.pre_match
93
+ nodes << text_node
94
+ nodes << create_link_node(
95
+ "https://github.com/#{mention.tr('@', '')}", mention.to_s
96
+ )
89
97
  else
90
- sanitized_url
98
+ text_node.string_content = line
99
+ nodes << text_node
91
100
  end
92
101
  end
102
+
103
+ nodes
104
+ end
105
+
106
+ def create_link_node(url, text)
107
+ link_node = CommonMarker::Node.new(:link)
108
+ text_node = CommonMarker::Node.new(:text)
109
+ link_node.url = url
110
+ text_node.string_content = text
111
+ link_node.append_child(text_node)
112
+ link_node
113
+ end
114
+
115
+ def parent_node_link?(node)
116
+ node.type == :link || node.parent && parent_node_link?(node.parent)
93
117
  end
94
118
  end
95
119
  end
@@ -5,8 +5,6 @@ require "dependabot/clients/codecommit"
5
5
  require "dependabot/clients/github_with_retries"
6
6
  require "dependabot/clients/gitlab_with_retries"
7
7
  require "dependabot/pull_request_creator"
8
-
9
- # rubocop:disable Metrics/ClassLength
10
8
  module Dependabot
11
9
  class PullRequestCreator
12
10
  class PrNamePrefixer
@@ -429,4 +427,3 @@ module Dependabot
429
427
  end
430
428
  end
431
429
  end
432
- # rubocop:enable Metrics/ClassLength
@@ -81,7 +81,6 @@ module Dependabot
81
81
  Shellwords.join(command_parts)
82
82
  end
83
83
 
84
- # rubocop:disable Metrics/MethodLength
85
84
  def self.run_helper_subprocess(command:, function:, args:, env: nil,
86
85
  stderr_to_stdout: false,
87
86
  escape_command_str: true)
@@ -119,7 +118,6 @@ module Dependabot
119
118
  error_context: error_context
120
119
  )
121
120
  end
122
- # rubocop:enable Metrics/MethodLength
123
121
 
124
122
  def self.excon_middleware
125
123
  Excon.defaults[:middlewares] +
@@ -167,8 +165,6 @@ module Dependabot
167
165
  )
168
166
  end
169
167
 
170
- # rubocop:disable Metrics/AbcSize
171
- # rubocop:disable Metrics/MethodLength
172
168
  def self.configure_git_credentials(credentials)
173
169
  # Then add a file-based credential store that loads a file in this repo.
174
170
  # Under the hood this uses git credential-store, but it's invoked through
@@ -212,8 +208,6 @@ module Dependabot
212
208
  # Save the file
213
209
  File.write("git.store", git_store_content)
214
210
  end
215
- # rubocop:enable Metrics/AbcSize
216
- # rubocop:enable Metrics/MethodLength
217
211
 
218
212
  def self.stash_global_git_config
219
213
  return unless File.exist?(GIT_CONFIG_GLOBAL_PATH)
@@ -74,7 +74,6 @@ module Dependabot
74
74
  "https://" + hostname + "/" + repo
75
75
  end
76
76
 
77
- # rubocop:disable Metrics/CyclomaticComplexity
78
77
  def url_with_directory
79
78
  return url if [nil, ".", "/"].include?(directory)
80
79
 
@@ -94,7 +93,6 @@ module Dependabot
94
93
  else raise "Unexpected repo provider '#{provider}'"
95
94
  end
96
95
  end
97
- # rubocop:enable Metrics/CyclomaticComplexity
98
96
 
99
97
  def organization
100
98
  repo.split("/").first
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dependabot
4
- VERSION = "0.113.27"
4
+ VERSION = "0.115.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-common
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.113.27
4
+ version: 0.115.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-09 00:00:00.000000000 Z
11
+ date: 2019-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-codecommit
@@ -58,6 +58,20 @@ dependencies:
58
58
  - - "<"
59
59
  - !ruby/object:Gem::Version
60
60
  version: 3.0.0
61
+ - !ruby/object:Gem::Dependency
62
+ name: commonmarker
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 0.20.1
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 0.20.1
61
75
  - !ruby/object:Gem::Dependency
62
76
  name: docker_registry2
63
77
  requirement: !ruby/object:Gem::Requirement
@@ -96,16 +110,16 @@ dependencies:
96
110
  name: gitlab
97
111
  requirement: !ruby/object:Gem::Requirement
98
112
  requirements:
99
- - - "~>"
113
+ - - '='
100
114
  - !ruby/object:Gem::Version
101
- version: '4.9'
115
+ version: 4.13.1
102
116
  type: :runtime
103
117
  prerelease: false
104
118
  version_requirements: !ruby/object:Gem::Requirement
105
119
  requirements:
106
- - - "~>"
120
+ - - '='
107
121
  - !ruby/object:Gem::Version
108
- version: '4.9'
122
+ version: 4.13.1
109
123
  - !ruby/object:Gem::Dependency
110
124
  name: nokogiri
111
125
  requirement: !ruby/object:Gem::Requirement
@@ -286,14 +300,14 @@ dependencies:
286
300
  requirements:
287
301
  - - "~>"
288
302
  - !ruby/object:Gem::Version
289
- version: 0.77.0
303
+ version: 0.78.0
290
304
  type: :development
291
305
  prerelease: false
292
306
  version_requirements: !ruby/object:Gem::Requirement
293
307
  requirements:
294
308
  - - "~>"
295
309
  - !ruby/object:Gem::Version
296
- version: 0.77.0
310
+ version: 0.78.0
297
311
  - !ruby/object:Gem::Dependency
298
312
  name: vcr
299
313
  requirement: !ruby/object:Gem::Requirement