octokit 4.22.0 → 9.2.0

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.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +117 -95
  3. data/Rakefile +20 -14
  4. data/lib/ext/sawyer/relation.rb +4 -2
  5. data/lib/octokit/arguments.rb +3 -3
  6. data/lib/octokit/authentication.rb +10 -3
  7. data/lib/octokit/client/actions_artifacts.rb +71 -0
  8. data/lib/octokit/client/actions_secrets.rb +111 -8
  9. data/lib/octokit/client/actions_workflow_jobs.rb +65 -0
  10. data/lib/octokit/client/actions_workflow_runs.rb +23 -3
  11. data/lib/octokit/client/actions_workflows.rb +27 -2
  12. data/lib/octokit/client/apps.rb +63 -26
  13. data/lib/octokit/client/checks.rb +18 -9
  14. data/lib/octokit/client/code_scanning.rb +190 -0
  15. data/lib/octokit/client/codespaces_secrets.rb +108 -0
  16. data/lib/octokit/client/commit_branches.rb +2 -2
  17. data/lib/octokit/client/commit_comments.rb +8 -8
  18. data/lib/octokit/client/commit_pulls.rb +2 -2
  19. data/lib/octokit/client/commits.rb +25 -33
  20. data/lib/octokit/client/community_profile.rb +2 -3
  21. data/lib/octokit/client/contents.rb +19 -22
  22. data/lib/octokit/client/dependabot_secrets.rb +108 -0
  23. data/lib/octokit/client/deployments.rb +8 -8
  24. data/lib/octokit/client/downloads.rb +5 -6
  25. data/lib/octokit/client/emojis.rb +3 -3
  26. data/lib/octokit/client/environments.rb +58 -0
  27. data/lib/octokit/client/events.rb +4 -5
  28. data/lib/octokit/client/feeds.rb +4 -5
  29. data/lib/octokit/client/gists.rb +6 -6
  30. data/lib/octokit/client/gitignore.rb +3 -3
  31. data/lib/octokit/client/hooks.rb +9 -19
  32. data/lib/octokit/client/issues.rb +14 -15
  33. data/lib/octokit/client/labels.rb +10 -10
  34. data/lib/octokit/client/legacy_search.rb +3 -3
  35. data/lib/octokit/client/licenses.rb +3 -6
  36. data/lib/octokit/client/markdown.rb +3 -3
  37. data/lib/octokit/client/marketplace.rb +4 -4
  38. data/lib/octokit/client/meta.rb +4 -5
  39. data/lib/octokit/client/milestones.rb +5 -5
  40. data/lib/octokit/client/notifications.rb +6 -6
  41. data/lib/octokit/client/oauth_applications.rb +1 -7
  42. data/lib/octokit/client/objects.rb +14 -14
  43. data/lib/octokit/client/organizations.rb +100 -56
  44. data/lib/octokit/client/pages.rb +5 -7
  45. data/lib/octokit/client/projects.rb +44 -64
  46. data/lib/octokit/client/pull_requests.rb +66 -45
  47. data/lib/octokit/client/rate_limit.rb +9 -11
  48. data/lib/octokit/client/reactions.rb +62 -16
  49. data/lib/octokit/client/refs.rb +14 -17
  50. data/lib/octokit/client/releases.rb +13 -13
  51. data/lib/octokit/client/repositories.rb +92 -69
  52. data/lib/octokit/client/repository_invitations.rb +3 -3
  53. data/lib/octokit/client/reviews.rb +8 -8
  54. data/lib/octokit/client/say.rb +4 -5
  55. data/lib/octokit/client/search.rb +24 -10
  56. data/lib/octokit/client/service_status.rb +19 -9
  57. data/lib/octokit/client/source_import.rb +7 -12
  58. data/lib/octokit/client/stats.rb +10 -9
  59. data/lib/octokit/client/statuses.rb +5 -5
  60. data/lib/octokit/client/tokens.rb +31 -0
  61. data/lib/octokit/client/traffic.rb +6 -11
  62. data/lib/octokit/client/users.rb +54 -33
  63. data/lib/octokit/client.rb +42 -18
  64. data/lib/octokit/configurable.rb +51 -31
  65. data/lib/octokit/connection.rb +30 -21
  66. data/lib/octokit/default.rb +66 -35
  67. data/lib/octokit/enterprise_admin_client/admin_stats.rb +13 -14
  68. data/lib/octokit/enterprise_admin_client/license.rb +3 -4
  69. data/lib/octokit/enterprise_admin_client/orgs.rb +3 -4
  70. data/lib/octokit/enterprise_admin_client/search_indexing.rb +7 -8
  71. data/lib/octokit/enterprise_admin_client/users.rb +5 -4
  72. data/lib/octokit/enterprise_admin_client.rb +9 -3
  73. data/lib/octokit/enterprise_management_console_client/management_console.rb +51 -33
  74. data/lib/octokit/enterprise_management_console_client.rb +8 -2
  75. data/lib/octokit/error.rb +51 -34
  76. data/lib/octokit/gist.rb +3 -4
  77. data/lib/octokit/manage_ghes_client/manage_ghes.rb +178 -0
  78. data/lib/octokit/manage_ghes_client.rb +64 -0
  79. data/lib/octokit/middleware/follow_redirects.rb +13 -12
  80. data/lib/octokit/organization.rb +3 -1
  81. data/lib/octokit/rate_limit.rb +8 -6
  82. data/lib/octokit/repo_arguments.rb +3 -4
  83. data/lib/octokit/repository.rb +32 -25
  84. data/lib/octokit/response/base_middleware.rb +10 -0
  85. data/lib/octokit/response/feed_parser.rb +5 -7
  86. data/lib/octokit/response/raise_error.rb +4 -4
  87. data/lib/octokit/user.rb +4 -2
  88. data/lib/octokit/version.rb +4 -2
  89. data/lib/octokit/warnable.rb +4 -5
  90. data/lib/octokit.rb +30 -8
  91. data/octokit.gemspec +12 -11
  92. metadata +19 -31
  93. data/lib/octokit/client/authorizations.rb +0 -182
  94. data/lib/octokit/client/pub_sub_hubbub.rb +0 -111
  95. data/lib/octokit/preview.rb +0 -46
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 072c9ec7fa2439cc75655ff5c925efeedc19fe386eae30a30be712524802b3ad
4
- data.tar.gz: 177806faf28428ecd942d0159c268cae122e2ec7a88d4bc3e0b34e41a2b3409c
3
+ metadata.gz: b64084ad94f7ab597007ce5baa5e9daa39e85c0270c0993cde6bf416a2834a2c
4
+ data.tar.gz: 429a34488349b5692bc28e6051571e3e4bddfd7f697be93bd0e24c7329d1bd18
5
5
  SHA512:
