Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 740f0d5

Browse files
jamesseanwrightReno Buildbot
authored and
Reno Buildbot
committed
[Reno Buildbot] Upgrades Deno to 1.25.0 and std to 0.153.0
1 parent 65aa1e3 commit 740f0d5

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![Reno logo](https://raw.githubusercontent.com/reno-router/reno/master/logo/reno-500.png)
44

55
[![Build status](https://github.com/reno-router/reno/workflows/CI/badge.svg)](https://github.com/reno-router/reno/actions)
6-
[![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].54/reno/mod.ts)
6+
[![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].55/reno/mod.ts)
77
[![Published on Nest.land](https://nest.land/badge.svg)](https://nest.land/package/reno)
88

99
Reno is a thin routing library designed to sit on top of
@@ -21,7 +21,7 @@ Reno is a thin routing library designed to sit on top of
2121
## Overview
2222

2323
```tsx
24-
import { serve } from "https://deno.land/std@0.152.0/http/server.ts";
24+
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
2525

2626
import {
2727
AugmentedRequest,
@@ -30,10 +30,10 @@ import {
3030
jsonResponse,
3131
MissingRouteError,
3232
streamResponse,
33-
} from "https://deno.land/x/[email protected].54/reno/mod.ts";
33+
} from "https://deno.land/x/[email protected].55/reno/mod.ts";
3434

3535
/* Alternatively, you can import Reno from nest.land:
36-
* import { ... } from "https://x.nest.land/[email protected].54/reno/mod.ts";
36+
* import { ... } from "https://x.nest.land/[email protected].55/reno/mod.ts";
3737
*/
3838

3939
const PORT = 8000;
@@ -101,7 +101,7 @@ testing Reno services a breeze:
101101
import {
102102
assertResponsesAreEqual,
103103
jsonResponse,
104-
} from "https://deno.land/x/[email protected].54/reno/mod.ts";
104+
} from "https://deno.land/x/[email protected].55/reno/mod.ts";
105105
import { createRonSwansonQuoteHandler } from "./routes.ts";
106106

107107
const createFetchStub = (response: string[]) =>
@@ -196,7 +196,7 @@ import {
196196
AugmentedRequest,
197197
createRouteMap,
198198
RouteHandler,
199-
} from "https://deno.land/x/[email protected].54/reno/mod.ts";
199+
} from "https://deno.land/x/[email protected].55/reno/mod.ts";
200200

201201
import isValidAPIKey from "./api_keys.ts";
202202

@@ -261,15 +261,15 @@ Deno.test("/ should return the expected response", async () => {
261261
## Example Apps
262262

263263
As well as the
264-
[example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.54/example),
264+
[example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.55/example),
265265
which is targetted by the end-to-end test suite, there is a
266266
[standalone repository for a blog microservice](https://github.com/reno-router/blog-microservice)
267267
built with Deno, Reno, PostgreSQL, and Docker.
268268

269269
## API Documentation
270270

271271
Consult
272-
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].54/reno/mod.ts)
272+
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].55/reno/mod.ts)
273273
for comprehensive documentation on Reno's API.
274274

275275
## Local Development

README.template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Reno is a thin routing library designed to sit on top of
2121
## Overview
2222

2323
```tsx
24-
import { serve } from "https://deno.land/std@0.152.0/http/server.ts";
24+
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
2525

2626
import {
2727
AugmentedRequest,

deno_versions.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"deno": "1.24.3",
3-
"std": "0.152.0"
2+
"deno": "1.25.0",
3+
"std": "0.153.0"
44
}

deps.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Recommended as per https://deno.land/std/manual.md#linking-to-third-party-code
22

3-
export * from "https://deno.land/std@0.152.0/testing/asserts.ts";
4-
export * from "https://deno.land/std@0.152.0/io/mod.ts";
5-
export * from "https://deno.land/std@0.152.0/http/cookie.ts";
3+
export * from "https://deno.land/std@0.153.0/testing/asserts.ts";
4+
export * from "https://deno.land/std@0.153.0/io/mod.ts";
5+
export * from "https://deno.land/std@0.153.0/http/cookie.ts";
66

77
export * as sinon from "https://cdn.skypack.dev/[email protected]";

egg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "reno",
33
"description": "A thin routing library designed to sit on top of Deno's standard HTTP module",
4-
"version": "2.0.54",
4+
"version": "2.0.55",
55
"repository": "https://github.com/reno-router/reno/",
66
"stable": true,
77
"files": [

example/api/routes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { StringReader } from "https://deno.land/std@0.152.0/io/readers.ts";
1+
import { StringReader } from "https://deno.land/std@0.153.0/io/readers.ts";
22

33
import colossalData from "./colossal.ts";
44

example/server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { serve } from "https://deno.land/std@0.152.0/http/server.ts";
1+
import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
22

33
import app from "./app.ts";
44

reno/router.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export function routerCreator(
168168
* Deno's HTTP server receives a request:
169169
*
170170
* ```ts
171-
* import { serve } from "https://deno.land/std@0.152.0/http/server.ts";
171+
* import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
172172
* import { createRouter } from "https://deno.land/x/reno@<VERSION>/reno/mod.ts";
173173
* import { routes } from "./routes.ts";
174174
*

0 commit comments

Comments
 (0)