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

Commit 503f28f

Browse files
jamesseanwrightReno Buildbot
authored and
Reno Buildbot
committed
[Reno Buildbot] Upgrades Deno to 1.16.4 and std to 0.117.0
1 parent 9183022 commit 503f28f

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
@@ -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].16/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].17/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 { listenAndServe } from "https://deno.land/std@0.116.0/http/server.ts";
21+
import { listenAndServe } from "https://deno.land/std@0.117.0/http/server.ts";
2222

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

3232
/* Alternatively, you can import Reno from nest.land:
33-
* import { ... } from "https://x.nest.land/[email protected].16/reno/mod.ts";
33+
* import { ... } from "https://x.nest.land/[email protected].17/reno/mod.ts";
3434
*/
3535

3636
function createErrorResponse(status: number, { message }: Error) {
@@ -88,7 +88,7 @@ await listenAndServe(
8888
This, along with request handlers being [pure functions](https://en.wikipedia.org/wiki/Pure_function), makes unit testing Reno services a breeze:
8989

9090
```ts
91-
import { jsonResponse, assertResponsesAreEqual } from "https://deno.land/x/[email protected].16/reno/mod.ts";
91+
import { jsonResponse, assertResponsesAreEqual } from "https://deno.land/x/[email protected].17/reno/mod.ts";
9292
import { createRonSwansonQuoteHandler } from "./routes.ts";
9393

9494
const createFetchStub = (response: string[]) =>
@@ -171,7 +171,7 @@ import {
171171
AugmentedRequest,
172172
RouteHandler,
173173
createRouteMap
174-
} from "https://deno.land/x/[email protected].16/reno/mod.ts";
174+
} from "https://deno.land/x/[email protected].17/reno/mod.ts";
175175

176176
import isValidAPIKey from "./api_keys.ts";
177177

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

231231
## Example Apps
232232

233-
As well as the [example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.16/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.
233+
As well as the [example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.17/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.
234234

235235
## API Documentation
236236

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

239239
## Local Development
240240

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 { listenAndServe } from "https://deno.land/std@0.116.0/http/server.ts";
21+
import { listenAndServe } from "https://deno.land/std@0.117.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.16.3",
3-
"std": "0.116.0"
2+
"deno": "1.16.4",
3+
"std": "0.117.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.116.0/testing/asserts.ts";
4-
export * from "https://deno.land/std@0.116.0/io/mod.ts";
5-
export * from "https://deno.land/std@0.116.0/http/cookie.ts";
3+
export * from "https://deno.land/std@0.117.0/testing/asserts.ts";
4+
export * from "https://deno.land/std@0.117.0/io/mod.ts";
5+
export * from "https://deno.land/std@0.117.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.16",
4+
"version": "2.0.17",
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.116.0/io/readers.ts";
1+
import { StringReader } from "https://deno.land/std@0.117.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 { listenAndServe } from "https://deno.land/std@0.116.0/http/server.ts";
1+
import { listenAndServe } from "https://deno.land/std@0.117.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 { listenAndServe } from "https://deno.land/std@0.116.0/http/server.ts";
171+
* import { listenAndServe } from "https://deno.land/std@0.117.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)