diff --git a/.bmp.yml b/.bmp.yml index a0ab51f..8f1c7d1 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 1.45.1 +version: 1.45.2 commit: '%.%.%' files: docker/base.dockerfile: ENV DENO_VERSION=%.%.% diff --git a/docker/base.dockerfile b/docker/base.dockerfile index 7b9fef3..42b5e4e 100644 --- a/docker/base.dockerfile +++ b/docker/base.dockerfile @@ -1,6 +1,6 @@ FROM public.ecr.aws/lambda/provided:al2 -ENV DENO_VERSION=1.45.1 +ENV DENO_VERSION=1.45.2 ENV DENO_DIR=.deno_dir ENV DENO_INSTALL_ROOT=/usr/local diff --git a/example-docker-container/Dockerfile b/example-docker-container/Dockerfile index aafd94c..59d1034 100644 --- a/example-docker-container/Dockerfile +++ b/example-docker-container/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno-lambda:1.45.1 +FROM denoland/deno-lambda:1.45.2 COPY hello.ts . RUN deno cache hello.ts diff --git a/example-docker-container/README.md b/example-docker-container/README.md index 8deb74d..461f222 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.45.1 +FROM denoland/deno-lambda:1.45.2 COPY hello.ts . RUN deno cache hello.ts diff --git a/tests/Dockerfile b/tests/Dockerfile index 9534f62..9b7ce15 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.45.1 +ENV DENO_VERSION=1.45.2 # 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 8db7784..fa93348 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.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.2 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.2 🦕\"}" } ], "files": ["hello.bundle.js"], diff --git a/tests/test_example_zip.json b/tests/test_example_zip.json index 55f1f2d..aabe432 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.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.2 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.2 🦕\"}" } ], "files": "deno-lambda-example.zip", diff --git a/tests/test_js.json b/tests/test_js.json index 2a89817..89f668d 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.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.45.2 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.45.2 🦕\"}" } ], "files": ["hello.js"], diff --git a/tests/test_run_deno.json b/tests/test_run_deno.json index 63c5c4a..5770131 100644 --- a/tests/test_run_deno.json +++ b/tests/test_run_deno.json @@ -4,11 +4,11 @@ "expected": [ { "status": "ok", - "content": "{\"out\":\"1.45.1\"}" + "content": "{\"out\":\"1.45.2\"}" }, { "status": "ok", - "content": "{\"out\":\"1.45.1\"}" + "content": "{\"out\":\"1.45.2\"}" } ], "files": ["handlers.ts"], diff --git a/tests/test_self_contained.json b/tests/test_self_contained.json index 109dba6..76c0f4f 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.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.2 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.2 🦕\"}" } ], "files": ["hello.ts", "bootstrap", "bin/deno"] diff --git a/tests/test_simple.json b/tests/test_simple.json index 8724f3c..934a639 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.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.2 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.1 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.45.2 🦕\"}" } ], "files": ["hello.ts"],