From 9feec7e041af4e885af3afe5c0c8e7a2f7249cae Mon Sep 17 00:00:00 2001 From: Olivier John Ndjike Nzia Date: Fri, 12 Dec 2025 15:59:50 -0500 Subject: [PATCH 1/3] update rbenv version and comments --- scripts/publish_prod.sh | 2 +- scripts/run_integration_tests.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/publish_prod.sh b/scripts/publish_prod.sh index 0bfe99c..89e4fc0 100755 --- a/scripts/publish_prod.sh +++ b/scripts/publish_prod.sh @@ -34,7 +34,7 @@ else fi echo "Setting local environment to Ruby 3.4" -rbenv local 3.4 +rbenv local 3.4.7 echo "Running tests" ./scripts/run_tests.sh diff --git a/scripts/run_integration_tests.sh b/scripts/run_integration_tests.sh index 2e604b9..52bdfb7 100755 --- a/scripts/run_integration_tests.sh +++ b/scripts/run_integration_tests.sh @@ -2,9 +2,9 @@ # Usage - run commands from repo root: # To check if new changes to the layer cause changes to any snapshots: -# BUILD_LAYERS=true DD_API_KEY=XXXX aws-vault exec sso-serverless-sandbox-account-admin -- ./scripts/run_integration_tests.sh +# BUILD_LAYERS=true DD_API_KEY=XXXX ARCH=[arm64|amd64] aws-vault exec sso-serverless-sandbox-account-admin -- ./scripts/run_integration_tests.sh # To regenerate snapshots: -# UPDATE_SNAPSHOTS=true DD_API_KEY=XXXX aws-vault exec sso-serverless-sandbox-account-admin -- ./scripts/run_integration_tests.sh +# UPDATE_SNAPSHOTS=true DD_API_KEY=XXXX ARCH=[arm64|amd64] aws-vault exec sso-serverless-sandbox-account-admin -- ./scripts/run_integration_tests.sh set -e From f8f883002727b597c7f002f6b4aa3b1a2a4533cc Mon Sep 17 00:00:00 2001 From: Olivier John Ndjike Nzia Date: Mon, 15 Dec 2025 13:39:47 -0500 Subject: [PATCH 2/3] bump version to 3.27.0 --- lib/datadog/lambda/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datadog/lambda/version.rb b/lib/datadog/lambda/version.rb index e44d441..6e55f11 100644 --- a/lib/datadog/lambda/version.rb +++ b/lib/datadog/lambda/version.rb @@ -12,7 +12,7 @@ module Datadog module Lambda module VERSION MAJOR = 3 - MINOR = 26 + MINOR = 27 PATCH = 0 PRE = nil From 818a9cf5110526d321cfd94a4e9cb5900a178bb9 Mon Sep 17 00:00:00 2001 From: Olivier John Ndjike Nzia Date: Mon, 15 Dec 2025 13:44:19 -0500 Subject: [PATCH 3/3] undo script change --- scripts/publish_prod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish_prod.sh b/scripts/publish_prod.sh index 89e4fc0..0bfe99c 100755 --- a/scripts/publish_prod.sh +++ b/scripts/publish_prod.sh @@ -34,7 +34,7 @@ else fi echo "Setting local environment to Ruby 3.4" -rbenv local 3.4.7 +rbenv local 3.4 echo "Running tests" ./scripts/run_tests.sh