Skip to content

Commit 822c9f0

Browse files
authored
Merge branch 'develop' into docker-args
2 parents d3cd218 + 5a39057 commit 822c9f0

52 files changed

Lines changed: 123 additions & 139 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ai-code-review.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies = [
4545
"docker~=7.1.0",
4646
"dateparser~=1.3",
4747
"requests>=2.32.5,<2.34.0",
48-
"aws_lambda_builders==1.63.0",
48+
"aws_lambda_builders==1.64.0",
4949
"tomlkit==0.14.0",
5050
"watchdog==4.0.2",
5151
"rich~=14.3.3",
@@ -115,9 +115,13 @@ select = [
115115
"F", # Pyflakes
116116
"PL", # pylint
117117
"I", # isort
118+
"TID", # flake8-tidy-imports
118119
]
119120
ignore = ["PLR0913", "PLC0415", "PLW1641"]
120121

122+
[tool.ruff.lint.flake8-tidy-imports]
123+
ban-relative-imports = "all"
124+
121125
[tool.ruff.lint.pylint]
122126
max-branches = 25
123127
max-returns = 8

requirements/reproducible-linux.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ attrs==26.1.0 \
1414
# via
1515
# jsonschema
1616
# referencing
17-
aws-lambda-builders==1.63.0 \
18-
--hash=sha256:58662561bd52d931d62b3ba327acfa0c8e9117c4593eb816b3454ce6b47f4076 \
19-
--hash=sha256:9e03d163d78950d8896055afa4f19c0999ea0103076dfa8b0f2012d2503b1657
17+
aws-lambda-builders==1.64.0 \
18+
--hash=sha256:56ee91ad18a0811c94f546e1a2fe5e76ca56d77eaaf7c612a12563a5b3d5b813 \
19+
--hash=sha256:b5c045698f8bc48c25210b1f37848e57dd733c3a3d4593df6f8c10c6bd063009
2020
# via aws-sam-cli (pyproject.toml)
2121
aws-sam-translator==1.109.0 \
2222
--hash=sha256:0c5e60223ae8434ce0c6bdb9a491d69ba3ec97e15c0d825d3803f7806382d804 \

requirements/reproducible-mac.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ attrs==26.1.0 \
1414
# via
1515
# jsonschema
1616
# referencing
17-
aws-lambda-builders==1.63.0 \
18-
--hash=sha256:58662561bd52d931d62b3ba327acfa0c8e9117c4593eb816b3454ce6b47f4076 \
19-
--hash=sha256:9e03d163d78950d8896055afa4f19c0999ea0103076dfa8b0f2012d2503b1657
17+
aws-lambda-builders==1.64.0 \
18+
--hash=sha256:56ee91ad18a0811c94f546e1a2fe5e76ca56d77eaaf7c612a12563a5b3d5b813 \
19+
--hash=sha256:b5c045698f8bc48c25210b1f37848e57dd733c3a3d4593df6f8c10c6bd063009
2020
# via aws-sam-cli (pyproject.toml)
2121
aws-sam-translator==1.109.0 \
2222
--hash=sha256:0c5e60223ae8434ce0c6bdb9a491d69ba3ec97e15c0d825d3803f7806382d804 \

requirements/reproducible-win.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ attrs==26.1.0 \
1414
# via
1515
# jsonschema
1616
# referencing
17-
aws-lambda-builders==1.63.0 \
18-
--hash=sha256:58662561bd52d931d62b3ba327acfa0c8e9117c4593eb816b3454ce6b47f4076 \
19-
--hash=sha256:9e03d163d78950d8896055afa4f19c0999ea0103076dfa8b0f2012d2503b1657
17+
aws-lambda-builders==1.64.0 \
18+
--hash=sha256:56ee91ad18a0811c94f546e1a2fe5e76ca56d77eaaf7c612a12563a5b3d5b813 \
19+
--hash=sha256:b5c045698f8bc48c25210b1f37848e57dd733c3a3d4593df6f8c10c6bd063009
2020
# via aws-sam-cli (pyproject.toml)
2121
aws-sam-translator==1.109.0 \
2222
--hash=sha256:0c5e60223ae8434ce0c6bdb9a491d69ba3ec97e15c0d825d3803f7806382d804 \

samcli/cli/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import click
77

8-
from .context import Context
8+
from samcli.cli.context import Context
99

1010

1111
def debug_option(f):

samcli/commands/bootstrap/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"""
44

55
# Expose the cli object here
6-
from .command import cli # pragma: no cover
6+
from samcli.commands.bootstrap.command import cli # pragma: no cover

samcli/commands/build/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
------------------
6060
1. Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14 using PIP\n
6161
2. Nodejs 24.x, 22.x, 20.x, 18.x, 16.x, 14.x, 12.x using NPM\n
62-
3. Ruby 3.2, 3.3, 3.4 using Bundler\n
62+
3. Ruby 3.2, 3.3, 3.4, 4.0 using Bundler\n
6363
4. Java 8, Java 11, Java 17, Java 21, Java 25 using Gradle and Maven\n
6464
5. Dotnet6, Dotnet8, Dotnet10 using Dotnet CLI\n
6565
6. Go 1.x using Go Modules (without --use-container)\n

samcli/commands/init/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Expose top level cli command for `init`
33
"""
44

5-
from .command import cli
5+
from samcli.commands.init.command import cli

samcli/commands/pipeline/bootstrap/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
from samcli.commands._utils.click_mutex import ClickMutex
1414
from samcli.commands._utils.command_exception_handler import command_exception_handler
1515
from samcli.commands.pipeline.bootstrap.core.command import PipelineBootstrapCommand
16+
from samcli.commands.pipeline.bootstrap.guided_context import BITBUCKET, GITHUB_ACTIONS, GITLAB, IAM, OPEN_ID_CONNECT
1617
from samcli.commands.pipeline.bootstrap.oidc_config import (
1718
BitbucketOidcConfig,
1819
GitHubOidcConfig,
@@ -24,8 +25,6 @@
2425
from samcli.lib.telemetry.metric import track_command
2526
from samcli.lib.utils.version_checker import check_newer_version
2627

27-
from .guided_context import BITBUCKET, GITHUB_ACTIONS, GITLAB, IAM, OPEN_ID_CONNECT
28-
2928
SHORT_HELP = "Generates the required AWS resources to connect your CI/CD system."
3029

3130
HELP_TEXT = """

0 commit comments

Comments
 (0)