From f735a1a4f0a4a57a348f8af88d6cf30ddc0a5f2e Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Sat, 18 May 2024 10:56:50 +0900 Subject: [PATCH] 1.43.5 (#280) Co-authored-by: dsherret --- .bmp.yml | 2 +- docker/base.dockerfile | 2 +- example-docker-container/Dockerfile | 2 +- example-docker-container/README.md | 2 +- tests/Dockerfile | 2 +- tests/test_bundle.json | 4 ++-- tests/test_example_zip.json | 4 ++-- tests/test_js.json | 4 ++-- tests/test_run_deno.json | 4 ++-- tests/test_self_contained.json | 4 ++-- tests/test_simple.json | 4 ++-- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.bmp.yml b/.bmp.yml index e91956c..32b32ad 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 1.43.4 +version: 1.43.5 commit: '%.%.%' files: docker/base.dockerfile: ENV DENO_VERSION=%.%.% diff --git a/docker/base.dockerfile b/docker/base.dockerfile index eaa1814..6311f97 100644 --- a/docker/base.dockerfile +++ b/docker/base.dockerfile @@ -1,6 +1,6 @@ FROM public.ecr.aws/lambda/provided:al2 -ENV DENO_VERSION=1.43.4 +ENV DENO_VERSION=1.43.5 ENV DENO_DIR=.deno_dir ENV DENO_INSTALL_ROOT=/usr/local diff --git a/example-docker-container/Dockerfile b/example-docker-container/Dockerfile index c49a0fe..8385cd3 100644 --- a/example-docker-container/Dockerfile +++ b/example-docker-container/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno-lambda:1.43.4 +FROM denoland/deno-lambda:1.43.5 COPY hello.ts . RUN deno cache hello.ts diff --git a/example-docker-container/README.md b/example-docker-container/README.md index 2ff8fb1..f6e88f0 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.43.4 +FROM denoland/deno-lambda:1.43.5 COPY hello.ts . RUN deno cache hello.ts diff --git a/tests/Dockerfile b/tests/Dockerfile index 84f4b9c..12aaa45 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.43.4 +ENV DENO_VERSION=1.43.5 # 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 7900b52..9694d3a 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.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.5 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.5 🦕\"}" } ], "files": ["hello.bundle.js"], diff --git a/tests/test_example_zip.json b/tests/test_example_zip.json index 0591096..617d481 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.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.5 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.5 🦕\"}" } ], "files": "deno-lambda-example.zip", diff --git a/tests/test_js.json b/tests/test_js.json index 6339fc2..b011c31 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.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.43.5 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"body\":\"Welcome to deno 1.43.5 🦕\"}" } ], "files": ["hello.js"], diff --git a/tests/test_run_deno.json b/tests/test_run_deno.json index 1de9248..8ca96e7 100644 --- a/tests/test_run_deno.json +++ b/tests/test_run_deno.json @@ -4,11 +4,11 @@ "expected": [ { "status": "ok", - "content": "{\"out\":\"1.43.4\"}" + "content": "{\"out\":\"1.43.5\"}" }, { "status": "ok", - "content": "{\"out\":\"1.43.4\"}" + "content": "{\"out\":\"1.43.5\"}" } ], "files": ["handlers.ts"], diff --git a/tests/test_self_contained.json b/tests/test_self_contained.json index f33e3ad..7dec584 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.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.5 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.5 🦕\"}" } ], "files": ["hello.ts", "bootstrap", "bin/deno"] diff --git a/tests/test_simple.json b/tests/test_simple.json index 140697d..586d726 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.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.5 🦕\"}" }, { "status": "ok", - "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.4 🦕\"}" + "content": "{\"statusCode\":200,\"headers\":{\"content-type\":\"text/html;charset=utf8\"},\"body\":\"Welcome to deno 1.43.5 🦕\"}" } ], "files": ["hello.ts"],