Skip to content

Commit 750010e

Browse files
Merge from aws/aws-sam-cli/develop
2 parents 221e6e4 + 6a4e1ba commit 750010e

File tree

21 files changed

+1094
-834
lines changed

21 files changed

+1094
-834
lines changed

.gitignore

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -412,12 +412,8 @@ coverage.xml
412412

413413
# Temporary scratch directory used by the tests
414414
tests/integration/buildcmd/scratch
415-
tests/integration/testdata/buildcmd/Dotnet6/bin
416-
tests/integration/testdata/buildcmd/Dotnet6/obj
417-
tests/integration/testdata/buildcmd/Dotnet7/bin
418-
tests/integration/testdata/buildcmd/Dotnet7/obj
419-
tests/integration/testdata/buildcmd/Dotnet8/bin
420-
tests/integration/testdata/buildcmd/Dotnet8/obj
415+
tests/integration/testdata/buildcmd/Dotnet*/bin
416+
tests/integration/testdata/buildcmd/Dotnet*/obj
421417
tests/integration/testdata/invoke/credential_tests/inprocess/dotnet/STS/obj
422418
tests/integration/testdata/sync/code/after/dotnet_function/src/HelloWorld/obj/
423419
tests/integration/testdata/sync/code/before/dotnet_function/src/HelloWorld/obj/

installer/pyinstaller/build-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if [ "$python_version" = "" ]; then
1616
fi
1717

1818
if [ "$openssl_version" = "" ]; then
19-
openssl_version="3.0.15";
19+
openssl_version="3.3.1";
2020
fi
2121

2222
if [ "$zlib_version" = "" ]; then

installer/pyinstaller/build-mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if [ "$python_library_zip_filename" = "" ]; then
3030
fi
3131

3232
if [ "$openssl_version" = "" ]; then
33-
openssl_version="3.0.15";
33+
openssl_version="3.3.1";
3434
fi
3535

3636
if [ "$python_version" = "" ]; then

requirements/base.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ dateparser~=1.2
1313
requests~=2.32.3
1414
aws_lambda_builders==1.50.0
1515
tomlkit==0.13.2
16-
watchdog==5.0.3; python_version>"3.8"
17-
watchdog==4.0.2; python_version<="3.8"
16+
# NOTE: For supporting watchdog in Python3.8, version is pinned to 4.0.2 as
17+
# version 5.0.2 introduced some breaking changes for versions > Python3.8
18+
watchdog==4.0.2
1819

1920
rich~=13.9.2
2021
pyopenssl~=24.2.1
@@ -30,7 +31,7 @@ regex!=2021.10.8
3031
tzlocal==5.2
3132

3233
#Adding cfn-lint dependency for SAM validate
33-
cfn-lint~=1.16.0
34+
cfn-lint~=1.17.2
3435

3536
# Type checking boto3 objects
36-
boto3-stubs[apigateway,cloudformation,ecr,iam,lambda,s3,schemas,secretsmanager,signer,stepfunctions,sts,xray,sqs,kinesis]==1.35.32
37+
boto3-stubs[apigateway,cloudformation,ecr,iam,lambda,s3,schemas,secretsmanager,signer,stepfunctions,sts,xray,sqs,kinesis]==1.35.49

requirements/dev.txt

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
-r pre-dev.txt
22

3-
coverage==7.6.1
3+
coverage==7.6.4; python_version>="3.9"
4+
coverage==7.6.1; python_version<"3.9"
45
pytest-cov==5.0.0
56

67

78
# type checking and related stubs
89
# mypy adds new rules in new minor versions, which could cause our PR check to fail
910
# here we fix its version and upgrade it manually in the future
1011
mypy==1.11.2
11-
types-pywin32==306.0.0.20240822
12+
types-pywin32==308.0.0.20241025
1213
types-PyYAML==6.0.12.20240917
1314
types-chevron==0.14.2.20240310
14-
types-psutil==6.0.0.20240901
15-
types-setuptools==75.1.0.20240917
15+
types-psutil==6.1.0.20241022
16+
types-setuptools==75.2.0.20241025
1617
types-Pygments==2.18.0.20240506
1718
types-colorama==0.4.15.20240311
1819
types-dateparser==1.2.0.20240420
@@ -22,7 +23,7 @@ types-pyOpenSSL==24.1.0.20240722
2223
# lucashuy: pin `types-request` based on the Python version since newer versions of
2324
# the types require a newer version of requests, which is only installed in newer versions of Python
2425
types-requests==2.31.0.6; python_version<"3.10"
25-
types-requests==2.32.0.20240914; python_version>="3.10"
26+
types-requests==2.32.0.20241016; python_version>="3.10"
2627
types-urllib3==1.26.25.14
2728

2829
# Test requirements
@@ -41,5 +42,6 @@ pytest-json-report-wip==1.5.1
4142
filelock==3.16.1
4243

4344
# formatter
44-
black==24.8.0
45-
psutil==6.0.0
45+
black==24.10.0; python_version>="3.9"
46+
black==24.8.0; python_version<"3.9"
47+
psutil==6.1.0

requirements/pyinstaller-build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Executable binary builder requirements
22
setuptools==75.1.0
3-
pyinstaller==6.10.0
3+
pyinstaller==6.11.0

requirements/reproducible-linux.txt

Lines changed: 319 additions & 307 deletions
Large diffs are not rendered by default.

requirements/reproducible-mac.txt

Lines changed: 180 additions & 165 deletions
Large diffs are not rendered by default.

requirements/reproducible-win.txt

Lines changed: 338 additions & 326 deletions
Large diffs are not rendered by default.

samcli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
SAM CLI version
33
"""
44

5-
__version__ = "1.126.0"
5+
__version__ = "1.127.0"

0 commit comments

Comments
 (0)