Skip to content

Commit dbec0b9

Browse files
committed
feat: 1.4.1
1 parent 6d9a444 commit dbec0b9

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

.github/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog
22

3+
## [1.4.1] - 13-07-2021
4+
5+
- fix: filterReq crashes send middleware (#3)
6+
37
## [1.4.0] - 13-07-2021
48

59
- feat: Support Deno `1.12.0` and std `0.101.0`

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Proxy middleware for Deno Oak HTTP servers.
1313
</p>
1414

1515
```ts
16-
import { proxy } from "https://deno.land/x/[email protected].0/mod.ts";
16+
import { proxy } from "https://deno.land/x/[email protected].1/mod.ts";
1717
import { Application } from "https://deno.land/x/[email protected]/mod.ts";
1818

1919
const app = new Application();
@@ -32,13 +32,13 @@ Before importing, [download and install Deno](https://deno.land/#installation).
3232
You can then import oak-http-proxy straight into your project:
3333

3434
```ts
35-
import { proxy } from "https://deno.land/x/[email protected].0/mod.ts";
35+
import { proxy } from "https://deno.land/x/[email protected].1/mod.ts";
3636
```
3737

3838
oak-http-proxy is also available on [nest.land](https://nest.land/package/oak-http-proxy), a package registry for Deno on the Blockchain.
3939

4040
```ts
41-
import { proxy } from "https://x.nest.land/[email protected].0/mod.ts";
41+
import { proxy } from "https://x.nest.land/[email protected].1/mod.ts";
4242
```
4343

4444
## Docs

docs/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ <h1>oak-http-proxy</h1>
7474
<a href="https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/oak_http_proxy/mod.ts"><img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fupdates%2Fx%2Foak_http_proxy%2Fmod.ts" alt="oak-http-proxy dependency outdatedness" /></a>
7575
<a href="https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/oak_http_proxy/mod.ts"><img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fcache-size%2Fx%2Foak_http_proxy%2Fmod.ts" alt="oak-http-proxy cached size" /></a>
7676
</p>
77-
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected].0/mod.ts&quot;</span>;
77+
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected].1/mod.ts&quot;</span>;
7878
<span class="hljs-keyword">import</span> { Application } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected]/mod.ts&quot;</span>;
7979

8080
<span class="hljs-keyword">const</span> app = <span class="hljs-keyword">new</span> Application();
@@ -89,10 +89,10 @@ <h2>Installation</h2>
8989
<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>
9090
<p>Before importing, <a href="https://deno.land/#installation">download and install Deno</a>.</p>
9191
<p>You can then import oak-http-proxy straight into your project:</p>
92-
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected].0/mod.ts&quot;</span>;
92+
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected].1/mod.ts&quot;</span>;
9393
</code></pre>
9494
<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>
95-
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://x.nest.land/[email protected].0/mod.ts&quot;</span>;
95+
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://x.nest.land/[email protected].1/mod.ts&quot;</span>;
9696
</code></pre>
9797
<a href="#docs" id="docs" style="color: inherit; text-decoration: none;">
9898
<h2>Docs</h2>

egg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "oak-http-proxy",
33
"description": "Proxy middleware for Deno Oak HTTP servers.",
4-
"version": "1.4.0",
4+
"version": "1.4.1",
55
"repository": "https://github.com/asos-craigmorten/oak-http-proxy",
66
"stable": true,
77
"files": [

examples/basic/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ deno run --allow-net --allow-read ./examples/proxy/index.ts
1313
if have the repo cloned locally _OR_
1414

1515
```bash
16-
deno run --allow-net --allow-read https://deno.land/x/[email protected].0/examples/basic/index.ts
16+
deno run --allow-net --allow-read https://deno.land/x/[email protected].1/examples/basic/index.ts
1717
```
1818

1919
if you don't!

examples/basic/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* if have the repo cloned locally OR
77
*
8-
* deno run --allow-net https://deno.land/x/[email protected].0/examples/basic/index.ts
8+
* deno run --allow-net https://deno.land/x/[email protected].1/examples/basic/index.ts
99
*
1010
* if you don't!
1111
*

version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Version of oak-http-proxy.
33
*/
4-
export const VERSION: string = "1.4.0";
4+
export const VERSION: string = "1.4.1";
55

66
/**
77
* Supported versions of Deno.

0 commit comments

Comments
 (0)