Skip to content

Commit bbbaa8f

Browse files
Merge branch 'develop'
2 parents dd7ccf8 + 2346994 commit bbbaa8f

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.github/dependabot.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ updates:
1010
include: scope
1111
reviewers:
1212
- aws/serverless-application-experience-sbt
13+
- aws/aws-lambda-tooling
1314

1415
- package-ecosystem: "pip"
1516
directory: "/requirements"
@@ -21,8 +22,9 @@ updates:
2122
include: scope
2223
reviewers:
2324
- aws/serverless-application-experience-sbt
25+
- aws/aws-lambda-tooling
2426
ignore:
2527
# The dependencies are intentionally pinned to certain
2628
# version ranges for specific Python versions
2729
- dependency-name: "flake8"
28-
- dependency-name: "isort"
30+
- dependency-name: "isort"

CODEOWNERS

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
22

3-
* @aws/serverless-application-experience-sbt
3+
* @aws/serverless-application-experience-sbt
4+
* @aws/aws-lambda-tooling

aws_lambda_builders/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# Changing version will trigger a new release!
66
# Please make the version change as the last step of your development.
77

8-
__version__ = "1.53.0"
8+
__version__ = "1.54.0"
99
RPC_PROTOCOL_VERSION = "0.3"

aws_lambda_builders/validator.py

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"python3.13": [ARM64, X86_64],
2323
"ruby3.2": [ARM64, X86_64],
2424
"ruby3.3": [ARM64, X86_64],
25+
"ruby3.4": [ARM64, X86_64],
2526
"java8": [ARM64, X86_64],
2627
"java11": [ARM64, X86_64],
2728
"java17": [ARM64, X86_64],

requirements/dev.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
coverage==7.6.7; python_version>="3.9"
1+
coverage==7.7.0; python_version>="3.9"
22
coverage==7.6.1; python_version<"3.9"
33
flake8==3.8.4
44
pytest-cov==6.0.0; python_version>="3.9"
@@ -7,9 +7,9 @@ pytest-cov==5.0.0; python_version<"3.9"
77
# Test requirements
88
pytest>=6.1.1
99
parameterized==0.9.0
10-
pyelftools~=0.31 # Used to verify the generated Go binary architecture in integration tests (utils.py)
10+
pyelftools~=0.32 # Used to verify the generated Go binary architecture in integration tests (utils.py)
1111

1212
# formatter
13-
black==24.10.0; python_version>="3.9"
13+
black==25.1.0; python_version>="3.9"
1414
black==24.8.0; python_version<"3.9"
15-
ruff==0.7.4
15+
ruff==0.11.0

tests/integration/workflows/ruby_bundler/test_ruby.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
[
2121
("ruby3.2",),
2222
("ruby3.3",),
23+
("ruby3.4",),
2324
],
2425
)
2526
class TestRubyWorkflow(TestCase):

0 commit comments

Comments
 (0)