diff --git a/nodejs18.x/full-stack/{{cookiecutter.project_name}}/frontend/package.json b/nodejs18.x/full-stack/{{cookiecutter.project_name}}/frontend/package.json index ddc58ceda..165afa073 100644 --- a/nodejs18.x/full-stack/{{cookiecutter.project_name}}/frontend/package.json +++ b/nodejs18.x/full-stack/{{cookiecutter.project_name}}/frontend/package.json @@ -25,7 +25,7 @@ "babel-eslint": "^10.1.0", "eslint": "^7.32.0", "eslint-plugin-vue": "^7.18.0", - "happy-dom": "^9.20.3", + "happy-dom": "^15.10.2", "vitest": "^0.31.1", "vue-template-compiler": "^2.6.14" }, diff --git a/nodejs20.x/full-stack/{{cookiecutter.project_name}}/frontend/package.json b/nodejs20.x/full-stack/{{cookiecutter.project_name}}/frontend/package.json index ddc58ceda..165afa073 100644 --- a/nodejs20.x/full-stack/{{cookiecutter.project_name}}/frontend/package.json +++ b/nodejs20.x/full-stack/{{cookiecutter.project_name}}/frontend/package.json @@ -25,7 +25,7 @@ "babel-eslint": "^10.1.0", "eslint": "^7.32.0", "eslint-plugin-vue": "^7.18.0", - "happy-dom": "^9.20.3", + "happy-dom": "^15.10.2", "vitest": "^0.31.1", "vue-template-compiler": "^2.6.14" }, diff --git a/python3.13/apigw-scikit/cookiecutter.json b/python3.13/apigw-scikit/cookiecutter.json index 921880faa..ef822302c 100644 --- a/python3.13/apigw-scikit/cookiecutter.json +++ b/python3.13/apigw-scikit/cookiecutter.json @@ -1,6 +1,6 @@ { "project_name": "digit_classifier", - "scikit_learn_version": "1.3.0", + "scikit_learn_version": "1.5.2", "api_path": "/classify_digit", "architectures": { "value": [ @@ -11,4 +11,4 @@ ".gitignore" ], "__stack_name": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}" -} \ No newline at end of file +} diff --git a/python3.13/hello-img/{{cookiecutter.project_name}}/hello_world/Dockerfile b/python3.13/hello-img/{{cookiecutter.project_name}}/hello_world/Dockerfile index 533af0041..6538b78c9 100644 --- a/python3.13/hello-img/{{cookiecutter.project_name}}/hello_world/Dockerfile +++ b/python3.13/hello-img/{{cookiecutter.project_name}}/hello_world/Dockerfile @@ -1,4 +1,4 @@ -FROM public.ecr.aws/lambda/python:3.12 +FROM public.ecr.aws/lambda/python:3.13 COPY app.py requirements.txt ./ diff --git a/tests/integration/build_invoke/dotnet/test_build_invoke_dotnet6.py b/tests/integration/build_invoke/dotnet/test_build_invoke_dotnet6.py index 127e6c4cb..b802d6b42 100644 --- a/tests/integration/build_invoke/dotnet/test_build_invoke_dotnet6.py +++ b/tests/integration/build_invoke/dotnet/test_build_invoke_dotnet6.py @@ -14,11 +14,13 @@ class BuildInvoke_dotnet6_cookiecutter_aws_sam_hello_dotnet(BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase): use_container = False directory = "dotnet6/hello" + should_test_lint: bool = False class BuildInvoke_dotnet6_cookiecutter_aws_sam_hello_dotnet_pt(BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase): use_container = False directory = "dotnet6/hello-pt" + should_test_lint: bool = False # FIXME: fix and re-enable the test @@ -32,6 +34,7 @@ class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_s3_dotnet( ): use_container = False directory = "dotnet6/s3" + should_test_lint: bool = False class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_sns_dotnet( @@ -39,6 +42,7 @@ class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_sns_dotnet( ): use_container = False directory = "dotnet6/sns" + should_test_lint: bool = False class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_sqs_dotnet( @@ -46,6 +50,7 @@ class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_sqs_dotnet( ): use_container = False directory = "dotnet6/sqs" + should_test_lint: bool = False class BuildInvoke_dotnet6_cookiecutter_aws_sam_hello_step_functions_sample_app( @@ -53,6 +58,7 @@ class BuildInvoke_dotnet6_cookiecutter_aws_sam_hello_step_functions_sample_app( ): use_container = False directory = "dotnet6/step-func" + should_test_lint: bool = False class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_cloudwatch_events_dotnet( @@ -60,11 +66,13 @@ class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_cloudwatch_events_dot ): use_container = False directory = "dotnet6/cw-event" + should_test_lint: bool = False class BuildInvoke_dotnet6_cookiecutter_aws_from_scratch_dotnet(BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase): use_container = False directory = "dotnet6/scratch" + should_test_lint: bool = False class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_web_dotnet( @@ -72,6 +80,7 @@ class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_web_dotnet( ): use_container = False directory = "dotnet6/web" + should_test_lint: bool = False # @@ -83,3 +92,4 @@ class BuildInvoke_image_dotnet6_cookiecutter_aws_sam_hello_dotnet_lambda_image( BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase ): directory = "dotnet6/hello-img" + should_test_lint: bool = False diff --git a/tests/integration/unit_test/test_unit_test_dotnet6.py b/tests/integration/unit_test/test_unit_test_dotnet6.py index 475eb8c26..f17936131 100644 --- a/tests/integration/unit_test/test_unit_test_dotnet6.py +++ b/tests/integration/unit_test/test_unit_test_dotnet6.py @@ -5,10 +5,12 @@ class UnitTest_dotnet6_cookiecutter_aws_sam_hello_dotnet(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/hello" code_directories = ["test/HelloWorld.Test"] + should_test_lint: bool = False class UnitTest_dotnet6_cookiecutter_aws_sam_hello_dotnet_pt(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/hello-pt" code_directories = ["test/HelloWorld.Test"] + should_test_lint: bool = False # FIXME: fix and re-enable the test # class UnitTest_dotnet6_cookiecutter_aws_sam_hello_powershell(UnitTestBase.DotNetCoreUnitTestBase): @@ -19,33 +21,40 @@ class UnitTest_dotnet6_cookiecutter_aws_sam_hello_dotnet_pt(UnitTestBase.DotNetC class UnitTest_dotnet6_cookiecutter_aws_sam_hello_step_functions_sample_app(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/step-func" code_directories = ["tests/StockBuyer.Test", "tests/StockChecker.Test", "tests/StockSeller.Test"] + should_test_lint: bool = False class UnitTest_dotnet6_cookiecutter_aws_sam_quick_start_s3_dotnet(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/s3" code_directories = ["test/S3EventSource.Tests"] + should_test_lint: bool = False class UnitTest_dotnet6_cookiecutter_aws_sam_cloudwatch_events_dotnet(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/cw-event" code_directories = ["test/CloudWatchEventSource.Tests"] + should_test_lint: bool = False class UnitTest_dotnet6_cookiecutter_aws_sam_quickstart_sns_dotnet_sample_app(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/sns" code_directories = ["test/SNSEventSource.Tests"] + should_test_lint: bool = False class UnitTest_dotnet6_cookiecutter_aws_from_scratch_dotnet(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/scratch" code_directories = ["test/ScratchLambda.Tests"] + should_test_lint: bool = False class UnitTest_dotnet6_cookiecutter_aws_sam_quick_start_web_dotnet(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/web" code_directories = ["tests/ServerlessAPI.Tests"] + should_test_lint: bool = False class UnitTest_dotnet6_cookiecutter_aws_sam_quick_start_sqs(UnitTestBase.DotNetCoreUnitTestBase): directory = "dotnet6/sqs" code_directories = ["test/SQSEventSource.Tests"] + should_test_lint: bool = False