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

Commit d6bbc98

Browse files
jamesseanwrightReno Buildbot
authored and
Reno Buildbot
committed
[Reno Buildbot] Upgrades Deno to 1.17.1 and std to 0.119.0
1 parent de979ab commit d6bbc98

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Reno logo](https://raw.githubusercontent.com/reno-router/reno/master/logo/reno-500.png)
44

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

77
Reno is a thin routing library designed to sit on top of [Deno](https://deno.land/)'s [standard HTTP module](https://deno.land/std/http).
88

@@ -18,7 +18,7 @@ Reno is a thin routing library designed to sit on top of [Deno](https://deno.lan
1818
## Overview
1919

2020
```tsx
21-
import { serve } from "https://deno.land/std@0.118.0/http/server.ts";
21+
import { serve } from "https://deno.land/std@0.119.0/http/server.ts";
2222

2323
import {
2424
AugmentedRequest,
@@ -27,7 +27,7 @@ import {
2727
jsonResponse,
2828
MissingRouteError,
2929
streamResponse,
30-
} from "https://deno.land/x/[email protected].19/reno/mod.ts";
30+
} from "https://deno.land/x/[email protected].20/reno/mod.ts";
3131

3232
/* Alternatively, you can import Reno from nest.land:
3333
* import { ... } from "https://x.nest.land/[email protected]/reno/mod.ts";
@@ -93,7 +93,7 @@ await serve(
9393
This, along with request handlers being [pure functions](https://en.wikipedia.org/wiki/Pure_function), makes unit testing Reno services a breeze:
9494

9595
```ts
96-
import { jsonResponse, assertResponsesAreEqual } from "https://deno.land/x/[email protected].19/reno/mod.ts";
96+
import { jsonResponse, assertResponsesAreEqual } from "https://deno.land/x/[email protected].20/reno/mod.ts";
9797
import { createRonSwansonQuoteHandler } from "./routes.ts";
9898

9999
const createFetchStub = (response: string[]) =>
@@ -176,7 +176,7 @@ import {
176176
AugmentedRequest,
177177
RouteHandler,
178178
createRouteMap
179-
} from "https://deno.land/x/[email protected].19/reno/mod.ts";
179+
} from "https://deno.land/x/[email protected].20/reno/mod.ts";
180180

181181
import isValidAPIKey from "./api_keys.ts";
182182

@@ -235,11 +235,11 @@ Deno.test("/ should return the expected response", async () => {
235235

236236
## Example Apps
237237

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

240240
## API Documentation
241241

242-
Consult [Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].19/reno/mod.ts) for comprehensive documentation on Reno's API.
242+
Consult [Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].20/reno/mod.ts) for comprehensive documentation on Reno's API.
243243

244244
## Local Development
245245

README.template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Reno is a thin routing library designed to sit on top of [Deno](https://deno.lan
1818
## Overview
1919

2020
```tsx
21-
import { serve } from "https://deno.land/std@0.118.0/http/server.ts";
21+
import { serve } from "https://deno.land/std@0.119.0/http/server.ts";
2222

2323
import {
2424
AugmentedRequest,

deno_versions.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"deno": "1.17.0",
3-
"std": "0.118.0"
2+
"deno": "1.17.1",
3+
"std": "0.119.0"
44
}

deps.ts

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

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

77
import __jsTestDouble from "https://dev.jspm.io/[email protected]";
88
import * as TestDouble from "https://raw.githubusercontent.com/testdouble/testdouble.js/ecd90efe4649b287c33831a7b94a8a5eb96b8ed0/index.d.ts";

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.19",
4+
"version": "2.0.20",
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.118.0/io/readers.ts";
1+
import { StringReader } from "https://deno.land/std@0.119.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.118.0/http/server.ts";
1+
import { serve } from "https://deno.land/std@0.119.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.118.0/http/server.ts";
171+
* import { serve } from "https://deno.land/std@0.119.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)