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

Commit 87fa2ce

Browse files
[Reno Buildbot] Upgrades Deno to 1.33.4 and std to 0.188.0 (#116)
Co-authored-by: jamesseanwright <[email protected]>
1 parent 5c97740 commit 87fa2ce

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

README.md

+7-7
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].97/reno/mod.ts)
6+
[![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].98/reno/mod.ts)
77

88
Reno is a thin routing library designed to sit on top of
99
[Deno](https://deno.land/)'s [standard HTTP module](https://deno.land/std/http).
@@ -20,7 +20,7 @@ Reno is a thin routing library designed to sit on top of
2020
## Overview
2121

2222
```tsx
23-
import { serve } from "https://deno.land/std@0.187.0/http/server.ts";
23+
import { serve } from "https://deno.land/std@0.188.0/http/server.ts";
2424

2525
import {
2626
AugmentedRequest,
@@ -29,7 +29,7 @@ import {
2929
jsonResponse,
3030
MissingRouteError,
3131
streamResponse,
32-
} from "https://deno.land/x/[email protected].97/reno/mod.ts";
32+
} from "https://deno.land/x/[email protected].98/reno/mod.ts";
3333

3434
const PORT = 8000;
3535

@@ -96,7 +96,7 @@ testing Reno services a breeze:
9696
import {
9797
assertResponsesAreEqual,
9898
jsonResponse,
99-
} from "https://deno.land/x/[email protected].97/reno/mod.ts";
99+
} from "https://deno.land/x/[email protected].98/reno/mod.ts";
100100
import { createRonSwansonQuoteHandler } from "./routes.ts";
101101

102102
const createFetchStub = (response: string[]) =>
@@ -191,7 +191,7 @@ import {
191191
AugmentedRequest,
192192
createRouteMap,
193193
RouteHandler,
194-
} from "https://deno.land/x/[email protected].97/reno/mod.ts";
194+
} from "https://deno.land/x/[email protected].98/reno/mod.ts";
195195

196196
import isValidAPIKey from "./api_keys.ts";
197197

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

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

264264
## API Documentation
265265

266266
Consult
267-
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].97/reno/mod.ts)
267+
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].98/reno/mod.ts)
268268
for comprehensive documentation on Reno's API.
269269

270270
## Local Development

README.template.md

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

2222
```tsx
23-
import { serve } from "https://deno.land/std@0.187.0/http/server.ts";
23+
import { serve } from "https://deno.land/std@0.188.0/http/server.ts";
2424

2525
import {
2626
AugmentedRequest,

deno_versions.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"deno": "1.33.3",
3-
"std": "0.187.0"
2+
"deno": "1.33.4",
3+
"std": "0.188.0"
44
}

deps.ts

+4-4
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.187.0/testing/asserts.ts";
4-
export * from "https://deno.land/std@0.187.0/io/mod.ts";
5-
export * from "https://deno.land/std@0.187.0/http/cookie.ts";
6-
export { readableStreamFromReader } from "https://deno.land/std@0.187.0/streams/readable_stream_from_reader.ts"
3+
export * from "https://deno.land/std@0.188.0/testing/asserts.ts";
4+
export * from "https://deno.land/std@0.188.0/io/mod.ts";
5+
export * from "https://deno.land/std@0.188.0/http/cookie.ts";
6+
export { readableStreamFromReader } from "https://deno.land/std@0.188.0/streams/readable_stream_from_reader.ts"
77

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

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.187.0/io/string_reader.ts";
1+
import { StringReader } from "https://deno.land/std@0.188.0/io/string_reader.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.187.0/http/server.ts";
1+
import { serve } from "https://deno.land/std@0.188.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.187.0/http/server.ts";
171+
* import { serve } from "https://deno.land/std@0.188.0/http/server.ts";
172172
* import { createRouter } from "https://deno.land/x/reno@<VERSION>/reno/mod.ts";
173173
* import { routes } from "./routes.ts";
174174
*

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.0.97",
2+
"version": "2.0.98",
33
"description": "This was originally an egg.json file for nest.land. Our approach for persisting the current version should be further simplified."
44
}

0 commit comments

Comments
 (0)