Skip to content

Commit 0d367f1

Browse files
Bump the pip-minor-patch group across 12 directories with 13 updates (#779)
1 parent e54a8b2 commit 0d367f1

File tree

28 files changed

+2660
-2820
lines changed

28 files changed

+2660
-2820
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ updates:
5151
- "/"
5252
- "/ack_backend"
5353
- "/backend"
54+
- "/batch_processor_filter"
5455
- "/delta_backend"
5556
- "/e2e"
5657
- "/e2e_batch"

ack_backend/poetry.lock

Lines changed: 103 additions & 103 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ack_backend/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ packages = [
1010

1111
[tool.poetry.dependencies]
1212
python = "~3.11"
13-
boto3 = "~1.38.42"
14-
mypy-boto3-dynamodb = "^1.38.4"
13+
boto3 = "~1.40.20"
14+
mypy-boto3-dynamodb = "^1.40.20"
1515
freezegun = "^1.5.2"
1616
moto = "^4"
17-
coverage = "^7.9.1"
17+
coverage = "^7.10.5"
1818

1919

2020
[build-system]

backend/poetry.lock

Lines changed: 532 additions & 527 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ packages = [{include = "src"}]
99
[tool.poetry.dependencies]
1010
python = "~3.11"
1111
"fhir.resources" = "~7.0.2"
12-
boto3 = "~1.38.42"
13-
boto3-stubs-lite = {extras = ["dynamodb"], version = "~1.38.42"}
12+
boto3 = "~1.40.20"
13+
boto3-stubs-lite = {extras = ["dynamodb"], version = "~1.40.20"}
1414
aws-lambda-typing = "~2.20.0"
1515
redis = "^4.6.0"
16-
moto = "^5.1.6"
17-
requests = "~2.32.4"
16+
moto = "^5.1.11"
17+
requests = "~2.32.5"
1818
responses = "~0.25.7"
1919
pydantic = "~1.10.13"
2020
pyjwt = "~2.10.1"
@@ -25,7 +25,7 @@ simplejson = "^3.19.2"
2525
structlog = "^24.1.0"
2626
python-stdnum = "^2.1"
2727
freezegun = "^1.5.1"
28-
coverage = "^7.9.1"
28+
coverage = "^7.10.5"
2929

3030
[build-system]
3131
requires = ["poetry-core ~= 1.5.0"]

batch_processor_filter/poetry.lock

Lines changed: 32 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

batch_processor_filter/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ packages = [{include = "src"}]
88

99
[tool.poetry.dependencies]
1010
python = "~3.11"
11-
coverage = "^7.9.1"
11+
coverage = "^7.10.5"
1212
aws-lambda-typing = "~2.20.0"
13-
boto3 = "~1.38.42"
14-
moto = "^4"
13+
boto3 = "~1.40.20"
14+
moto = "^5.1.11"
1515

1616
[build-system]
1717
requires = ["poetry-core ~= 1.5.0"]

batch_processor_filter/tests/test_lambda_handler.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from unittest.mock import patch
77

88
import botocore
9-
from moto import mock_dynamodb, mock_sqs, mock_s3
9+
from moto import mock_aws
1010

1111
from batch_file_created_event import BatchFileCreatedEvent
1212
from exceptions import InvalidBatchSizeError, EventAlreadyProcessingForSupplierAndVaccTypeError
@@ -22,9 +22,7 @@
2222
s3_client = boto3.client("s3", region_name=REGION_NAME)
2323

2424

25-
@mock_dynamodb
26-
@mock_sqs
27-
@mock_s3
25+
@mock_aws
2826
class TestLambdaHandler(TestCase):
2927
default_batch_file_event: BatchFileCreatedEvent = BatchFileCreatedEvent(
3028
message_id="df0b745c-b8cb-492c-ba84-8ea28d9f51d5",

0 commit comments

Comments
 (0)