Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Update all non-major dependencies #627

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion admin-frontend/package.json
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"@types/react": "^18.3.7",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
52 changes: 26 additions & 26 deletions admin-frontend/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -12,8 +12,8 @@
},
"devDependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.15",
"vue": "^3.5.6",
"vue": "^3.5.8",
"vuepress": "2.0.0-rc.15",
"vuepress-theme-hope": "2.0.0-rc.52"
"vuepress-theme-hope": "2.0.0-rc.53"
}
}
1,581 changes: 1,046 additions & 535 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions poetry.lock
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ qrcode = "^7.4.2"
pydantic = ">=2.9.2,<3.0.0,!=2.5.0,!=2.5.1"
lxml = ">=5.3.0"
yarl = ">=1.11.1"
hishel = "^0.0.30"
hishel = "^0.0.31"
expiringdictx = "^1.1.0"
rapidfuzz = "^3.9.7"

@@ -50,7 +50,7 @@ isort = "^5.13.2"
nonemoji = "^0.1.4"
nb-cli = "^1.4.2"
pre-commit = "^3.8.0"
ruff = "^0.6.5"
ruff = "^0.6.7"

[tool.poetry.group.test.dependencies]
flaky = "^3.8.1"

Unchanged files with check annotations Beta

# syntax=docker/dockerfile:1.10
FROM python:3.11-slim-bullseye as base

Check warning on line 2 in docker/Dockerfile_with_frontend

GitHub Actions / Docker main

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM base as builder

Check warning on line 4 in docker/Dockerfile_with_frontend

GitHub Actions / Docker main

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
ENV PYTHONFAULTHANDLER=1 \

Check warning on line 6 in docker/Dockerfile_with_frontend

GitHub Actions / Docker main

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PYTHONPATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
PYTHONUNBUFFERED=1 \
PYTHONHASHSEED=random \
PIP_NO_CACHE_DIR=off \
RUN poetry export --only=main,docker --without-hashes --no-interaction --no-ansi -f requirements.txt -o requirements.txt
RUN pip install --prefix=/runtime --force-reinstall -r requirements.txt
FROM base as runtime

Check warning on line 28 in docker/Dockerfile_with_frontend

GitHub Actions / Docker main

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
WORKDIR /app
RUN --mount=type=cache,target=/var/cache/apt \