Skip to content

Commit 9c33647

Browse files
authoredSep 26, 2024
Merge from aws/aws-sam-cli/develop
2 parents 40df58e + 3aad0d5 commit 9c33647

10 files changed

+590
-549
lines changed
 

‎installer/pyinstaller/build-linux.sh

+1-1
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.14";
19+
openssl_version="3.0.15";
2020
fi
2121

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

‎installer/pyinstaller/build-mac.sh

+1-1
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.14";
33+
openssl_version="3.0.15";
3434
fi
3535

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

‎requirements/base.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ regex!=2021.10.8
2828
tzlocal==5.2
2929

3030
#Adding cfn-lint dependency for SAM validate
31-
cfn-lint~=1.12.4
31+
cfn-lint~=1.14.2
3232

3333
# Type checking boto3 objects
34-
boto3-stubs[apigateway,cloudformation,ecr,iam,lambda,s3,schemas,secretsmanager,signer,stepfunctions,sts,xray,sqs,kinesis]==1.35.14
34+
boto3-stubs[apigateway,cloudformation,ecr,iam,lambda,s3,schemas,secretsmanager,signer,stepfunctions,sts,xray,sqs,kinesis]==1.35.23

‎requirements/dev.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ pytest-cov==5.0.0
99
# here we fix its version and upgrade it manually in the future
1010
mypy==1.11.2
1111
types-pywin32==306.0.0.20240822
12-
types-PyYAML==6.0.12.20240808
12+
types-PyYAML==6.0.12.20240917
1313
types-chevron==0.14.2.20240310
1414
types-psutil==6.0.0.20240901
15-
types-setuptools==74.1.0.20240907
15+
types-setuptools==75.1.0.20240917
1616
types-Pygments==2.18.0.20240506
1717
types-colorama==0.4.15.20240311
1818
types-dateparser==1.2.0.20240420
@@ -22,12 +22,12 @@ types-pyOpenSSL==24.1.0.20240722
2222
# lucashuy: pin `types-request` based on the Python version since newer versions of
2323
# the types require a newer version of requests, which is only installed in newer versions of Python
2424
types-requests==2.31.0.6; python_version<"3.10"
25-
types-requests==2.32.0.20240907; python_version>="3.10"
25+
types-requests==2.32.0.20240914; python_version>="3.10"
2626
types-urllib3==1.26.25.14
2727

2828
# Test requirements
2929

30-
pytest==8.3.2
30+
pytest==8.3.3
3131

3232
parameterized==0.9.0
3333
pytest-xdist==3.6.1

‎requirements/pre-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruff==0.6.4
1+
ruff==0.6.6

‎requirements/pyinstaller-build.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Executable binary builder requirements
2-
setuptools==70.3.0
2+
setuptools==75.1.0
33
pyinstaller==6.10.0

‎requirements/reproducible-linux.txt

+221-210
Large diffs are not rendered by default.

‎requirements/reproducible-mac.txt

+230-215
Large diffs are not rendered by default.

‎requirements/reproducible-win.txt

+128-113
Large diffs are not rendered by default.

‎samcli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
SAM CLI version
33
"""
44

5-
__version__ = "1.124.0"
5+
__version__ = "1.125.0"

0 commit comments

Comments
 (0)
Failed to load comments.