6
- metadata.gz: 7a087ec2c360f33db0cd6526ba76ae8762d57885a24577d36ada1baf1cf3019e93beeaa70455bb6cf08f64d9328e84112043d202526b42e94f8cb1bfb96faada
7
- data.tar.gz: 8425341fe9135936b066de860c2722ad77b8a3c3ce2d8fe478a5420a3c911fc56a419ce4808a290f55199074bab94953500d3cdbc7345f9d9137d66cccb9de39
6
+ metadata.gz: c52b64720e7ffa14ab04bf59283194dd8a0b83ba73bf9acc3c0cfbb4ef36ba6e87257f7650969d597135c8c75eb3bc1bf7a3b7a20f2746c5670e92f7cea95a9f
7
+ data.tar.gz: b0598cc84a8d4571d9e3fc64d1ed63dcef618fba37e2d9e33346ef42a766e366bc2e38fc02b7c9561b0fc7fe28a7ed8984599390deb305f86af8e98b21033b29
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Octokit
2
2
 
3
+ > **Note**
4
+ > We've recently renamed the `4-stable` branch to `main`. This might affect you if you're making changes to Octokit's code locally. For more details and for the steps to reconfigure your local clone for the new branch name, check out [this post](https://github.com/octokit/octokit.rb/discussions/1455).
5
+
3
6
  Ruby toolkit for the GitHub API.
4
7
 
