Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 13, 2024
1 parent cb516e4 commit 39fea03
Show file tree
Hide file tree
Showing 14 changed files with 375 additions and 481 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conventional-commit-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: PR Conventional Commit Validation
uses: ytanikin/PRConventionalCommits@1.2.0
uses: ytanikin/PRConventionalCommits@1.3.0
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
add_label: "false"
2 changes: 1 addition & 1 deletion .github/workflows/frontend-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- run: npm run coverage

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.5.0
uses: codecov/codecov-action@v4.6.0
with:
verbose: true
token: ${{ secrets.codecov_token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ jobs:
- run: pip install pytest-cov
- run: pytest tests/unit --cov=backend --cov-report=xml --cov-branch
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@v3.0.0
uses: sonarsource/sonarcloud-github-action@v3.1.0
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
6 changes: 3 additions & 3 deletions backend/database_handler/migration/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SQLAlchemy==2.0.35
alembic==1.13.2
psycopg2-binary==2.9.9
SQLAlchemy==2.0.36
alembic==1.14.0
psycopg2-binary==2.9.10
rlp
eth-utils
eth-hash[pycryptodome]
22 changes: 11 additions & 11 deletions backend/protocol_rpc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Flask-JSONRPC==3.0.1
Flask[async]==3.0.3
flask-socketio==5.3.7
Flask[async]==3.1.0
flask-socketio==5.4.1
Flask-Cors==5.0.0
psycopg2-binary>=2.9.9
requests==2.32.3
Expand All @@ -11,15 +11,15 @@ numpy==1.26.4
pytest==8.3.3
pytest-asyncio==0.24.0
colorama==0.4.6
debugpy==1.8.5
aiohttp==3.10.5
openai==1.47.0
anthropic==0.34.2
SQLAlchemy[asyncio]==2.0.35
alembic==1.13.2
eth-account==0.13.3
eth-utils==5.0.0
sentence-transformers==3.1.1
debugpy==1.8.8
aiohttp==3.11.0
openai==1.54.4
anthropic==0.39.0
SQLAlchemy[asyncio]==2.0.36
alembic==1.14.0
eth-account==0.13.4
eth-utils==5.1.0
sentence-transformers==3.3.0
Flask-SQLAlchemy==3.1.1
jsf==0.11.2
jsonschema==4.23.0
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ services:
- "${WEBREQUESTPORT}"

ollama:
image: ollama/ollama:0.3.11
image: ollama/ollama:0.4.1
ports:
- 11434:11434
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.backend
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.6-slim AS base
FROM python:3.13.0-slim AS base

ARG path=/app
WORKDIR $path
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.database-migration
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# base image mostly copied from Dockerfile.backend to reuse cache
FROM python:3.12.6-slim AS base
FROM python:3.13.0-slim AS base

ARG path=/app
WORKDIR $path
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.webrequest
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 python:3.12.6-slim
FROM --platform=linux/amd64 python:3.13.0-slim

RUN apt-get update && \
apt-get install -y --no-install-recommends wget gnupg && \
Expand Down
Loading

0 comments on commit 39fea03

Please sign in to comment.