Skip to content

Commit 075f067

Browse files
committed
Merge branch 'main' into next-major
2 parents c8df6b0 + bf7730e commit 075f067

9 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/precommitVersionBumps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
git pull origin next
3434
3535
- name: Cache NPM dependencies
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ~/.npm
3939
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
4040
restore-keys: |
4141
${{ runner.os }}-node
4242
4343
- name: Cache Python dependencies
44-
uses: actions/cache@v4
44+
uses: actions/cache@v5
4545
with:
4646
path: ~/.cache/pip
4747
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

.github/workflows/runTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v6
1919

2020
- name: Configure AWS credentials
21-
uses: aws-actions/configure-aws-credentials@v5
21+
uses: aws-actions/configure-aws-credentials@v6
2222
with:
2323
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
2424
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

.github/workflows/semanticVersionBump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
persist-credentials: false
3333

3434
- name: Cache NPM dependencies
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ~/.npm
3838
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/testsPython.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v6
2525

2626
- name: Configure AWS credentials
27-
uses: aws-actions/configure-aws-credentials@v5
27+
uses: aws-actions/configure-aws-credentials@v6
2828
with:
2929
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
3030
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

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==1.1.0
15+
langchain-openai==1.1.10

api/terraform/python/layer_nlp/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ pyyaml
1818
# weather function
1919
# --------------------------
2020
googlemaps==4.10.0
21-
openmeteo-requests==1.7.4
22-
requests-cache==1.2.1
21+
openmeteo-requests==1.7.5
22+
requests-cache==1.3.1
2323
retry-requests==2.0.0

api/terraform/python/layer_openai/requirements.txt

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

1111
# generative AI requirements
1212
# --------------------------
13-
openai==2.8.1
13+
openai==2.30.0
1414

1515
# general requirements
1616
# --------------------------
1717
pydantic==2.12.5
18-
pydantic-settings==2.12.0
18+
pydantic-settings==2.13.1
1919
python-dotenv==1.2.1
2020
python-hcl2==7.3.1

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"@typescript-eslint/eslint-plugin": "^8.0.0",
2828
"@typescript-eslint/parser": "^8.3.0",
2929
"@vitejs/plugin-react": "^5.0.2",
30-
"eslint": "^9.11.1",
30+
"eslint": "^10.0.2",
3131
"eslint-plugin-react": "^7.33.2",
3232
"eslint-plugin-react-hooks": "^7.0.1",
33-
"eslint-plugin-react-refresh": "^0.4.5",
33+
"eslint-plugin-react-refresh": "^0.5.2",
3434
"vite": "^7.0.0"
3535
}
3636
}

requirements.txt

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

1111
# dev and test
1212
# ------------
13-
boto3==1.40.21
13+
boto3==1.42.80
1414
botocore>=1.35.10
15-
pytest==8.4.1
15+
pytest==9.0.2
1616
pytest_mock==3.15.1
1717
requests==2.32.5
1818

@@ -21,25 +21,25 @@ requests==2.32.5
2121
black==25.9.0
2222
flake8==7.3.0
2323
flake8-coding==1.3.2
24-
pre-commit==4.5.0
24+
pre-commit==4.5.1
2525
isort==7.0.0
26-
pylint==4.0.4
27-
mypy==1.19.0
28-
bandit==1.8.6
26+
pylint==4.0.5
27+
mypy==1.19.1
28+
bandit==1.9.3
2929
pydocstringformatter==0.7.5
30-
tox==4.32.0
30+
tox==4.46.3
3131
codespell==2.4.1
32-
coverage==7.10.6
32+
coverage==7.13.4
3333

3434
# Lambda layer: openai
3535
# ------------
36-
openai==2.6.1
36+
openai==2.24.0
3737

3838
# Lambda layer: common
3939
# ------------
4040
python-dotenv==1.2.1
4141
pydantic==2.12.5
42-
pydantic-settings==2.11.0
42+
pydantic-settings==2.13.1
4343
python-hcl2==7.3.1
4444

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

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

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

0 commit comments

Comments
 (0)