diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 718c003..e56568e 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,5 +1,9 @@ # ChangeLog +## [1.4.1] - 13-07-2021 + +- fix: filterReq crashes send middleware (#3) + ## [1.4.0] - 13-07-2021 - feat: Support Deno `1.12.0` and std `0.101.0` diff --git a/README.md b/README.md index 1feec3e..e3b5ea9 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Proxy middleware for Deno Oak HTTP servers.

```ts -import { proxy } from "https://deno.land/x/oak_http_proxy@1.4.0/mod.ts"; +import { proxy } from "https://deno.land/x/oak_http_proxy@1.4.1/mod.ts"; import { Application } from "https://deno.land/x/oak@v6.5.0/mod.ts"; const app = new Application(); @@ -32,13 +32,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/oak_http_proxy@1.4.0/mod.ts"; +import { proxy } from "https://deno.land/x/oak_http_proxy@1.4.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/oak-http-proxy@1.4.0/mod.ts"; +import { proxy } from "https://x.nest.land/oak-http-proxy@1.4.1/mod.ts"; ``` ## Docs diff --git a/docs/index.html b/docs/index.html index 58e370b..6689d9d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -74,7 +74,7 @@

oak-http-proxy

oak-http-proxy dependency outdatedness oak-http-proxy cached size

-
import { proxy } from "https://deno.land/x/oak_http_proxy@1.4.0/mod.ts";
+				
import { proxy } from "https://deno.land/x/oak_http_proxy@1.4.1/mod.ts";
 import { Application } from "https://deno.land/x/oak@v6.5.0/mod.ts";
 
 const app = new Application();
@@ -89,10 +89,10 @@ 

Installation

This is a Deno module available to import direct from this repo and via the Deno Registry.

Before importing, download and install Deno.

You can then import oak-http-proxy straight into your project:

-
import { proxy } from "https://deno.land/x/oak_http_proxy@1.4.0/mod.ts";
+				
import { proxy } from "https://deno.land/x/oak_http_proxy@1.4.1/mod.ts";
 

oak-http-proxy is also available on nest.land, a package registry for Deno on the Blockchain.

-
import { proxy } from "https://x.nest.land/oak-http-proxy@1.4.0/mod.ts";
+				
import { proxy } from "https://x.nest.land/oak-http-proxy@1.4.1/mod.ts";
 

Docs

diff --git a/egg.json b/egg.json index 2c0d87c..0a56fd1 100644 --- a/egg.json +++ b/egg.json @@ -1,7 +1,7 @@ { "name": "oak-http-proxy", "description": "Proxy middleware for Deno Oak HTTP servers.", - "version": "1.4.0", + "version": "1.4.1", "repository": "https://github.com/asos-craigmorten/oak-http-proxy", "stable": true, "files": [ diff --git a/examples/basic/README.md b/examples/basic/README.md index 25307ad..e258712 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -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/oak_http_proxy@1.4.0/examples/basic/index.ts +deno run --allow-net --allow-read https://deno.land/x/oak_http_proxy@1.4.1/examples/basic/index.ts ``` if you don't! diff --git a/examples/basic/index.ts b/examples/basic/index.ts index e914a3a..792986a 100644 --- a/examples/basic/index.ts +++ b/examples/basic/index.ts @@ -5,7 +5,7 @@ * * if have the repo cloned locally OR * - * deno run --allow-net https://deno.land/x/oak_http_proxy@1.4.0/examples/basic/index.ts + * deno run --allow-net https://deno.land/x/oak_http_proxy@1.4.1/examples/basic/index.ts * * if you don't! * diff --git a/version.ts b/version.ts index cae7e48..3d1a1d6 100644 --- a/version.ts +++ b/version.ts @@ -1,7 +1,7 @@ /** * Version of oak-http-proxy. */ -export const VERSION: string = "1.4.0"; +export const VERSION: string = "1.4.1"; /** * Supported versions of Deno.