5
8
  ![logo](https://docs.github.com/assets/images/gundamcat.png)
@@ -10,43 +13,47 @@ Upgrading? Check the [Upgrade Guide](#upgrading-guide) before bumping to a new
10
13
  ## Table of Contents
11
14
 
12
15
  1. [Philosophy](#philosophy)
13
- 2. [Quick start](#quick-start)
16
+ 2. [Installation](#installation)
14
17
  3. [Making requests](#making-requests)
18
+ 1. [Additional Query Parameters](#additional-query-parameters)
15
19
  4. [Consuming resources](#consuming-resources)
16
20
  5. [Accessing HTTP responses](#accessing-http-responses)
17
- 6. [Authentication](#authentication)
21
+ 6. [Handling errors](#handling-errors)
22
+ 7. [Authentication](#authentication)
18
23
  1. [Basic Authentication](#basic-authentication)
19
24
  2. [OAuth access tokens](#oauth-access-tokens)
20
25
  3. [Two-Factor Authentication](#two-factor-authentication)
21
26
  4. [Using a .netrc file](#using-a-netrc-file)
22
27
  5. [Application authentication](#application-authentication)
23
- 7. [Pagination](#pagination)
28
+ 6. [GitHub App](#github-app)
29
+ 8. [Default results per_page](#default-results-per_page)
30
+ 9. [Pagination](#pagination)
24
31
  1. [Auto pagination](#auto-pagination)
25
- 8. [Working with GitHub Enterprise](#working-with-github-enterprise)
32
+ 10. [Working with GitHub Enterprise](#working-with-github-enterprise)
26
33
  1. [Interacting with the GitHub.com APIs in GitHub Enterprise](#interacting-with-the-githubcom-apis-in-github-enterprise)
27
34
  2. [Interacting with the GitHub Enterprise Admin APIs](#interacting-with-the-github-enterprise-admin-apis)
28
35
  3. [Interacting with the GitHub Enterprise Management Console APIs](#interacting-with-the-github-enterprise-management-console-apis)
29
- 9. [SSL Connection Errors](#ssl-connection-errors)
30
- 10. [Configuration and defaults](#configuration-and-defaults)
36
+ 4. [SSL Connection Errors](#ssl-connection-errors)
37
+ 11. [Configuration and defaults](#configuration-and-defaults)
31
38
  1. [Configuring module defaults](#configuring-module-defaults)
32
39
  2. [Using ENV variables](#using-env-variables)
33
40
  3. [Timeouts](#timeouts)
34
- 11. [Hypermedia agent](#hypermedia-agent)
41
+ 12. [Hypermedia agent](#hypermedia-agent)
35
42
  1. [Hypermedia in Octokit](#hypermedia-in-octokit)
36
43
  2. [URI templates](#uri-templates)
37
44
  3. [The Full Hypermedia Experience™](#the-full-hypermedia-experience)
38
- 12. [Upgrading guide](#upgrading-guide)
45
+ 13. [Upgrading guide](#upgrading-guide)
39
46
  1. [Upgrading from 1.x.x](#upgrading-from-1xx)
40
- 13. [Advanced usage](#advanced-usage)
47
+ 14. [Advanced usage](#advanced-usage)
41
48
  1. [Debugging](#debugging)
42
49
  2. [Caching](#caching)
43
- 14. [Hacking on Octokit.rb](#hacking-on-octokitrb)
50
+ 15. [Hacking on Octokit.rb](#hacking-on-octokitrb)
44
51
  1. [Code of Conduct](#code-of-conduct)
45
52
  2. [Running and writing new tests](#running-and-writing-new-tests)
46
- 15. [Supported Ruby Versions](#supported-ruby-versions)
47
- 16. [Versioning](#versioning)
48
- 17. [Making Repeating Requests](#making-repeating-requests)
49
- 18. [License](#license)
53
+ 16. [Supported Ruby Versions](#supported-ruby-versions)
54
+ 17. [Versioning](#versioning)
55
+ 18. [Making Repeating Requests](#making-repeating-requests)
56
+ 19. [License](#license)
50
57
 
51
58
  ## Philosophy
52
59
 
@@ -66,7 +73,7 @@ client.readme 'al3x/sovereign', :accept => 'application/vnd.github.html'
66
73
  [wrappers]: http://wynnnetherland.com/journal/what-makes-a-good-api-wrapper
67
74
  [github-api]: https://developer.github.com/v3/
68
75
 
69
- ## Quick start
76
+ ## Installation
70
77
 
71
78
  Install via Rubygems
72
79
 
@@ -74,13 +81,13 @@ Install via Rubygems
74
81
 
75
82
  ... or add to your Gemfile
76
83
 
77
- gem "octokit", "~> 4.0"
84
+ gem "octokit"
78
85
 
79
86
  Access the library in Ruby:
80
87
 
81
88
  require 'octokit'
82
89
 
83
- ### Making requests
90
+ ## Making requests
84
91
 
85
92
  [API methods][] are available as client instance methods.
86
93
 
@@ -95,7 +102,7 @@ client = Octokit::Client.new(:access_token => 'personal_access_token')
95
102
  client.user
96
103
  ```
97
104
 
98
- ### Additional Query Parameters
105
+ ### Additional query parameters
99
106
 
100
107
  When passing additional parameters to GET based request use the following syntax:
101
108
 
@@ -109,9 +116,9 @@ When passing additional parameters to GET based request use the following syntax
109
116
  client.contents('octokit/octokit.rb', path: 'path/to/file.rb', query: {ref: 'some-other-branch'})
110
117
  ```
111
118
 
112
- [API methods]: http://octokit.github.io/octokit.rb/method_list.html
119
+ [api methods]: http://octokit.github.io/octokit.rb/method_list.html
113
120
 
114
- ### Consuming resources
121
+ ## Consuming resources
115
122
 
116
123
  Most methods return a `Resource` object which provides dot notation and `[]`
117
124
  access for fields returned in the API response.
@@ -134,7 +141,7 @@ user.rels[:gists].href
134
141
  **Note:** URL fields are culled into a separate `.rels` collection for easier
135
142
  [Hypermedia](#hypermedia-agent) support.
136
143
 
137
- ### Accessing HTTP responses
144
+ ## Accessing HTTP responses
138
145
 
139
146
  While most methods return a `Resource` object or a Boolean, sometimes you may
140
147
  need access to the raw HTTP response headers. You can access the last HTTP
@@ -146,6 +153,23 @@ response = client.last_response
146
153
  etag = response.headers[:etag]
147
154
  ```
148
155
 
156
+ ## Handling errors
157
+
158
+ When the API returns an error response, Octokit will raise a Ruby exception.
159
+
160
+ A range of different exceptions can be raised depending on the error returned
161
+ by the API - for example:
162
+
163
+ * A `400 Bad Request` response will lead to an `Octokit::BadRequest` error
164
+ * A `403 Forbidden` error with a "rate limited exceeded" message will lead
165
+ to a `Octokit::TooManyRequests` error
166
+
167
+ All of the different exception classes inherit from `Octokit::Error` and
168
+ expose the `#response_status`, `#response_headers` and `#response_body`.
169
+ For validation errors, `#errors` will return an `Array` of `Hash`es
170
+ with the detailed information
171
+ [returned by the API](https://docs.github.com/en/rest/overview/resources-in-the-rest-api#client-errors).
172
+
149
173
  ## Authentication
150
174
 
151
175
  Octokit supports the various [authentication methods supported by the GitHub
@@ -163,6 +187,7 @@ user = client.user
163
187
  user.login
164
188
  # => "defunkt"
165
189
  ```
190
+
166
191
  While Basic Authentication allows you to get started quickly, OAuth access
167
192
  tokens are the preferred way to authenticate on behalf of users.
168
193
 
@@ -171,9 +196,9 @@ tokens are the preferred way to authenticate on behalf of users.
171
196
  [OAuth access tokens][oauth] provide two main benefits over using your username
172
197
  and password:
173
198
 
174
- * **Revokable access**. Access tokens can be revoked, removing access for only
199
+ - **Revocable access**. Access tokens can be revoked, removing access for only
175
200
  that token without having to change your password everywhere.
176
- * **Limited access**. Access tokens have [access scopes][] which allow for more
201
+ - **Limited access**. Access tokens have [access scopes][] which allow for more
177
202
  granular access to API resources. For instance, you can grant a third party
178
203
  access to your gists but not your private repositories.
179
204
 
@@ -188,15 +213,7 @@ user.login
188
213
  # => "defunkt"
189
214
  ```
190
215
 
191
- You can [create access tokens through your GitHub Account Settings](https://help.github.com/articles/creating-an-access-token-for-command-line-use)
192
- or with a basic authenticated Octokit client:
193
-
194
- ```ruby
195
- client = Octokit::Client.new(:login => 'defunkt', :password => 'c0d3b4ssssss!')
196
-
197
- client.create_authorization(:scopes => ["user"], :note => "Name of token")
198
- # => <your new oauth token>
199
- ```
216
+ You can [create access tokens through your GitHub Account Settings](https://help.github.com/articles/creating-an-access-token-for-command-line-use).
200
217
 
201
218
  ### Two-Factor Authentication
202
219
 
@@ -212,28 +229,17 @@ client = Octokit::Client.new \
212
229
  user = client.user("defunkt", :headers => { "X-GitHub-OTP" => "<your 2FA token>" })
213
230
  ```
214
231
 
215
- As you can imagine, this gets annoying quick since two-factor auth tokens are very short lived. So it is recommended to create an oauth token for the user to communicate with the API:
216
-
217
- ```ruby
218
- client = Octokit::Client.new \
219
- :login => 'defunkt',
220
- :password => 'c0d3b4ssssss!'
221
-
222
- client.create_authorization(:scopes => ["user"], :note => "Name of token",
223
- :headers => { "X-GitHub-OTP" => "<your 2FA token>" })
224
- # => <your new oauth token>
225
- ```
226
-
227
232
  ### Using a .netrc file
228
233
 
229
234
  Octokit supports reading credentials from a netrc file (defaulting to
230
- `~/.netrc`). Given these lines in your netrc:
235
+ `~/.netrc`). Given these lines in your netrc:
231
236
 
232
237
  ```
233
238
  machine api.github.com
234
239
  login defunkt
235
240
  password c0d3b4ssssss!
236
241
  ```
242
+
237
243
  You can now create a client with those credentials:
238
244
 
239
245
  ```ruby
@@ -241,6 +247,7 @@ client = Octokit::Client.new(:netrc => true)
241
247
  client.login
242
248
  # => "defunkt"
243
249
  ```
250
+
244
251
  But _I want to use OAuth_ you say. Since the GitHub API supports using an OAuth
245
252
  token as a Basic password, you totally can:
246
253
 
@@ -273,6 +280,15 @@ user = client.user 'defunkt'
273
280
  [access scopes]: http://developer.github.com/v3/oauth/#scopes
274
281
  [app-creds]: http://developer.github.com/v3/#increasing-the-unauthenticated-rate-limit-for-oauth-applications
275
282
 
283
+ ### GitHub App
284
+ Octokit.rb also supports authentication [using a GitHub App](https://docs.github.com/en/developers/apps/managing-github-apps/installing-github-apps), which [requires a generated JWT token](https://docs.github.com/en/developers/apps/building-github-apps/authenticating-with-github-apps#authenticating-as-a-github-app).
285
+
286
+ ```ruby
287
+ client = Octokit::Client.new(:bearer_token => "<your jwt token>")
288
+ client.app
289
+ # => about GitHub App info
290
+ ```
291
+
276
292
  ## Default results per_page
277
293
 
278
294
  Default results from the GitHub API are 30, if you wish to add more you must do so during Octokit configuration.
@@ -329,7 +345,7 @@ With a bit of setup, you can also use Octokit with your GitHub Enterprise instan
329
345
 
330
346
  To interact with the "regular" GitHub.com APIs in GitHub Enterprise, simply configure the `api_endpoint` to match your hostname. For example:
331
347
 
332
- ``` ruby
348
+ ```ruby
333
349
  Octokit.configure do |c|
334
350
  c.api_endpoint = "https://<hostname>/api/v3/"
335
351
  end
@@ -341,7 +357,7 @@ client = Octokit::Client.new(:access_token => "<your 40 char token>")
341
357
 
342
358
  The GitHub Enterprise Admin APIs are under a different client: `EnterpriseAdminClient`. You'll need to have an administrator account in order to use these APIs.
343
359
 
344
- ``` ruby
360
+ ```ruby
345
361
  admin_client = Octokit::EnterpriseAdminClient.new(
346
362
  :access_token => "<your 40 char token>",
347
363
  :api_endpoint => "https://<hostname>/api/v3/"
@@ -358,9 +374,9 @@ admin_client = Octokit.enterprise_admin_client.new
358
374
 
359
375
  ### Interacting with the GitHub Enterprise Management Console APIs
360
376
 
361
- The GitHub Enterprise Management Console APIs are also under a separate client: `EnterpriseManagementConsoleClient`. In order to use it, you'll need to provide both your management console password as well as the endpoint to your management console. This is different than the API endpoint provided above.
377
+ The GitHub Enterprise Management Console APIs are also under a separate client: `EnterpriseManagementConsoleClient`. In order to use it, you'll need to provide both your management console password as well as the endpoint to your management console. This is different from the API endpoint provided above.
362
378
 
363
- ``` ruby
379
+ ```ruby
364
380
  management_console_client = Octokit::EnterpriseManagementConsoleClient.new(
365
381
  :management_console_password => "secret",
366
382
  :management_console_endpoint = "https://hostname:8633"
@@ -377,9 +393,9 @@ management_console_client = Octokit.enterprise_management_console_client.new
377
393
 
378
394
  ### SSL Connection Errors
379
395
 
380
- You *may* need to disable SSL temporarily while first setting up your GitHub Enterprise install. You can do that with the following configuration:
396
+ You _may_ need to disable SSL temporarily while first setting up your GitHub Enterprise install. You can do that with the following configuration:
381
397
 
382
- ``` ruby
398
+ ```ruby
383
399
  client.connection_options[:ssl] = { :verify => false }
384
400
  ```
385
401
 
@@ -444,6 +460,7 @@ Octokit.configure do |c|
444
460
  }
445
461
  end
446
462
  ```
463
+
447
464
  You should set a timeout in order to avoid Ruby’s Timeout module, which can hose your server. Here are some resources for more information on this:
448
465
 
449
466
  - [The Oldest Bug In Ruby - Why Rack::Timeout Might Hose your Server](https://www.schneems.com/2017/02/21/the-oldest-bug-in-ruby-why-racktimeout-might-hose-your-server/)
@@ -473,7 +490,7 @@ repos.last.name
473
490
  # => "faraday-zeromq"
474
491
  ```
475
492
 
476
- When processing API responses, all `*_url` attributes are culled in to the link
493
+ When processing API responses, all `*_url` attributes are culled into the link
477
494
  relations collection. Any `url` attribute becomes `.rels[:self]`.
478
495
 
479
496
  ### URI templates
@@ -509,8 +526,8 @@ Octokit 3.0 aims to be hypermedia-driven, removing the internal URL
509
526
  construction currently used throughout the client.
510
527
 
511
528
  [hypermedia]: http://en.wikipedia.org/wiki/Hypermedia
512
- [Sawyer]: https://github.com/lostisland/sawyer
513
- [Faraday]: https://github.com/lostisland/faraday
529
+ [sawyer]: https://github.com/lostisland/sawyer
530
+ [faraday]: https://github.com/lostisland/faraday
514
531
  [uri-templates]: http://tools.ietf.org/html/rfc6570
515
532
 
516
533
  ## Upgrading guide
@@ -518,8 +535,8 @@ construction currently used throughout the client.
518
535
  Version 4.0
519
536
 
520
537
  - **removes support for a [long-deprecated overload][list-pulls] for
521
- passing state as a positional argument** when listing pull requests. Instead,
522
- pass `state` in the method options.
538
+ passing state as a positional argument** when listing pull requests. Instead,
539
+ pass `state` in the method options.
523
540
  - **drops support for Ruby < 2.0**.
524
541
  - adds support for new [Enterprise-only APIs](#working-with-github-enterprise).
525
542
  - adds support for [Repository redirects][redirects].
@@ -536,6 +553,7 @@ for the client:
536
553
  ```ruby
537
554
  Octokit.default_media_type = "application/vnd.github.beta+json"
538
555
  ```
556
+
539
557
  or per-request
540
558
 
541
559
  ```ruby
@@ -552,21 +570,20 @@ Version 2.0 includes a completely rewritten `Client` factory that now memoizes
552
570
  client instances based on unique configuration options. Breaking changes also
553
571
  include:
554
572
 
555
- * `:oauth_token` is now `:access_token`
556
- * `:auto_traversal` is now `:auto_paginate`
557
- * `Hashie::Mash` has been removed. Responses now return a `Sawyer::Resource`
573
+ - `:oauth_token` is now `:access_token`
574
+ - `:auto_traversal` is now `:auto_paginate`
575
+ - `Hashie::Mash` has been removed. Responses now return a `Sawyer::Resource`
558
576
  object. This new type behaves mostly like a Ruby `Hash`, but does not fully
559
577
  support the `Hashie::Mash` API.
560
- * Two new client error types are raised where appropriate:
578
+ - Two new client error types are raised where appropriate:
561
579
  `Octokit::TooManyRequests` and `Octokit::TooManyLoginAttempts`
562
- * The `search_*` methods from v1.x are now found at `legacy_search_*`
563
- * Support for netrc requires including the [netrc gem][] in your Gemfile or
580
+ - The `search_*` methods from v1.x are now found at `legacy_search_*`
581
+ - Support for netrc requires including the [netrc gem][] in your Gemfile or
564
582
  gemspec.
565
- * DateTime fields are now proper `DateTime` objects. Previous versions outputted DateTime fields as 'String' objects.
583
+ - DateTime fields are now proper `DateTime` objects. Previous versions outputted DateTime fields as 'String' objects.
566
584
 
567
585
  [netrc gem]: https://rubygems.org/gems/netrc
568
586
 
569
-
570
587
  ## Advanced usage
571
588
 
572
589
  Since Octokit employs [Faraday][faraday] under the hood, some behavior can be
@@ -580,7 +597,7 @@ traffic:
580
597
 
581
598
  ```ruby
582
599
  stack = Faraday::RackBuilder.new do |builder|
583
- builder.use Faraday::Request::Retry, exceptions: [Octokit::ServerError]
600
+ builder.use Faraday::Retry::Middleware, exceptions: Faraday::Request::Retry::DEFAULT_EXCEPTIONS + [Octokit::ServerError] # or Faraday::Request::Retry for Faraday < 2.0
584
601
  builder.use Octokit::Middleware::FollowRedirects
585
602
  builder.use Octokit::Response::RaiseError
586
603
  builder.use Octokit::Response::FeedParser
@@ -594,6 +611,7 @@ Octokit.middleware = stack
594
611
  client = Octokit::Client.new
595
612
  client.user 'pengwynn'
596
613
  ```
614
+
597
615
  ```
598
616
  I, [2013-08-22T15:54:38.583300 #88227] INFO -- : get https://api.github.com/users/pengwynn
599
617
  D, [2013-08-22T15:54:38.583401 #88227] DEBUG -- request: Accept: "application/vnd.github.beta+json"
@@ -637,8 +655,7 @@ Once configured, the middleware will store responses in cache based on ETag
637
655
  fingerprint and serve those back up for future `304` responses for the same
638
656
  resource. See the [project README][cache] for advanced usage.
639
657
 
640
-
641
- [cache]: https://github.com/plataformatec/faraday-http-cache
658
+ [cache]: https://github.com/sourcelevel/faraday-http-cache
642
659
  [faraday]: https://github.com/lostisland/faraday
643
660
 
644
661
  ## Hacking on Octokit.rb
@@ -653,12 +670,11 @@ to run a Ruby console to poke on Octokit, you can crank one up with:
653
670
 
654
671
  script/console
655
672
 
656
- Using the scripts in `./script` instead of `bundle exec rspec`, `bundle
657
- console`, etc. ensures your dependencies are up-to-date.
673
+ Using the scripts in `./script` instead of `bundle exec rspec`, `bundle console`, etc. ensures your dependencies are up-to-date.
658
674
 
659
675
  ### Code of Conduct
660
676
 
661
- We want both the Octokit.rb and larger Octokit communities to be an open
677
+ We want both the Octokit.rb and larger Octokit communities to be open
662
678
  and welcoming environments. Please read and follow both in spirit and
663
679
  letter [Code of Conduct](CODE_OF_CONDUCT.md).
664
680
 
@@ -675,52 +691,57 @@ Octokit uses environmental variables for storing credentials used in testing.
675
691
  If you are testing an API endpoint that doesn't require authentication, you
676
692
  can get away without any additional configuration. For the most part, tests
677
693
  use an authenticated client, using a token stored in `ENV['OCTOKIT_TEST_GITHUB_TOKEN']`.
678
- There are several different authenticating method's used across the api.
694
+ There are several different authentication methods used across the api.
679
695
  Here is the full list of configurable environmental variables for testing
680
696
  Octokit:
681
697
 
682
- ENV Variable | Description |
683
- :-------------------|:-----------------|
684
- `OCTOKIT_TEST_GITHUB_LOGIN`| GitHub login name (preferably one created specifically for testing against).
685
- `OCTOKIT_TEST_GITHUB_PASSWORD`| Password for the test GitHub login.
686
- `OCTOKIT_TEST_GITHUB_TOKEN` | [Personal Access Token](https://github.com/blog/1509-personal-api-tokens) for the test GitHub login.
687
- `OCTOKIT_TEST_GITHUB_CLIENT_ID` | Test OAuth application client id.
688
- `OCTOKIT_TEST_GITHUB_CLIENT_SECRET` | Test OAuth application client secret.
689
- `OCTOKIT_TEST_GITHUB_REPOSITORY` | Test repository to perform destructive actions against, this should not be set to any repository of importance. **Automatically created by the test suite if nonexistent** Default: `api-sandbox`
690
- `OCTOKIT_TEST_GITHUB_ORGANIZATION` | Test organization.
691
- `OCTOKIT_TEST_GITHUB_ENTERPRISE_LOGIN` | GitHub Enterprise login name.
692
- `OCTOKIT_TEST_GITHUB_ENTERPRISE_TOKEN` | GitHub Enterprise token.
693
- `OCTOKIT_TEST_GITHUB_ENTERPRISE_MANAGEMENT_CONSOLE_PASSWORD` | GitHub Enterprise management console password.
694
- `OCTOKIT_TEST_GITHUB_ENTERPRISE_ENDPOINT` | GitHub Enterprise hostname.
695
- `OCTOKIT_TEST_GITHUB_ENTERPRISE_MANAGEMENT_CONSOLE_ENDPOINT` | GitHub Enterprise Management Console endpoint.
696
- `OCTOKIT_TEST_GITHUB_INTEGRATION` | [GitHub Integration](https://developer.github.com/early-access/integrations/) owned by your test organization.
697
- `OCTOKIT_TEST_GITHUB_INTEGRATION_INSTALLATION` | Installation of the GitHub Integration specified above.
698
- `OCTOKIT_TEST_INTEGRATION_PEM_KEY` | File path to the private key generated from your integration.
698
+ | ENV Variable | Description |
699
+ | :----------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
700
+ | `OCTOKIT_TEST_GITHUB_LOGIN` | GitHub login name (preferably one created specifically for testing against). |
701
+ | `OCTOKIT_TEST_GITHUB_PASSWORD` | Password for the test GitHub login. |
702
+ | `OCTOKIT_TEST_GITHUB_TOKEN` | [Personal Access Token](https://github.com/blog/1509-personal-api-tokens) for the test GitHub login. |
703
+ | `OCTOKIT_TEST_GITHUB_CLIENT_ID` | Test OAuth application client id. |
704
+ | `OCTOKIT_TEST_GITHUB_CLIENT_SECRET` | Test OAuth application client secret. |
705
+ | `OCTOKIT_TEST_GITHUB_REPOSITORY` | Test repository to perform destructive actions against, this should not be set to any repository of importance. **Automatically created by the test suite if nonexistent** Default: `api-sandbox` |
706
+ | `OCTOKIT_TEST_GITHUB_ORGANIZATION` | Test organization. |
707
+ | `OCTOKIT_TEST_GITHUB_ENTERPRISE_LOGIN` | GitHub Enterprise login name. |
708
+ | `OCTOKIT_TEST_GITHUB_ENTERPRISE_TOKEN` | GitHub Enterprise token. |
709
+ | `OCTOKIT_TEST_GITHUB_ENTERPRISE_MANAGEMENT_CONSOLE_PASSWORD` | GitHub Enterprise management console password. |
710
+ | `OCTOKIT_TEST_GITHUB_ENTERPRISE_ENDPOINT` | GitHub Enterprise hostname. |
711
+ | `OCTOKIT_TEST_GITHUB_ENTERPRISE_MANAGEMENT_CONSOLE_ENDPOINT` | GitHub Enterprise Management Console endpoint. |
712
+ | `OCTOKIT_TEST_GITHUB_MANAGE_GHES_ENDPOINT` | GitHub Enterprise Server GHES Manage Endpoint. |
713
+ | `OCTOKIT_TEST_GITHUB_MANAGE_GHES_USERNAME` | GitHub Enterprise Server GHES Manage Username. |
714
+ | `OCTOKIT_TEST_GITHUB_MANAGE_GHES_PASSWORD` | GitHub Enterprise Server GHES Manage Password. |
715
+ | `OCTOKIT_TEST_GITHUB_INTEGRATION` | [GitHub Integration](https://developer.github.com/early-access/integrations/) owned by your test organization. |
716
+ | `OCTOKIT_TEST_GITHUB_INTEGRATION_INSTALLATION` | Installation of the GitHub Integration specified above. |
717
+ | `OCTOKIT_TEST_INTEGRATION_PEM_KEY` | File path to the private key generated from your integration. |
699
718
 
700
719
  Since we periodically refresh our cassettes, please keep some points in mind
701
720
  when writing new specs.
702
721
 
703
- * **Specs should be idempotent**. The HTTP calls made during a spec should be
722
+ - **Specs should be idempotent**. The HTTP calls made during a spec should be
704
723
  able to be run over and over. This means deleting a known resource prior to
705
724
  creating it if the name has to be unique.
706
- * **Specs should be able to be run in random order.** If a spec depends on
725
+ - **Specs should be able to be run in random order.** If a spec depends on
707
726
  another resource as a fixture, make sure that's created in the scope of the
708
727
  spec and not depend on a previous spec to create the data needed.
709
- * **Do not depend on authenticated user info.** Instead of asserting
728
+ - **Do not depend on authenticated user info.** Instead of asserting
710
729
  actual values in resources, try to assert the existence of a key or that a
711
730
  response is an Array. We're testing the client, not the API.
712
731
 
713
732
  [bootstrapping]: http://wynnnetherland.com/linked/2013012801/bootstrapping-consistency
714
- [VCR]: https://github.com/vcr/vcr
733
+ [vcr]: https://github.com/vcr/vcr
715
734
 
716
735
  ## Supported Ruby Versions
717
736
 
718
737
  This library aims to support and is [tested against][actions] the following Ruby
719
738
  implementations:
720
739
 
721
- * Ruby 2.5
722
- * Ruby 2.6
723
740
  * Ruby 2.7
741
+ * Ruby 3.0
742
+ * Ruby 3.1
743
+ * Ruby 3.2
744
+ * Ruby 3.3
724
745
 
725
746
  If something doesn't work on one of these Ruby versions, it's a bug.
726
747
 
@@ -757,7 +778,8 @@ The changes made between versions can be seen on the [project releases page][rel
757
778
  [releases]: https://github.com/octokit/octokit.rb/releases
758
779
 
759
780
  ## Making Repeating Requests
760
- In most cases it would be best to use a [webhooks](https://developer.github.com/webhooks/), but sometimes webhooks don't provide all of the information needed. In those cases where one might need to poll for progress or retry a request on failure, we designed [Octopoller](https://github.com/octokit/octopoller.rb). Octopoller is a micro gem perfect for making repeating requests.
781
+
782
+ In most cases it would be best to use [webhooks](https://developer.github.com/webhooks/), but sometimes webhooks don't provide all of the information needed. In those cases where one might need to poll for progress or retry a request on failure, we designed [Octopoller](https://github.com/octokit/octopoller.rb). Octopoller is a micro gem perfect for making repeating requests.
761
783
 
762
784
  ```ruby
763
785
  Octopoller.poll(timeout: 15.seconds) do
data/Rakefile CHANGED
@@ -1,22 +1,28 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler'
2
4
  Bundler::GemHelper.install_tasks
3
5
 
4
- require 'rspec/core/rake_task'
5
- RSpec::Core::RakeTask.new(:spec)
6
+ task test: :spec
7
+ task default: :spec
6
8
 
7
- task :test => :spec
8
- task :default => :spec
9
+ desc 'Run RSpec'
10
+ task :spec do
11
+ if Process.respond_to?(:fork)
12
+ sh('rspec-queue')
13
+ else
14
+ sh('rspec')
15
+ end
16
+ end
9
17
 
10
18
  namespace :doc do
11
- begin
12
- require 'yard'
13
- YARD::Rake::YardocTask.new do |task|
14
- task.files = ['README.md', 'LICENSE.md', 'lib/**/*.rb']
15
- task.options = [
16
- '--output-dir', 'doc/yard',
17
- '--markup', 'markdown',
18
- ]
19
- end
20
- rescue LoadError
19
+ require 'yard'
20
+ YARD::Rake::YardocTask.new do |task|
21
+ task.files = ['README.md', 'LICENSE.md', 'lib/**/*.rb']
22
+ task.options = [
23
+ '--output-dir', 'doc/yard',
24
+ '--markup', 'markdown'
25
+ ]
21
26
  end
27
+ rescue LoadError
22
28
  end
@@ -1,9 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'sawyer'
2
4
 
3
5
  patch = Module.new do
4
- def href(options=nil)
6
+ def href(options = nil)
5
7
  # Temporary workaround for: https://github.com/octokit/octokit.rb/issues/727
6
- name.to_s == "ssh" ? @href : super
8
+ name.to_s == 'ssh' ? @href : super
7
9
  end
8
10
  end
9
11
 
@@ -1,5 +1,6 @@
1
- module Octokit
1
+ # frozen_string_literal: true
2
2
 
3
+ module Octokit
3
4
  # Extracts options from method arguments
4
5
  # @private
5
6
  class Arguments < Array
@@ -7,8 +8,7 @@ module Octokit
7
8
 
8
9
  def initialize(args)
9
10
  @options = args.last.is_a?(::Hash) ? args.pop : {}
10
- super(args)
11
+ super
11
12
  end
12
-
13
13
  end
14
14
  end
@@ -1,7 +1,15 @@
1
- module Octokit
1
+ # frozen_string_literal: true
2
2
 
3
+ module Octokit
3
4
  # Authentication methods for {Octokit::Client}
4
5
  module Authentication
6
+ # In Faraday 2.x, the authorization middleware uses new interface
7
+ FARADAY_BASIC_AUTH_KEYS =
8
+ if Gem::Version.new(Faraday::VERSION) >= Gem::Version.new('2.0')
9
+ %i[authorization basic]
10
+ else
11
+ [:basic_auth]
12
+ end
5
13
 
6
14
  # Indicates if the client was supplied Basic Auth
7
15
  # username and password
@@ -66,8 +74,7 @@ module Octokit
66
74
  self.password = creds.shift
67
75
  end
68
76
  rescue LoadError
69
- octokit_warn "Please install netrc gem for .netrc support"
77
+ octokit_warn 'Please install netrc gem for .netrc support'
70
78
  end
71
-
72
79
  end
73
80
  end