diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f25fde..037ef2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v1 - name: Install Deno run: | - curl -fsSL https://deno.land/x/install/install.sh | bash -s -- v0.22.0 + curl -fsSL https://deno.land/x/install/install.sh | bash -s -- v0.23.0 - name: Run Tests run: | export PATH=$HOME/.deno/bin:$PATH diff --git a/README.md b/README.md index c393de5..5bf5573 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ [![Build Status](https://github.com/keroxp/servest/workflows/CI/badge.svg)](https://github.com/keroxp/servest/actions) ![https://img.shields.io/github/tag/keroxp/servest.svg](https://img.shields.io/github/tag/keroxp/servest.svg) [![license](https://img.shields.io/github/license/keroxp/servest.svg)](https://github.com/keroxp/servest) -[![tag](https://img.shields.io/badge/deno-v0.21.0-green.svg)](https://github.com/denoland/deno) -[![tag](https://img.shields.io/badge/deno__std-v0.21.0-green.svg)](https://github.com/denoland/deno_std) +[![tag](https://img.shields.io/badge/deno-v0.23.0-green.svg)](https://github.com/denoland/deno) +[![tag](https://img.shields.io/badge/deno__std-v0.23.0-green.svg)](https://github.com/denoland/deno_std) 🌾A progressive http server for Deno🌾 diff --git a/modules-lock.json b/modules-lock.json index 9aa8684..fb383f4 100644 --- a/modules-lock.json +++ b/modules-lock.json @@ -1,6 +1,6 @@ { "https://deno.land/std": { - "version": "@v0.22.0", + "version": "@v0.23.0", "modules": [ "/testing/mod.ts", "/testing/asserts.ts", @@ -24,32 +24,45 @@ }, "https://dev.jspm.io/react": { "version": "@16.10.2", - "modules": ["/index.js"], + "modules": [ + "/index.js" + ], "types": { "/index.js": "./types/react/index.d.ts" } }, "https://dev.jspm.io/react-dom": { "version": "@16.10.2", - "modules": ["/server.js"], + "modules": [ + "/server.js" + ], "types": { "/server.js": "./types/react-dom/server/index.d.ts" } }, "https://dev.jspm.io/@types/react": { "version": "@16", - "modules": ["/index.d.ts", "/global.d.ts"] + "modules": [ + "/index.d.ts", + "/global.d.ts" + ] }, "https://dev.jspm.io/@types/react-dom": { "version": "@16", - "modules": ["/server/index.d.ts"] + "modules": [ + "/server/index.d.ts" + ] }, "https://dev.jspm.io/@types/prop-types": { "version": "@15.7.2", - "modules": ["/index.d.ts"] + "modules": [ + "/index.d.ts" + ] }, "https://dev.jspm.io/csstype": { "version": "@2.6.7", - "modules": ["/index.d.ts"] + "modules": [ + "/index.d.ts" + ] } -} +} \ No newline at end of file diff --git a/modules.json b/modules.json index 9aa8684..2d7c550 100755 --- a/modules.json +++ b/modules.json @@ -1,6 +1,6 @@ { "https://deno.land/std": { - "version": "@v0.22.0", + "version": "@v0.23.0", "modules": [ "/testing/mod.ts", "/testing/asserts.ts", diff --git a/serveio.ts b/serveio.ts index a8d637d..549cd3b 100644 --- a/serveio.ts +++ b/serveio.ts @@ -71,7 +71,7 @@ export async function readRequest( let [_, method, url, proto] = resLine.match(/^([^ ]+)? ([^ ]+?) ([^ ]+?)$/); method = method.toUpperCase(); // read header - const headers: Headers = await promiseInterrupter({ + const headers = await promiseInterrupter({ timeout: opts.readTimeout, cancel: opts.cancel })(tpReader.readMIMEHeader()); diff --git a/vendor/https/deno.land/std/flags/mod.ts b/vendor/https/deno.land/std/flags/mod.ts index fcf69bd..a0b9cd3 100644 --- a/vendor/https/deno.land/std/flags/mod.ts +++ b/vendor/https/deno.land/std/flags/mod.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/flags/mod.ts"; +export * from "https://deno.land/std@v0.23.0/flags/mod.ts"; diff --git a/vendor/https/deno.land/std/fmt/colors.ts b/vendor/https/deno.land/std/fmt/colors.ts index cb20c42..f625ffa 100644 --- a/vendor/https/deno.land/std/fmt/colors.ts +++ b/vendor/https/deno.land/std/fmt/colors.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/fmt/colors.ts"; +export * from "https://deno.land/std@v0.23.0/fmt/colors.ts"; diff --git a/vendor/https/deno.land/std/fmt/sprintf.ts b/vendor/https/deno.land/std/fmt/sprintf.ts index d4c9fcb..de593bf 100644 --- a/vendor/https/deno.land/std/fmt/sprintf.ts +++ b/vendor/https/deno.land/std/fmt/sprintf.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/fmt/sprintf.ts"; +export * from "https://deno.land/std@v0.23.0/fmt/sprintf.ts"; diff --git a/vendor/https/deno.land/std/fs/mod.ts b/vendor/https/deno.land/std/fs/mod.ts index 5d4da72..1a31b5f 100644 --- a/vendor/https/deno.land/std/fs/mod.ts +++ b/vendor/https/deno.land/std/fs/mod.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/fs/mod.ts"; +export * from "https://deno.land/std@v0.23.0/fs/mod.ts"; diff --git a/vendor/https/deno.land/std/io/bufio.ts b/vendor/https/deno.land/std/io/bufio.ts index 4d39f48..a17add0 100644 --- a/vendor/https/deno.land/std/io/bufio.ts +++ b/vendor/https/deno.land/std/io/bufio.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/io/bufio.ts"; +export * from "https://deno.land/std@v0.23.0/io/bufio.ts"; diff --git a/vendor/https/deno.land/std/io/readers.ts b/vendor/https/deno.land/std/io/readers.ts index 58b5cf6..37448b2 100644 --- a/vendor/https/deno.land/std/io/readers.ts +++ b/vendor/https/deno.land/std/io/readers.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/io/readers.ts"; +export * from "https://deno.land/std@v0.23.0/io/readers.ts"; diff --git a/vendor/https/deno.land/std/io/writers.ts b/vendor/https/deno.land/std/io/writers.ts index c0d09fa..4574427 100644 --- a/vendor/https/deno.land/std/io/writers.ts +++ b/vendor/https/deno.land/std/io/writers.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/io/writers.ts"; +export * from "https://deno.land/std@v0.23.0/io/writers.ts"; diff --git a/vendor/https/deno.land/std/media_types/mod.ts b/vendor/https/deno.land/std/media_types/mod.ts index de0d0a8..03971f7 100644 --- a/vendor/https/deno.land/std/media_types/mod.ts +++ b/vendor/https/deno.land/std/media_types/mod.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/media_types/mod.ts"; +export * from "https://deno.land/std@v0.23.0/media_types/mod.ts"; diff --git a/vendor/https/deno.land/std/mime/multipart.ts b/vendor/https/deno.land/std/mime/multipart.ts index 2ba72af..f62d1f3 100644 --- a/vendor/https/deno.land/std/mime/multipart.ts +++ b/vendor/https/deno.land/std/mime/multipart.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/mime/multipart.ts"; +export * from "https://deno.land/std@v0.23.0/mime/multipart.ts"; diff --git a/vendor/https/deno.land/std/multipart/formfile.ts b/vendor/https/deno.land/std/multipart/formfile.ts index 93d8e40..f4526e8 100644 --- a/vendor/https/deno.land/std/multipart/formfile.ts +++ b/vendor/https/deno.land/std/multipart/formfile.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/multipart/formfile.ts"; +export * from "https://deno.land/std@v0.23.0/multipart/formfile.ts"; diff --git a/vendor/https/deno.land/std/path/mod.ts b/vendor/https/deno.land/std/path/mod.ts index 46b99bd..7b0a274 100644 --- a/vendor/https/deno.land/std/path/mod.ts +++ b/vendor/https/deno.land/std/path/mod.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/path/mod.ts"; +export * from "https://deno.land/std@v0.23.0/path/mod.ts"; diff --git a/vendor/https/deno.land/std/strings/decode.ts b/vendor/https/deno.land/std/strings/decode.ts index 3437ebd..322bc12 100644 --- a/vendor/https/deno.land/std/strings/decode.ts +++ b/vendor/https/deno.land/std/strings/decode.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/strings/decode.ts"; +export * from "https://deno.land/std@v0.23.0/strings/decode.ts"; diff --git a/vendor/https/deno.land/std/strings/encode.ts b/vendor/https/deno.land/std/strings/encode.ts index 7b5c1d2..7479406 100644 --- a/vendor/https/deno.land/std/strings/encode.ts +++ b/vendor/https/deno.land/std/strings/encode.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/strings/encode.ts"; +export * from "https://deno.land/std@v0.23.0/strings/encode.ts"; diff --git a/vendor/https/deno.land/std/testing/asserts.ts b/vendor/https/deno.land/std/testing/asserts.ts index 500df1a..d6a4f16 100644 --- a/vendor/https/deno.land/std/testing/asserts.ts +++ b/vendor/https/deno.land/std/testing/asserts.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/testing/asserts.ts"; +export * from "https://deno.land/std@v0.23.0/testing/asserts.ts"; diff --git a/vendor/https/deno.land/std/testing/mod.ts b/vendor/https/deno.land/std/testing/mod.ts index 12c5c55..15b228b 100644 --- a/vendor/https/deno.land/std/testing/mod.ts +++ b/vendor/https/deno.land/std/testing/mod.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/testing/mod.ts"; +export * from "https://deno.land/std@v0.23.0/testing/mod.ts"; diff --git a/vendor/https/deno.land/std/testing/runner.ts b/vendor/https/deno.land/std/testing/runner.ts index 80ef37c..f39fddb 100644 --- a/vendor/https/deno.land/std/testing/runner.ts +++ b/vendor/https/deno.land/std/testing/runner.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/testing/runner.ts"; +export * from "https://deno.land/std@v0.23.0/testing/runner.ts"; diff --git a/vendor/https/deno.land/std/textproto/mod.ts b/vendor/https/deno.land/std/textproto/mod.ts index edf02de..46b5c72 100644 --- a/vendor/https/deno.land/std/textproto/mod.ts +++ b/vendor/https/deno.land/std/textproto/mod.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/textproto/mod.ts"; +export * from "https://deno.land/std@v0.23.0/textproto/mod.ts"; diff --git a/vendor/https/deno.land/std/util/async.ts b/vendor/https/deno.land/std/util/async.ts index 67e0ecf..d2d22a2 100644 --- a/vendor/https/deno.land/std/util/async.ts +++ b/vendor/https/deno.land/std/util/async.ts @@ -1 +1 @@ -export * from "https://deno.land/std@v0.22.0/util/async.ts"; +export * from "https://deno.land/std@v0.23.0/util/async.ts"; diff --git a/version.ts b/version.ts index 2dd6246..a9be43b 100644 --- a/version.ts +++ b/version.ts @@ -1 +1 @@ -export const ServestVersion = "v0.24.0"; +export const ServestVersion = "v0.24.1";