Skip to content

Commit 8936c23

Browse files
authored
Update dependencies (#35)
* Update dependencies * Bump version
1 parent ec74bc6 commit 8936c23

File tree

7 files changed

+26
-27
lines changed

7 files changed

+26
-27
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OAuth2 Server
22

3-
[![version](https://img.shields.io/badge/release-0.11.0-success)](https://deno.land/x/oauth2_server@0.11.0)
4-
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.0/authorization_server.ts)
3+
[![version](https://img.shields.io/badge/release-0.11.1-success)](https://deno.land/x/oauth2_server@0.11.1)
4+
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.1/authorization_server.ts)
55
[![CI](https://github.com/udibo/oauth2_server/workflows/CI/badge.svg)](https://github.com/udibo/oauth2_server/actions?query=workflow%3ACI)
66
[![codecov](https://codecov.io/gh/udibo/oauth2_server/branch/main/graph/badge.svg?token=8Q7TSUFWUY)](https://codecov.io/gh/udibo/oauth2_server)
77
[![license](https://img.shields.io/github/license/udibo/oauth2_server)](https://github.com/udibo/oauth2_server/blob/master/LICENSE)
@@ -44,19 +44,19 @@ also acting as an authorization server.
4444

4545
```ts
4646
// Import from Deno's third party module registry
47-
import { ResourceServer } from "https://deno.land/x/oauth2_server@0.11.0/resource_server.ts";
47+
import { ResourceServer } from "https://deno.land/x/oauth2_server@0.11.1/resource_server.ts";
4848
// Import from GitHub
49-
import { ResourceServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.11.0/resource_server.ts";
49+
import { ResourceServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.11.1/resource_server.ts";
5050
```
5151

5252
The AuthorizationServer is an extension of the ResourceServer, adding methods
5353
used by the authorize and token endpoints.
5454

5555
```ts
5656
// Import from Deno's third party module registry
57-
import { AuthorizationServer } from "https://deno.land/x/oauth2_server@0.11.0/authorization_server.ts";
57+
import { AuthorizationServer } from "https://deno.land/x/oauth2_server@0.11.1/authorization_server.ts";
5858
// Import from GitHub
59-
import { AuthorizationServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.11.0/authorization_server.ts";
59+
import { AuthorizationServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.11.1/authorization_server.ts";
6060
```
6161

6262
## Usage
@@ -66,7 +66,7 @@ An example of how to use this module can be found
6666
but it should give you an idea of how to use this module.
6767

6868
See
69-
[deno docs](https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.0/authorization_server.ts)
69+
[deno docs](https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.1/authorization_server.ts)
7070
for more information.
7171

7272
### Grants

adapters/oak/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ also acting as an authorization server.
2020

2121
```ts
2222
// Import from Deno's third party module registry
23-
import { OakResourceServer } from "https://deno.land/x/oauth2_server@0.11.0/adapters/oak/resource_server.ts";
23+
import { OakResourceServer } from "https://deno.land/x/oauth2_server@0.11.1/adapters/oak/resource_server.ts";
2424
// Import from GitHub
25-
import { OakResourceServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.11.0/adapters/oak/resource_server.ts";
25+
import { OakResourceServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.11.1/adapters/oak/resource_server.ts";
2626
```
2727

2828
The AuthorizationServer is an extension of the ResourceServer, adding methods
2929
used by the authorize and token endpoints.
3030

3131
```ts
3232
// Import from Deno's third party module registry
33-
import { OakAuthorizationServer } from "https://deno.land/x/oauth2_server@0.11.0/adapters/oak/authorization_server.ts";
33+
import { OakAuthorizationServer } from "https://deno.land/x/oauth2_server@0.11.1/adapters/oak/authorization_server.ts";
3434
// Import from GitHub
35-
import { OakAuthorizationServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.11.0/adapters/oak/authorization_server.ts";
35+
import { OakAuthorizationServer } from "https://raw.githubusercontent.com/udibo/oauth2_server/0.11.1/adapters/oak/authorization_server.ts";
3636
```
3737

3838
## Usage
@@ -42,5 +42,5 @@ An example of how to use this adapter module can be found
4242
but it should give you an idea of how to use this module.
4343

4444
See
45-
[deno docs](https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.0/adapters/oak/authorization_server.ts)
45+
[deno docs](https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.1/adapters/oak/authorization_server.ts)
4646
for more information.

adapters/oak/deps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ export {
33
Cookies,
44
Request,
55
Response,
6-
} from "https://deno.land/x/oak@v10.0.0/mod.ts";
6+
} from "https://deno.land/x/oak@v10.1.0/mod.ts";
77
export type {
88
BodyForm,
99
Middleware,
10-
} from "https://deno.land/x/oak@v10.0.0/mod.ts";
10+
} from "https://deno.land/x/oak@v10.1.0/mod.ts";

deps.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export {
22
decode as decodeBase64url,
33
encode as encodeBase64url,
4-
} from "https://deno.land/std@0.115.1/encoding/base64url.ts";
4+
} from "https://deno.land/std@0.120.0/encoding/base64url.ts";
55
export {
66
encode as encodeHex,
7-
} from "https://deno.land/std@0.115.1/encoding/hex.ts";
8-
export { resolve } from "https://deno.land/std@0.115.1/path/mod.ts";
7+
} from "https://deno.land/std@0.120.0/encoding/hex.ts";
8+
export { resolve } from "https://deno.land/std@0.120.0/path/mod.ts";
99
export {
1010
HttpError,
1111
isHttpError,

examples/oak-localstorage/deps.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ export {
44
Cookies,
55
Response,
66
Router,
7-
} from "https://deno.land/x/oak@v10.0.0/mod.ts";
8-
export type { BodyForm } from "https://deno.land/x/oak@v10.0.0/mod.ts";
7+
} from "https://deno.land/x/oak@v10.1.0/mod.ts";
8+
export type { BodyForm } from "https://deno.land/x/oak@v10.1.0/mod.ts";
99

1010
export {
1111
encode as encodeBase64,
12-
} from "https://deno.land/std@0.115.1/encoding/base64.ts";
12+
} from "https://deno.land/std@0.120.0/encoding/base64.ts";
1313

1414
export {
1515
AbstractAccessTokenService,

resource_server.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {
33
OAuth2AuthenticatedRequest,
44
OAuth2Request,
55
OAuth2Response,
6-
TokenBody,
76
} from "./context.ts";
87
import {
98
AccessDeniedError,

test_deps.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ export {
88
assertRejects,
99
assertStrictEquals,
1010
assertThrows,
11-
} from "https://deno.land/std@0.115.1/testing/asserts.ts";
12-
export { delay } from "https://deno.land/std@0.115.1/async/delay.ts";
13-
export { v4 } from "https://deno.land/std@0.115.1/uuid/mod.ts";
11+
} from "https://deno.land/std@0.120.0/testing/asserts.ts";
12+
export { delay } from "https://deno.land/std@0.120.0/async/delay.ts";
13+
export { v4 } from "https://deno.land/std@0.120.0/uuid/mod.ts";
1414

1515
export {
1616
assertSpyCall,
@@ -19,11 +19,11 @@ export {
1919
FakeTime,
2020
spy,
2121
stub,
22-
} from "https://deno.land/x/mock@0.12.0/mod.ts";
22+
} from "https://deno.land/x/mock@0.12.2/mod.ts";
2323
export type {
2424
Spy,
2525
SpyCall,
2626
Stub,
27-
} from "https://deno.land/x/mock@0.12.0/mod.ts";
27+
} from "https://deno.land/x/mock@0.12.2/mod.ts";
2828

29-
export { test, TestSuite } from "https://deno.land/x/test_suite@0.9.1/mod.ts";
29+
export { test, TestSuite } from "https://deno.land/x/test_suite@0.9.5/mod.ts";

0 commit comments

Comments
 (0)