Skip to content

Commit 3fe82cb

Browse files
authored
Merge branch 'main' into dependabot/pip/pylint-3.3.7
2 parents 3b57768 + 045cadb commit 3fe82cb

File tree

7 files changed

+26
-26
lines changed

7 files changed

+26
-26
lines changed

api/terraform/python/layer_langchain/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# --------------------------
1313
langchain
1414
#langchain-experimental
15-
langchain-openai==0.3.18
15+
langchain-openai==0.3.27

api/terraform/python/layer_nlp/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# requirements in the zip package for this layer.
99
# -----------------------------------------------------------------------------
1010

11-
pyyaml==6.0.1
11+
pyyaml==6.0.2
1212

1313
# NLP requirements
1414
# --------------------------

api/terraform/python/layer_openai/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
# generative AI requirements
1212
# --------------------------
13-
openai==1.82.1
13+
openai==1.93.0
1414

1515
# general requirements
1616
# --------------------------
17-
pydantic==2.11.5
18-
pydantic-settings==2.9.1
19-
python-dotenv==1.1.0
17+
pydantic==2.11.7
18+
pydantic-settings==2.10.1
19+
python-dotenv==1.1.1
2020
python-hcl2==7.2.1

api/terraform/route53.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ resource "aws_route53_record" "api" {
5353
module "acm" {
5454
count = var.create_custom_domain ? 1 : 0
5555
source = "terraform-aws-modules/acm/aws"
56-
version = "~> 5.0"
56+
version = "~> 6.0"
5757

5858
# un-comment this if you choose a region other than us-east-1
5959
# providers = {

api/terraform/terraform.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ terraform {
2121
required_providers {
2222
aws = {
2323
source = "hashicorp/aws"
24-
version = "~> 5.31"
24+
version = "~> 6.0"
2525
}
2626
null = {
2727
source = "hashicorp/null"

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"preview": "vite preview --port 8080"
1111
},
1212
"dependencies": {
13-
"dotenv": "^16.3.1",
13+
"dotenv": "^17.0.0",
1414
"i": "^0.3.7",
1515
"npm": "^11.0.0",
1616
"react": "^19.0.0",
@@ -31,6 +31,6 @@
3131
"eslint-plugin-react": "^7.33.2",
3232
"eslint-plugin-react-hooks": "^5.0.0",
3333
"eslint-plugin-react-refresh": "^0.4.5",
34-
"vite": "^6.0.1"
34+
"vite": "^7.0.0"
3535
}
3636
}

requirements.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,37 +10,37 @@
1010

1111
# dev and test
1212
# ------------
13-
boto3==1.36.11
13+
boto3==1.39.0
1414
botocore>=1.35.10
15-
pytest==8.3.5
15+
pytest==8.4.1
1616
pytest_mock==3.14.1
17-
requests==2.32.3
17+
requests==2.32.4
1818

1919
# Code linters, formatters, and security scanners
2020
# ------------
2121
black==25.1.0
22-
flake8==7.2.0
22+
flake8==7.3.0
2323
flake8-coding==1.3.2
2424
pre-commit==4.2.0
2525
isort==6.0.1
26-
mypy==1.14.1
2726
pylint==3.3.7
28-
bandit==1.8.3
27+
mypy==1.16.1
28+
bandit==1.8.5
2929
pydocstringformatter==0.7.3
30-
tox==4.26.0
31-
codespell==2.3.0
32-
coverage==7.8.2
30+
tox==4.27.0
31+
codespell==2.4.1
32+
coverage==7.9.1
3333

3434
# Lambda layer: openai
3535
# ------------
36-
openai==1.70.0
36+
openai==1.93.0
3737

3838
# Lambda layer: common
3939
# ------------
40-
python-dotenv==1.1.0
41-
pydantic==2.11.5
42-
pydantic-settings==2.9.1
43-
python-hcl2==5.1.1
40+
python-dotenv==1.1.1
41+
pydantic==2.11.7
42+
pydantic-settings==2.10.1
43+
python-hcl2==7.2.1
4444

4545
# Lambda layer: langchain
4646
# ------------
@@ -50,11 +50,11 @@ langchain-openai
5050

5151
# Lambda layer: nlp
5252
# ------------
53-
python-Levenshtein==0.26.1
53+
python-Levenshtein==0.27.1
5454
pyyaml
5555

5656
# weather function
5757
googlemaps==4.10.0
58-
openmeteo-requests==1.4.0
58+
openmeteo-requests==1.5.0
5959
requests-cache==1.2.1
6060
retry-requests==2.0.0

0 commit comments

Comments
 (0)