diff --git a/.bmp.yml b/.bmp.yml index 282b089..bc535e4 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 1.40.5 +version: 1.41.0 commit: '%.%.%' files: docker/base.dockerfile: ENV DENO_VERSION=%.%.% diff --git a/docker/base.dockerfile b/docker/base.dockerfile index 75cc6e5..7120c53 100644 --- a/docker/base.dockerfile +++ b/docker/base.dockerfile @@ -1,6 +1,6 @@ FROM public.ecr.aws/lambda/provided:al2 -ENV DENO_VERSION=1.40.5 +ENV DENO_VERSION=1.41.0 ENV DENO_DIR=.deno_dir ENV DENO_INSTALL_ROOT=/usr/local diff --git a/example-docker-container/Dockerfile b/example-docker-container/Dockerfile index 1ddc53a..ab5c377 100644 --- a/example-docker-container/Dockerfile +++ b/example-docker-container/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno-lambda:1.40.5 +FROM denoland/deno-lambda:1.41.0 COPY hello.ts . RUN deno cache hello.ts diff --git a/example-docker-container/README.md b/example-docker-container/README.md index 8409e27..d1c8374 100644 --- a/example-docker-container/README.md +++ b/example-docker-container/README.md @@ -11,7 +11,7 @@ defined in Example `Dockerfile` below: ```Dockerfile -FROM denoland/deno-lambda:1.40.5 +FROM denoland/deno-lambda:1.41.0 COPY hello.ts . RUN deno cache hello.ts diff --git a/tests/Dockerfile b/tests/Dockerfile index 2abfc45..a7f633a 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -3,7 +3,7 @@ FROM amazonlinux:2.0.20200722.0 # This is _close to_ the Amazon Linux 2 AMI/image used by AWS Lambda. -ENV DENO_VERSION=1.40.5 +ENV DENO_VERSION=1.41.0 # Note: We make the deno binary private (via _) so that it's not available in the PATH. # In order for `deno` to be made available in the PATH it must be inserted into ./bin/ diff --git a/tests/test_bundle.json b/tests/test_bundle.json index b5ed139..c0aa35a 100644 --- a/tests/test_bundle.json +++ b/tests/test_bundle.json @@ -7,11 +7,11 @@ "expected": [ { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.41.0 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.41.0 🦕\"}" } ], "files": ["hello.bundle.js"], diff --git a/tests/test_example_zip.json b/tests/test_example_zip.json index 392170b..28f1248 100644 --- a/tests/test_example_zip.json +++ b/tests/test_example_zip.json @@ -4,11 +4,11 @@ "expected": [ { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.41.0 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.41.0 🦕\"}" } ], "files": "deno-lambda-example.zip", diff --git a/tests/test_js.json b/tests/test_js.json index be0ba55..2a88eef 100644 --- a/tests/test_js.json +++ b/tests/test_js.json @@ -4,11 +4,11 @@ "expected": [ { "status": "ok", - "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.41.0 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.41.0 🦕\"}" } ], "files": ["hello.js"], diff --git a/tests/test_run_deno.json b/tests/test_run_deno.json index 304e0ac..23b525c 100644 --- a/tests/test_run_deno.json +++ b/tests/test_run_deno.json @@ -4,11 +4,11 @@ "expected": [ { "status": "ok", - "content": "{\"out\":\"1.40.5\"}" + "content": "{\"out\":\"1.41.0\"}" }, { "status": "ok", - "content": "{\"out\":\"1.40.5\"}" + "content": "{\"out\":\"1.41.0\"}" } ], "files": ["handlers.ts"], diff --git a/tests/test_self_contained.json b/tests/test_self_contained.json index e78cefe..cf7292e 100644 --- a/tests/test_self_contained.json +++ b/tests/test_self_contained.json @@ -4,11 +4,11 @@ "expected": [ { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.41.0 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.41.0 🦕\"}" } ], "files": ["hello.ts", "bootstrap", "bin/deno"] diff --git a/tests/test_simple.json b/tests/test_simple.json index 7a78aa8..f5fdf57 100644 --- a/tests/test_simple.json +++ b/tests/test_simple.json @@ -4,11 +4,11 @@ "expected": [ { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.41.0 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.40.5 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.41.0 🦕\"}" } ], "files": ["hello.ts"],