This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Reno Buildbot] Upgrades Deno to 1.34.3 and std to 0.192.0
- Loading branch information
1 parent
a45ab48
commit 3e737d1
Showing
8 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
![Reno logo](https://raw.githubusercontent.com/reno-router/reno/master/logo/reno-500.png) | ||
|
||
[![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].104/reno/mod.ts) | ||
[![Deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].105/reno/mod.ts) | ||
|
||
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). | ||
|
@@ -20,7 +20,7 @@ Reno is a thin routing library designed to sit on top of | |
## Overview | ||
|
||
```tsx | ||
import { serve } from "https://deno.land/std@0.191.0/http/server.ts"; | ||
import { serve } from "https://deno.land/std@0.192.0/http/server.ts"; | ||
|
||
import { | ||
AugmentedRequest, | ||
|
@@ -29,7 +29,7 @@ import { | |
jsonResponse, | ||
MissingRouteError, | ||
streamResponse, | ||
} from "https://deno.land/x/[email protected].104/reno/mod.ts"; | ||
} from "https://deno.land/x/[email protected].105/reno/mod.ts"; | ||
|
||
const PORT = 8000; | ||
|
||
|
@@ -96,7 +96,7 @@ testing Reno services a breeze: | |
import { | ||
assertResponsesAreEqual, | ||
jsonResponse, | ||
} from "https://deno.land/x/[email protected].104/reno/mod.ts"; | ||
} from "https://deno.land/x/[email protected].105/reno/mod.ts"; | ||
import { createRonSwansonQuoteHandler } from "./routes.ts"; | ||
|
||
const createFetchStub = (response: string[]) => | ||
|
@@ -191,7 +191,7 @@ import { | |
AugmentedRequest, | ||
createRouteMap, | ||
RouteHandler, | ||
} from "https://deno.land/x/[email protected].104/reno/mod.ts"; | ||
} from "https://deno.land/x/[email protected].105/reno/mod.ts"; | ||
|
||
import isValidAPIKey from "./api_keys.ts"; | ||
|
||
|
@@ -256,15 +256,15 @@ Deno.test("/ should return the expected response", async () => { | |
## Example Apps | ||
|
||
As well as the | ||
[example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.104/example), | ||
[example app found in this repo](https://github.com/reno-router/reno/tree/v2.0.105/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. | ||
|
||
## API Documentation | ||
|
||
Consult | ||
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].104/reno/mod.ts) | ||
[Reno's entry on the Deno Doc website](https://doc.deno.land/https/deno.land/x/[email protected].105/reno/mod.ts) | ||
for comprehensive documentation on Reno's API. | ||
|
||
## Local Development | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"deno": "1.34.2", | ||
"std": "0.191.0" | ||
"deno": "1.34.3", | ||
"std": "0.192.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// Recommended as per https://deno.land/std/manual.md#linking-to-third-party-code | ||
|
||
export * from "https://deno.land/std@0.191.0/testing/asserts.ts"; | ||
export * from "https://deno.land/std@0.191.0/io/mod.ts"; | ||
export * from "https://deno.land/std@0.191.0/http/cookie.ts"; | ||
export { readableStreamFromReader } from "https://deno.land/std@0.191.0/streams/readable_stream_from_reader.ts" | ||
export * from "https://deno.land/std@0.192.0/testing/asserts.ts"; | ||
export * from "https://deno.land/std@0.192.0/io/mod.ts"; | ||
export * from "https://deno.land/std@0.192.0/http/cookie.ts"; | ||
export { readableStreamFromReader } from "https://deno.land/std@0.192.0/streams/readable_stream_from_reader.ts" | ||
|
||
export * as sinon from "https://cdn.skypack.dev/[email protected]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"version": "2.0.104", | ||
"version": "2.0.105", | ||
"description": "This was originally an egg.json file for nest.land. Our approach for persisting the current version should be further simplified." | ||
} |