-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39da0ff
commit 7560e2b
Showing
8 changed files
with
15 additions
and
11 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# ChangeLog | ||
|
||
## [1.1.1] - 19-09-2020 | ||
|
||
- chore: upgrade to [email protected] in CI | ||
|
||
## [1.1.0] - 19-09-2020 | ||
|
||
- feat: Support Deno 1.4.1 and std 0.70.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 |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
- uses: denolib/setup-deno@v2 | ||
with: | ||
deno-version: 1.4.1 | ||
- run: deno install -A -f --unstable -n eggs https://x.nest.land/[email protected].1/mod.ts | ||
- run: deno install -A -f --unstable -n eggs https://x.nest.land/[email protected].2/mod.ts | ||
- run: | | ||
export PATH="/home/runner/.deno/bin:$PATH" | ||
eggs link ${NEST_LAND_KEY} | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ Proxy middleware for Deno Oak HTTP servers. | |
![GitHub stars](https://img.shields.io/github/stars/asos-craigmorten/oak-http-proxy) ![GitHub forks](https://img.shields.io/github/forks/asos-craigmorten/oak-http-proxy) ![oak-http-proxy License](https://img.shields.io/github/license/asos-craigmorten/oak-http-proxy) [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/asos-craigmorten/oak-http-proxy/graphs/commit-activity) [![HitCount](http://hits.dwyl.com/asos-craigmorten/oak-http-proxy.svg)](http://hits.dwyl.com/asos-craigmorten/oak-http-proxy) | ||
|
||
```ts | ||
import { proxy } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { proxy } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
import { Application } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
const app = new Application(); | ||
|
@@ -25,13 +25,13 @@ Before importing, [download and install Deno](https://deno.land/#installation). | |
You can then import oak-http-proxy straight into your project: | ||
|
||
```ts | ||
import { proxy } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { proxy } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
``` | ||
|
||
oak-http-proxy is also available on [nest.land](https://nest.land/package/oak-http-proxy), a package registry for Deno on the Blockchain. | ||
|
||
```ts | ||
import { proxy } from "https://x.nest.land/[email protected].0/mod.ts"; | ||
import { proxy } from "https://x.nest.land/[email protected].1/mod.ts"; | ||
``` | ||
|
||
## Docs | ||
|
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 |
---|---|---|
|
@@ -68,7 +68,7 @@ <h1>oak-http-proxy</h1> | |
<p>Proxy middleware for Deno Oak HTTP servers.</p> | ||
<p><a href="https://github.com/asos-craigmorten/oak-http-proxy/tags/"><img src="https://img.shields.io/github/tag/asos-craigmorten/oak-http-proxy" alt="GitHub tag"></a> <img src="https://github.com/asos-craigmorten/oak-http-proxy/workflows/Test/badge.svg" alt="Test"> <a href="https://doc.deno.land/https/deno.land/x/oak_http_proxy/mod.ts"><img src="https://doc.deno.land/badge.svg" alt="deno doc"></a> <a href="http://makeapullrequest.com"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome"></a> <a href="https://img.shields.io/github/issues/asos-craigmorten/oak-http-proxy"><img src="https://img.shields.io/github/issues/asos-craigmorten/oak-http-proxy" alt="GitHub issues"></a> | ||
<img src="https://img.shields.io/github/stars/asos-craigmorten/oak-http-proxy" alt="GitHub stars"> <img src="https://img.shields.io/github/forks/asos-craigmorten/oak-http-proxy" alt="GitHub forks"> <img src="https://img.shields.io/github/license/asos-craigmorten/oak-http-proxy" alt="oak-http-proxy License"> <a href="https://GitHub.com/asos-craigmorten/oak-http-proxy/graphs/commit-activity"><img src="https://img.shields.io/badge/Maintained%3F-yes-green.svg" alt="Maintenance"></a> <a href="http://hits.dwyl.com/asos-craigmorten/oak-http-proxy"><img src="http://hits.dwyl.com/asos-craigmorten/oak-http-proxy.svg" alt="HitCount"></a></p> | ||
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">"https://deno.land/x/[email protected].0/mod.ts"</span>; | ||
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">"https://deno.land/x/[email protected].1/mod.ts"</span>; | ||
<span class="hljs-keyword">import</span> { Application } <span class="hljs-keyword">from</span> <span class="hljs-string">"https://deno.land/x/[email protected]/mod.ts"</span>; | ||
|
||
<span class="hljs-keyword">const</span> app = <span class="hljs-keyword">new</span> Application(); | ||
|
@@ -82,9 +82,9 @@ <h2>Installation</h2> | |
<p>This is a <a href="https://deno.land/">Deno</a> module available to import direct from this repo and via the <a href="https://deno.land/x">Deno Registry</a>.</p> | ||
<p>Before importing, <a href="https://deno.land/#installation">download and install Deno</a>.</p> | ||
<p>You can then import oak-http-proxy straight into your project:</p> | ||
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">"https://deno.land/x/[email protected].0/mod.ts"</span>;</code></pre> | ||
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">"https://deno.land/x/[email protected].1/mod.ts"</span>;</code></pre> | ||
<p>oak-http-proxy is also available on <a href="https://nest.land/package/oak-http-proxy">nest.land</a>, a package registry for Deno on the Blockchain.</p> | ||
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">"https://x.nest.land/[email protected].0/mod.ts"</span>;</code></pre> | ||
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">"https://x.nest.land/[email protected].1/mod.ts"</span>;</code></pre> | ||
<a href="#docs" id="docs" style="color: inherit; text-decoration: none;"> | ||
<h2>Docs</h2> | ||
</a> | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ deno run --allow-net --allow-read ./examples/proxy/index.ts | |
if have the repo cloned locally _OR_ | ||
|
||
```bash | ||
deno run --allow-net --allow-read https://deno.land/x/[email protected].0/examples/basic/index.ts | ||
deno run --allow-net --allow-read https://deno.land/x/[email protected].1/examples/basic/index.ts | ||
``` | ||
|
||
if you don't! |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* if have the repo cloned locally OR | ||
* | ||
* deno run --allow-net https://deno.land/x/[email protected].0/examples/basic/index.ts | ||
* deno run --allow-net https://deno.land/x/[email protected].1/examples/basic/index.ts | ||
* | ||
* if you don't! | ||
* | ||
|
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