Skip to content

Commit a36911f

Browse files
Merge from aws/aws-sam-cli/develop
2 parents cccd1d8 + 65baa83 commit a36911f

File tree

30 files changed

+888
-866
lines changed

30 files changed

+888
-866
lines changed

CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
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
43
* @aws/aws-lambda-tooling

requirements/base.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ click==8.1.8
33
Flask<3.2
44
boto3>=1.29.2,<2
55
jmespath~=1.0.1
6-
ruamel_yaml~=0.18.6
6+
ruamel_yaml~=0.18.12
77
PyYAML~=6.0
88
cookiecutter~=2.6.0
9-
aws-sam-translator==1.97.0
9+
aws-sam-translator==1.98.0
1010
#docker minor version updates can include breaking changes. Auto update micro version only.
1111
docker~=7.1.0
1212
dateparser~=1.2
@@ -17,7 +17,7 @@ tomlkit==0.13.2
1717
# version 5.0.2 introduced some breaking changes for versions > Python3.8
1818
watchdog==4.0.2
1919

20-
rich~=13.9.4
20+
rich~=14.0.0
2121
pyopenssl~=24.3.0
2222
# Pin to <4.18 to until SAM-T no longer uses RefResolver
2323
jsonschema<4.24
@@ -28,10 +28,10 @@ typing_extensions>=4.4.0,<5
2828
# NOTE: regex is not a direct dependency of SAM CLI, exclude version 2021.10.8 due to not working on M1 Mac - https://github.com/mrabarnett/mrab-regex/issues/399
2929
regex!=2021.10.8
3030
# NOTE: tzlocal is not a direct dependency of SAM CLI, but pin to 3.0 as 4.0 break appveyor jobs
31-
tzlocal==5.2
31+
tzlocal==5.3.1
3232

3333
#Adding cfn-lint dependency for SAM validate
34-
cfn-lint~=1.34.1
34+
cfn-lint~=1.35.4
3535

3636
# Type checking boto3 objects
37-
boto3-stubs[apigateway,cloudformation,ecr,iam,lambda,s3,schemas,secretsmanager,signer,stepfunctions,sts,xray,sqs,kinesis]==1.35.71
37+
boto3-stubs[apigateway,cloudformation,ecr,iam,lambda,s3,schemas,secretsmanager,signer,stepfunctions,sts,xray,sqs,kinesis]==1.38.29

requirements/dev.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,30 @@ pytest-cov==5.0.0; python_version<"3.9"
1010
# mypy adds new rules in new minor versions, which could cause our PR check to fail
1111
# here we fix its version and upgrade it manually in the future
1212
mypy==1.15.0
13-
types-pywin32==310.0.0.20250429; python_version>="3.9"
13+
types-pywin32==310.0.0.20250516; python_version>="3.9"
1414
types-pywin32==308.0.0.20241221; python_version<"3.9"
15-
types-PyYAML==6.0.12.20250402
15+
types-PyYAML==6.0.12.20250516
1616
types-chevron==0.14.2.20250103
17-
types-psutil==7.0.0.20250401
18-
types-setuptools==80.3.0.20250505
19-
types-Pygments==2.19.0.20250305
17+
types-psutil==7.0.0.20250601
18+
types-setuptools==80.9.0.20250529
19+
types-Pygments==2.19.0.20250516
2020
types-colorama==0.4.15.20240311
21-
types-dateparser==1.2.0.20250408
22-
types-docutils==0.21.0.20241128
23-
types-jsonschema==4.23.0.20241208
21+
types-dateparser==1.2.0.20250601
22+
types-docutils==0.21.0.20250526
23+
types-jsonschema==4.24.0.20250528
2424
types-pyOpenSSL==24.1.0.20240722
2525
# lucashuy: pin `types-request` based on the Python version since newer versions of
2626
# the types require a newer version of requests, which is only installed in newer versions of Python
2727
types-requests==2.31.0.6; python_version<"3.10"
28-
types-requests==2.32.0.20250328; python_version>="3.10"
28+
types-requests==2.32.0.20250602; python_version>="3.10"
2929
types-urllib3==1.26.25.14
3030

3131
# Test requirements
3232

33-
pytest==8.3.5
33+
pytest==8.4.0
3434

3535
parameterized==0.9.0
36-
pytest-xdist==3.6.1
36+
pytest-xdist==3.7.0
3737
pytest-forked==1.6.0
3838
pytest-timeout==2.4.0
3939
pytest-rerunfailures==15.1; python_version>="3.9"

requirements/pre-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruff==0.11.8
1+
ruff==0.11.12

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
2-
setuptools==75.6.0
2+
setuptools==78.1.1
33
pyinstaller==6.13.0

requirements/reproducible-linux.txt

Lines changed: 253 additions & 243 deletions
Large diffs are not rendered by default.

requirements/reproducible-mac.txt

Lines changed: 259 additions & 249 deletions
Large diffs are not rendered by default.

requirements/reproducible-win.txt

Lines changed: 273 additions & 265 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.139.0"
5+
__version__ = "1.140.0"

samcli/cli/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def format_options(self, ctx: click.Context, formatter: RootCommandHelpTextForma
126126
),
127127
RowDefinition(
128128
name="Get Started:",
129-
text=click.style(f"${ctx.command_path} init"),
129+
text=click.style(f"$ {ctx.command_path} init"),
130130
extra_row_modifiers=[ShowcaseRowModifier()],
131131
),
132132
],

0 commit comments

Comments
 (0)