Skip to content

Commit 07c132a

Browse files
committed
Merge branch 'main' into beta
2 parents f896a96 + 719057b commit 07c132a

6 files changed

Lines changed: 22 additions & 22 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/local.txt') }}

.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
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v6
2424

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"@semantic-release/github": "^12.0.1",
1212
"@semantic-release/release-notes-generator": "^14.0.0",
1313
"prettier": "^3.1.1",
14-
"typescript": "^5.2.2"
14+
"typescript": "^6.0.2"
1515
}
1616
}

requirements/base.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11

22
isort==6.0.1
3-
langchain==0.3.27
3+
langchain==1.2.14
44
langchain-community==0.4.1
55
langchain-core==1.1.0
6-
langchain-experimental==0.3.4
7-
langchain-openai==1.0.1
6+
langchain-experimental==0.4.1
7+
langchain-openai==1.1.12
88
langchain-pinecone==0.2.12
9-
langchain-tests==1.0.2
9+
langchain-tests==1.1.2
1010
langchain-text-splitters==1.0.0
1111
langchainhub==0.1.21
12-
langsmith==0.4.39
13-
openai==2.6.1
12+
langsmith==0.7.9
13+
openai==2.14.0
1414
pinecone==8.0.0
1515
pinecone-text
1616
pydantic
1717
pydantic-settings
1818
pydantic_core
1919
python-decouple==3.8
2020
python-dotenv==1.2.1
21-
pypdf==6.1.3
21+
pypdf==6.7.4
2222
tiktoken==0.12.0

requirements/local.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33

44
# dev and test
55
# ------------
6-
pytest==9.0.1
7-
pytest_mock==3.14.1
6+
pytest==9.0.2
7+
pytest_mock==3.15.1
88

99
# Code linters, formatters, and security scanners
1010
# ------------
11-
black==25.11.0
11+
black==26.1.0
1212
flake8==7.3.0
1313
flake8-coding==1.3.2
14-
pre-commit==4.2.0
14+
pre-commit==4.5.1
1515
isort==6.0.1
16-
mypy==1.17.1
17-
pylint==4.0.4
18-
bandit==1.8.6
16+
mypy==1.20.0
17+
pylint==4.0.5
18+
bandit==1.9.3
1919
pydocstringformatter==0.7.5
20-
tox==4.27.0
21-
codespell==2.4.1
22-
pylint==4.0.4
20+
tox==4.34.1
21+
codespell==2.4.2
22+
pylint==4.0.5

0 commit comments

Comments
 (0)