Skip to content

Commit 12b6c65

Browse files
authoredJun 20, 2024··
feat: v21 (#413)
BREAKING CHANGE: package is now ESM
1 parent 32649a8 commit 12b6c65

37 files changed

+3149
-9782
lines changed
 

‎README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,19 @@ Node
2828
Install with <code>npm install @octokit/rest</code>
2929

3030
```js
31-
const { Octokit } = require("@octokit/rest");
32-
// or: import { Octokit } from "@octokit/rest";
31+
import { Octokit } from "@octokit/rest";
3332
```
3433

3534
</td></tr>
3635
</tbody>
3736
</table>
3837

38+
> [!IMPORTANT]
39+
> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json` by setting `"moduleResolution": "node16", "module": "node16"`.
40+
>
41+
> See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).<br>
42+
> See this [helpful guide on transitioning to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) from [@sindresorhus](https://github.com/sindresorhus)
43+
3944
```js
4045
const octokit = new Octokit();
4146

@@ -52,6 +57,12 @@ octokit.rest.repos
5257

5358
See https://octokit.github.io/rest.js for full documentation.
5459

60+
> [!IMPORTANT]
61+
> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json` by setting `"moduleResolution": "node16", "module": "node16"`.
62+
>
63+
> See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).<br>
64+
> See this [helpful guide on transitioning to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) from [@sindresorhus](https://github.com/sindresorhus)
65+
5566
## Contributing
5667

5768
We would love you to contribute to `@octokit/rest`, pull requests are very welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for more information.

‎docs/src/pages/api/00_usage.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,14 @@ Load <code>@octokit/rest</code> directly from <a href="https://esm.sh">esm.sh</a
2424
Install with <code>npm install @octokit/rest</code>
2525

2626
```js
27-
const { Octokit } = require("@octokit/rest");
28-
// or: import { Octokit } from "@octokit/rest";
27+
import { Octokit } from "@octokit/rest";
2928
```
3029

3130
</div>
3231
<hr />
3332

3433
```js
35-
const { Octokit } = require("@octokit/rest");
34+
import { Octokit } from "@octokit/rest";
3635
```
3736

3837
Now instantiate your octokit API. All options are optional, but authentication is strongly encouraged.

‎docs/src/pages/api/01_authentication.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Learn more about all official and community [authentication strategies](https://
1616
By default, `@octokit/rest` authenticates using the [token authentication strategy](https://github.com/octokit/auth-token.js). Pass in a token using `options.auth`. It can be a personal access token, an OAuth token, an installation access token or a JSON Web Token for GitHub App authentication. The `Authorization` request header will be set according to the type of token.
1717

1818
```js
19-
const { Octokit } = require("@octokit/rest");
19+
import { Octokit } from "@octokit/rest";
2020

2121
const octokit = new Octokit({
2222
auth: "mypersonalaccesstoken123",
@@ -30,8 +30,8 @@ To use a different authentication strategy, set `options.authStrategy`.
3030
Here is an example for GitHub App authentication
3131

3232
```js
33-
const { Octokit } = require("@octokit/rest");
34-
const { createAppAuth } = require("@octokit/auth-app");
33+
import { Octokit } from "@octokit/rest";
34+
import { createAppAuth } from "@octokit/auth-app";
3535

3636
const appOctokit = new Octokit({
3737
authStrategy: createAppAuth,

‎docs/src/pages/api/02_previews.md

-26
This file was deleted.

‎docs/src/pages/api/03_request_formats.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const { data: prDiff } = await octokit.rest.pulls.get({
1717
});
1818
```
1919

20-
The [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) interface can be used to abort one or more requests as and when desired. When the request is initiated, an [AbortSignal](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) instance can be passed as an option inside the request's options object. For usage in Node, the [`abort-controller`](https://github.com/mysticatea/abort-controller) package can be used.
20+
The [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) interface can be used to abort one or more requests as and when desired. When the request is initiated, an [AbortSignal](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) instance can be passed as an option inside the request's options object.
2121

2222
```js
2323
const controller = new AbortController();

‎docs/src/pages/api/07_custom_endpoints.md

+19-61
Original file line numberDiff line numberDiff line change
@@ -2,71 +2,29 @@
22
title: "Custom endpoint methods"
33
---
44

5-
**Note**: `octokit.registerEndpoints()` has been deprecated.
6-
7-
Instead of
5+
You can register custom endpoint methods such as `octokit.rest.repos.get()` by extending the octokit object
86

97
```js
10-
await octokit.registerEndpoints({
11-
misc: {
12-
getRoot: {
13-
method: "GET",
14-
url: "/",
8+
Object.assign(octokit.foo, {
9+
bar: {
10+
method: "PATCH",
11+
url: "/repos/{owner}/{repo}/foo",
12+
headers: {
13+
accept: "application/vnd.github.foo-bar-preview+json",
1514
},
16-
},
17-
});
18-
```
19-
20-
do
21-
22-
```js
23-
Object.assign(octokit.misc, {
24-
getRoot: octokit.request.defaults({
25-
method: "GET",
26-
url: "/",
27-
}),
28-
});
29-
```
30-
31-
If you use `octokit.registerEndpoints()` in a plugin, return an object instead:
32-
33-
```js
34-
function myPlugin(octokit, options) {
35-
return {
36-
misc: {
37-
octokit.request.defaults({ method: "GET", url: "/" })
38-
}
39-
}
40-
}
41-
```
42-
43-
---
44-
45-
You can register custom endpoint methods such as `octokit.rest.repos.get()` using the `octokit.registerEndpoints(routes)` method
46-
47-
```js
48-
octokit.registerEndpoints({
49-
foo: {
50-
bar: {
51-
method: "PATCH",
52-
url: "/repos/{owner}/{repo}/foo",
53-
headers: {
54-
accept: "application/vnd.github.foo-bar-preview+json",
15+
params: {
16+
owner: {
17+
required: true,
18+
type: "string",
19+
},
20+
repo: {
21+
required: true,
22+
type: "string",
5523
},
56-
params: {
57-
owner: {
58-
required: true,
59-
type: "string",
60-
},
61-
repo: {
62-
required: true,
63-
type: "string",
64-
},
65-
baz: {
66-
required: true,
67-
type: "string",
68-
enum: ["qux", "quux", "quuz"],
69-
},
24+
baz: {
25+
required: true,
26+
type: "string",
27+
enum: ["qux", "quux", "quuz"],
7028
},
7129
},
7230
},

‎docs/src/pages/api/08_plugins.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ You can customize and extend Octokit’s functionality using plugins
66

77
```js
88
// index.js
9-
const { Octokit } = require("@octokit/rest");
10-
const MyOctokit = Octokit.plugin(
11-
require("./lib/my-plugin"),
12-
require("octokit-plugin-example"),
13-
);
9+
import { Octokit } from "@octokit/rest";
10+
import myPlugin from "./lib/my-plugin.js";
11+
import octokitPluginExample from "octokit-plugin-example";
12+
13+
const MyOctokit = Octokit.plugin(myPlugin, octokitPluginExample);
1414

1515
// lib/my-plugin.js
16-
module.exports = (octokit, options = { greeting: "Hello" }) => {
16+
const plugin = (octokit, options = { greeting: "Hello" }) => {
1717
// hook into the request lifecycle
1818
octokit.hook.wrap("request", async (request, options) => {
1919
const time = Date.now();
@@ -31,6 +31,7 @@ module.exports = (octokit, options = { greeting: "Hello" }) => {
3131
helloWorld: () => console.log(`${options.greeting}, world!`),
3232
};
3333
};
34+
export default plugin;
3435
```
3536

3637
`.plugin` accepts a function or an array of functions.

‎docs/src/pages/api/09_throttling.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ The `throttle.onSecondaryRateLimit` and `throttle.onRateLimit` options are requi
1111
Return `true` from these functions to automatically retry the request after `retryAfter` seconds. Return `false` or `undefined` to skip retry and throw the error. For rate limit errors, `retryAfter` defaults to seconds until `X-RateLimit-Reset`. For abuse errors, `retryAfter` defaults to the `retry-after` header but is a minimum of five seconds.
1212

1313
```js
14-
const { Octokit } = require("@octokit/rest");
15-
const { throttling } = require("@octokit/plugin-throttling");
14+
import { Octokit } from "@octokit/rest";
15+
import { throttling } from "@octokit/plugin-throttling";
1616
const MyOctokit = Octokit.plugin(throttling);
1717

1818
const octokit = new MyOctokit({

‎docs/src/pages/api/10_retries.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ title: "Automatic retries"
55
Many common request errors can be easily remediated by retrying the request. We recommend installing the [`@octokit/plugin-retry` plugin](https://github.com/octokit/plugin-retry.js) for Automatic retries in these cases
66

77
```js
8-
const { Octokit } = require("@octokit/rest");
9-
const { retry } = require("@octokit/plugin-retry");
8+
import { Octokit } from "@octokit/rest";
9+
import { retry } from "@octokit/plugin-retry";
1010
const MyOctokit = Octokit.plugin(retry);
1111

1212
const octokit = new MyOctokit();

‎docs/src/pages/api/12_debug.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ title: "Debug"
55
The simplest way to receive debug information is to set the `log` client option to `console`.
66

77
```js
8-
const octokit = require("@octokit/rest")({
8+
import { Octokit } from "@octokit/rest";
9+
const octokit = new Octokit({
910
log: console,
1011
});
1112

@@ -29,8 +30,10 @@ GET / - 200 in 514ms
2930
If you like to support a configurable log level, we recommend using the [console-log-level](https://github.com/watson/console-log-level) module
3031

3132
```js
32-
const octokit = require("@octokit/rest")({
33-
log: require("console-log-level")({ level: "info" }),
33+
import { Octokit } from "@octokit/rest";
34+
import consoleLogLevel from "console-log-level";
35+
const octokit = new Octokit({
36+
log: consoleLogLevel({ level: "info" }),
3437
});
3538

3639
octokit.request("/");

‎greenkeeper.json

-7
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.