Skip to content

Commit

Permalink
Update to Seafile 9.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
antontkv committed Oct 22, 2023
1 parent acfc17e commit 2646ff8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ RUN set -eux; \
captcha==0.4 \
django-simple-captcha==0.5.17 \
django-ranged-response==0.2.0 \
pycryptodome==3.15.0 \
Pillow==9.2.0 \
pycryptodome==3.16.0 \
Pillow==9.3.0 \
; \
# Installing Seafdav dependencies
pip3 install --no-cache-dir --no-dependencies \
markupsafe==2.0.1 \
Jinja2~=2.10 \
sqlalchemy==1.4.41 \
sqlalchemy==1.4.44 \
lxml==4.9.1

ENV PYTHONPATH=/seafile/server/seafile-server/seahub/thirdpart:/seafile/server/seafile-server/seafile/lib/python3/site-packages
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SEAFILE_VERSION = 9.0.9
SEAFILE_VERSION = 9.0.10

.PHONY: help
help: ## Show help
Expand Down
2 changes: 1 addition & 1 deletion container_scripts/setup_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def do_major_update(current_ver: str, old_ver: str) -> None:
update_7_1__8_0 = os.path.join(SERVER_PATH, "upgrade/upgrade_7.1_8.0.sh")
update_8_0__9_0 = os.path.join(SERVER_PATH, "upgrade/upgrade_8.0_9.0.sh")
update_map = {
("9.0.2", "9.0.3", "9.0.4", "9.0.5", "9.0.6", "9.0.7", "9.0.8", "9.0.9"): {
("9.0.2", "9.0.3", "9.0.4", "9.0.5", "9.0.6", "9.0.7", "9.0.8", "9.0.9", "9.0.10"): {
("8.0.2", "8.0.3", "8.0.4", "8.0.5", "8.0.6", "8.0.7", "8.0.8"): (update_8_0__9_0,),
("7.1.3", "7.1.4", "7.1.5"): (update_7_1__8_0, update_8_0__9_0),
},
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ volumes:

services:
seafile:
image: ghcr.io/antontkv/seafile:9.0.9
image: ghcr.io/antontkv/seafile:9.0.10
container_name: seafile
environment:
TZ:
Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class SeafileContainerSetup:
def __init__(self) -> None:
self._docker_client = docker.from_env()
self._container_args = dict(
image="ghcr.io/antontkv/seafile:9.0.9",
image="ghcr.io/antontkv/seafile:9.0.10",
name="test-seafile",
detach=True,
volumes={"test-seafile": {"bind": "/seafile/data", "mode": "rw"}},
Expand Down

0 comments on commit 2646ff8

Please sign in to comment.