octokit 4.14.0 → 4.20.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ module Octokit
11
11
  module Middleware
12
12
 
13
13
  # Public: Exception thrown when the maximum amount of requests is exceeded.
14
- class RedirectLimitReached < Faraday::Error::ClientError
14
+ class RedirectLimitReached < Faraday::ClientError
15
15
  attr_reader :response
16
16
 
17
17
  def initialize(response)
@@ -4,9 +4,12 @@ module Octokit
4
4
  module Preview
5
5
 
6
6
  PREVIEW_TYPES = {
7
- :branch_protection => 'application/vnd.github.loki-preview+json'.freeze,
7
+ :applications_api => 'application/vnd.github.doctor-strange-preview+json'.freeze,
8
+ :branch_protection => 'application/vnd.github.luke-cage-preview+json'.freeze,
8
9
  :checks => 'application/vnd.github.antiope-preview+json'.freeze,
9
10
  :commit_search => 'application/vnd.github.cloak-preview+json'.freeze,
11
+ :commit_pulls => 'application/vnd.github.groot-preview+json'.freeze,
12
+ :commit_branches => 'application/vnd.github.groot-preview+json'.freeze,
10
13
  :migrations => 'application/vnd.github.wyandotte-preview+json'.freeze,
11
14
  :licenses => 'application/vnd.github.drax-preview+json'.freeze,
12
15
  :source_imports => 'application/vnd.github.barred-rock-preview'.freeze,
@@ -17,10 +20,14 @@ module Octokit
17
20
  :pages => 'application/vnd.github.mister-fantastic-preview+json'.freeze,
18
21
  :projects => 'application/vnd.github.inertia-preview+json'.freeze,
19
22
  :traffic => 'application/vnd.github.spiderman-preview'.freeze,
20
- :integrations => 'application/vnd.github.machine-man-preview+json'.freeze,
21
23
  :topics => 'application/vnd.github.mercy-preview+json'.freeze,
22
24
  :community_profile => 'application/vnd.github.black-panther-preview+json'.freeze,
23
25
  :strict_validation => 'application/vnd.github.speedy-preview+json'.freeze,
26
+ :drafts => 'application/vnd.github.shadow-cat-preview'.freeze,
27
+ :template_repositories => 'application/vnd.github.baptiste-preview+json'.freeze,
28
+ :uninstall_github_app => 'application/vnd.github.gambit-preview+json'.freeze,
29
+ :project_card_events => 'application/vnd.github.starfox-preview+json'.freeze,
30
+ :vulnerability_alerts => 'application/vnd.github.dorian-preview+json'.freeze,
24
31
  }
25
32
 
26
33
  def ensure_api_media_type(type, options)
@@ -20,7 +20,7 @@ module Octokit
20
20
  # @return [RateLimit]
21
21
  def self.from_response(response)
22
22
  info = new
23
- if response && !response.headers.nil?
23
+ if response && response.respond_to?(:headers) && !response.headers.nil?
24
24
  info.limit = (response.headers['X-RateLimit-Limit'] || 1).to_i
25
25
  info.remaining = (response.headers['X-RateLimit-Remaining'] || 1).to_i
26
26
  info.resets_at = Time.at((response.headers['X-RateLimit-Reset'] || Time.now).to_i)
@@ -7,8 +7,6 @@ module Octokit
7
7
  # Parses RSS and Atom feed responses.
8
8
  class FeedParser < Faraday::Response::Middleware
9
9
 
10
- private
11
-
12
10
  def on_complete(env)
13
11
  if env[:response_headers]["content-type"] =~ /(\batom|\brss)/
14
12
  require 'rss'
@@ -9,8 +9,6 @@ module Octokit
9
9
  # HTTP status codes returned by the API
10
10
  class RaiseError < Faraday::Response::Middleware
11
11
 
12
- private
13
-
14
12
  def on_complete(response)
15
13
  if error = Octokit::Error.from_response(response)
16
14
  raise error
@@ -5,7 +5,7 @@ module Octokit
5
5
 
6
6
  # Current minor release.
7
7
  # @return [Integer]
8
- MINOR = 14
8
+ MINOR = 20
9
9
 
10
10
  # Current patch level.
11
11
  # @return [Integer]
@@ -6,6 +6,7 @@ require 'octokit/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.add_development_dependency 'bundler', '>= 1', '< 3'
8
8
  spec.add_dependency 'sawyer', '>= 0.5.3', '~> 0.8.0'
9
+ spec.add_dependency 'faraday', '>= 0.9'
9
10
  spec.authors = ["Wynn Netherland", "Erik Michaels-Ober", "Clint Shryock"]
10
11
  spec.description = %q{Simple wrapper for the GitHub API}
11
12
  spec.email = ['wynn.netherland@gmail.com', 'sferik@gmail.com', 'clint@ctshryock.com']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octokit
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.14.0
4
+ version: 4.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wynn Netherland
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-03-29 00:00:00.000000000 Z
13
+ date: 2020-12-28 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.8.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: faraday
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0.9'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0.9'
55
69
  description: Simple wrapper for the GitHub API
56
70
  email:
57
71
  - wynn.netherland@gmail.com
@@ -71,10 +85,15 @@ files:
71
85
  - lib/octokit/arguments.rb
72
86
  - lib/octokit/authentication.rb
73
87
  - lib/octokit/client.rb
88
+ - lib/octokit/client/actions_secrets.rb
89
+ - lib/octokit/client/actions_workflow_runs.rb
90
+ - lib/octokit/client/actions_workflows.rb
74
91
  - lib/octokit/client/apps.rb
75
92
  - lib/octokit/client/authorizations.rb
76
93
  - lib/octokit/client/checks.rb
94
+ - lib/octokit/client/commit_branches.rb
77
95
  - lib/octokit/client/commit_comments.rb
96
+ - lib/octokit/client/commit_pulls.rb
78
97
  - lib/octokit/client/commits.rb
79
98
  - lib/octokit/client/community_profile.rb
80
99
  - lib/octokit/client/contents.rb
@@ -95,6 +114,7 @@ files:
95
114
  - lib/octokit/client/meta.rb
96
115
  - lib/octokit/client/milestones.rb
97
116
  - lib/octokit/client/notifications.rb
117
+ - lib/octokit/client/oauth_applications.rb
98
118
  - lib/octokit/client/objects.rb
99
119
  - lib/octokit/client/organizations.rb
100
120
  - lib/octokit/client/pages.rb