Skip to content

Commit efd850d

Browse files
barakbCopilot
andcommitted
chore(deps): combine Dependabot minor/patch + actions bumps
Python (uv): - falkordb ~=1.6.1 (FalkorDB#568) - pymysql ~=1.2.0 (FalkorDB#586) - graphiti-core >=0.29.1 (FalkorDB#589) - python-multipart ~=0.0.29 (FalkorDB#588) - pytest-playwright ~=0.8.0 (FalkorDB#585) - urllib3 2.7.0 transitive (FalkorDB#573) GitHub Actions (SHA pins): - docker/login-action v4 (FalkorDB#579) - docker/metadata-action v6 (FalkorDB#577) - docker/build-push-action v7 (FalkorDB#578) - astral-sh/setup-uv v8.1.0 (FalkorDB#565) - actions/dependency-review-action v4 (FalkorDB#564) npm (app): - @vitejs/plugin-react-swc ^4.3.1, postcss ^8.5.15 (FalkorDB#587) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent f343988 commit efd850d

7 files changed

Lines changed: 60 additions & 58 deletions

File tree

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: 'Checkout repository'
3232
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3333
- name: 'Dependency Review'
34-
uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4
34+
uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v4
3535
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options.
3636
with:
3737
comment-summary-in-pr: always

.github/workflows/publish-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1616

1717
- name: Log in to Docker Hub
18-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
18+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
1919
with:
2020
username: ${{ secrets.DOCKER_USERNAME }}
2121
password: ${{ secrets.DOCKER_PASSWORD }}
2222

2323
- name: Extract metadata (tags, labels) for Docker
2424
id: meta
25-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6
25+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6
2626
with:
2727
images: falkordb/queryweaver
2828

2929
- name: Build and push Docker image
30-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
30+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
3131
with:
3232
context: .
3333
push: true

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
python-version: '3.12'
120120

121121
- name: Install uv
122-
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
122+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
123123
with:
124124
version: "latest"
125125

app/package-lock.json

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

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@
7171
"@types/node": "^22.16.5",
7272
"@types/react": "^18.3.23",
7373
"@types/react-dom": "^18.3.7",
74-
"@vitejs/plugin-react-swc": "^4.3.0",
74+
"@vitejs/plugin-react-swc": "^4.3.1",
7575
"autoprefixer": "^10.4.27",
7676
"eslint": "^9.32.0",
7777
"eslint-plugin-react-hooks": "^5.2.0",
7878
"eslint-plugin-react-refresh": "^0.4.20",
7979
"globals": "^17.3.0",
80-
"postcss": "^8.5.14",
80+
"postcss": "^8.5.15",
8181
"tailwindcss": "^3.4.17",
8282
"typescript": "^5.8.3",
8383
"typescript-eslint": "^8.57.0",

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ classifiers = [
2626
# not optional. redis is provided transitively by falkordb.
2727
dependencies = [
2828
"litellm>=1.83.0",
29-
"falkordb~=1.6.0",
29+
"falkordb~=1.6.1",
3030
"psycopg2-binary~=2.9.12",
31-
"pymysql~=1.1.0",
31+
"pymysql~=1.2.0",
3232
"jsonschema~=4.26.0",
3333
"tqdm~=4.67.3",
3434
"pydantic>=2.0",
@@ -40,7 +40,7 @@ dependencies = [
4040
# queries are run with use_memory=True. Lazily imported by the SDK.
4141
memory = [
4242
"openai>=1.0.0",
43-
"graphiti-core>=0.28.1",
43+
"graphiti-core>=0.29.1",
4444
]
4545

4646
# Server dependencies (FastAPI, auth, etc.). Used to run the full app from a
@@ -50,10 +50,10 @@ server = [
5050
"uvicorn~=0.46.0",
5151
"authlib~=1.7.0",
5252
"itsdangerous~=2.2.0",
53-
"python-multipart~=0.0.27",
53+
"python-multipart~=0.0.29",
5454
"jinja2~=3.1.4",
5555
"fastmcp>=3.2.4",
56-
"graphiti-core>=0.28.1",
56+
"graphiti-core>=0.29.1",
5757
"snowflake-connector-python~=4.4.0",
5858
"aiohttp>=3.13.5",
5959
]
@@ -64,7 +64,7 @@ dev = [
6464
"pytest-asyncio~=1.3.0",
6565
"pylint~=4.0.3",
6666
"playwright~=1.59.0",
67-
"pytest-playwright~=0.7.1",
67+
"pytest-playwright~=0.8.0",
6868
]
6969

7070
# All dependencies (server + dev)
@@ -84,7 +84,7 @@ dev = [
8484
"pytest~=9.0.3",
8585
"pylint~=4.0.3",
8686
"playwright~=1.59.0",
87-
"pytest-playwright~=0.7.1",
87+
"pytest-playwright~=0.8.0",
8888
"pytest-asyncio~=1.3.0",
8989
]
9090

uv.lock

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

0 commit comments

Comments
 (0)