dependabot-common 0.137.1 → 0.138.3

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: 13c72569206f4456b5853887fb03efa0b1da25583c60a45fa5bb8339965b5e10
4
- data.tar.gz: 916b15623f46b69e7034ec2a0520a970fbdb4b7c0497e5862ca81182548845eb
3
+ metadata.gz: e641bd769bff02bada5d6ac15aae0f36db359f9927c307380518734a1c247bc4
4
+ data.tar.gz: 90f663cd6eb56dcf15293d7d2d1c024fbeaf81b3f655aeb331b533b8304431a0
5
5
  SHA512:
6
- metadata.gz: 69e0c39168442dd1498c9be973392847265d4174178be39552abe191f0c7ed0c6092a2e20126197cb3b43721325cd40678ff058ca05c8a3f678c6b6e583230cb
7
- data.tar.gz: 152115696de5a9dc1a74570cb9c3a9bd33126556fd79960a918b60d09b00347e7d2f64b1585249564ae86112d8fcf308d83fe4b9cc4b96a22d49e10ce992a76c
6
+ metadata.gz: 30cc3c8485549d51df81a3cceb9ad9518f2b8e565e756ff91088c8fc6cf344b275daa1b47e23fa626e4113cbefffa26883649072b1d3110260ffcf8a7fd351a5
7
+ data.tar.gz: 3117d469414de33432a4adce6ffdf980b7768bd32bfad5899f7a346a325ec4d3618563d1cf597f1ec73af7ecf5289a896380020062a122c862b1a5d6ecba15ae
@@ -47,6 +47,8 @@ module Dependabot
47
47
 
48
48
  class OutOfMemory < DependabotError; end
49
49
 
50
+ class NotImplemented < DependabotError; end
51
+
50
52
  #####################
51
53
  # Repo level errors #
52
54
  #####################
@@ -1,17 +1,20 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "dependabot/notifications"
4
+
3
5
  module Dependabot
4
6
  module FileParsers
5
7
  class Base
6
- attr_reader :dependency_files, :repo_contents_path, :credentials, :source
8
+ attr_reader :dependency_files, :repo_contents_path, :credentials, :source, :options
7
9
 
8
10
  def initialize(dependency_files:, repo_contents_path: nil, source:,
9
- credentials: [], reject_external_code: false)
11
+ credentials: [], reject_external_code: false, options: {})
10
12
  @dependency_files = dependency_files
11
13
  @repo_contents_path = repo_contents_path
12
14
  @credentials = credentials
13
15
  @source = source
14
16
  @reject_external_code = reject_external_code
17
+ @options = options
15
18
 
16
19
  check_required_files
17
20
  end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_support/notifications"
4
+
5
+ module Dependabot
6
+ module Notifications
7
+ FILE_PARSER_PACKAGE_MANAGER_VERSION_PARSED = "dependabot.file_parser.package_manager_version_parsed"
8
+ end
9
+
10
+ def self.instrument(name, payload = {})
11
+ ActiveSupport::Notifications.instrument(name, payload)
12
+ end
13
+
14
+ def self.subscribe(pattern = nil, callback = nil, &block)
15
+ ActiveSupport::Notifications.subscribe(pattern, callback, &block)
16
+ end
17
+ end
@@ -9,12 +9,14 @@ module Dependabot
9
9
  class Base
10
10
  attr_reader :dependency, :dependency_files, :repo_contents_path,
11
11
  :credentials, :ignored_versions, :raise_on_ignored,
12
- :security_advisories, :requirements_update_strategy
12
+ :security_advisories, :requirements_update_strategy,
13
+ :options
13
14
 
14
15
  def initialize(dependency:, dependency_files:, repo_contents_path: nil,
15
16
  credentials:, ignored_versions: [],
16
17
  raise_on_ignored: false, security_advisories: [],
17
- requirements_update_strategy: nil)
18
+ requirements_update_strategy: nil,
19
+ options: {})
18
20
  @dependency = dependency
19
21
  @dependency_files = dependency_files
20
22
  @repo_contents_path = repo_contents_path
@@ -23,6 +25,7 @@ module Dependabot
23
25
  @ignored_versions = ignored_versions
24
26
  @raise_on_ignored = raise_on_ignored
25
27
  @security_advisories = security_advisories
28
+ @options = options
26
29
  end
27
30
 
28
31
  def up_to_date?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dependabot
4
- VERSION = "0.137.1"
4
+ VERSION = "0.138.3"
5
5
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-common
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.137.1
4
+ version: 0.138.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-15 00:00:00.000000000 Z
11
+ date: 2021-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 6.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 6.0.0
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: aws-sdk-codecommit
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -401,6 +415,7 @@ files:
401
415
  - lib/dependabot/metadata_finders/base/changelog_pruner.rb
402
416
  - lib/dependabot/metadata_finders/base/commits_finder.rb
403
417
  - lib/dependabot/metadata_finders/base/release_finder.rb
418
+ - lib/dependabot/notifications.rb
404
419
  - lib/dependabot/pull_request_creator.rb
405
420
  - lib/dependabot/pull_request_creator/azure.rb
406
421
  - lib/dependabot/pull_request_creator/bitbucket.rb