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 nextcloud to version v29.0.6 #1455

Merged
merged 2 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions nextcloud/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.7"

Check notice on line 1 in nextcloud/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "web"

The default container user "root" can lead to security vulnerabilities. If you are using the root user, please try to specify a different user (e.g. "1000:1000") in the compose file or try to set the UID/PUID and GID/PGID environment variables to 1000.

Check notice on line 1 in nextcloud/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "cron"

The default container user "root" can lead to security vulnerabilities. If you are using the root user, please try to specify a different user (e.g. "1000:1000") in the compose file or try to set the UID/PUID and GID/PGID environment variables to 1000.

services:
app_proxy:
Expand Down Expand Up @@ -28,7 +28,7 @@
- "${APP_DATA_DIR}/data/redis:/data"

web:
image: nextcloud:29.0.5-apache@sha256:5bbc6e9f207bfddd1515ac82f647c19edf6cdd075d7d253c3118a87c835204f0
image: nextcloud:29.0.6-apache@sha256:c437d628c117e0508e45c6d1d89f5fba236c092ade7d0cc28d629d581bea161c
# Currently needs to be run as root, if we run as uid 1000 this fails
# https://github.com/nextcloud/docker/blob/05026b029d37fc5cd488d4a4a2a79480e39841ba/21.0/apache/entrypoint.sh#L53-L77
# user: "1000:1000"
Expand All @@ -51,7 +51,7 @@
- redis

cron:
image: nextcloud:29.0.5-apache@sha256:5bbc6e9f207bfddd1515ac82f647c19edf6cdd075d7d253c3118a87c835204f0
image: nextcloud:29.0.6-apache@sha256:c437d628c117e0508e45c6d1d89f5fba236c092ade7d0cc28d629d581bea161c
# Currently needs to be run as root, if we run as uid 1000 this fails
# https://github.com/nextcloud/docker/blob/05026b029d37fc5cd488d4a4a2a79480e39841ba/21.0/apache/entrypoint.sh#L53-L77
# user: "1000:1000"
Expand All @@ -61,4 +61,4 @@
entrypoint: /cron.sh
depends_on:
- db
- redis
- redis
4 changes: 2 additions & 2 deletions nextcloud/hooks/pre-start
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ VERSIONS+=( "25.0.1.1" )
VERSIONS+=( "26.0.9.1" )
VERSIONS+=( "27.0.2.1" )
VERSIONS+=( "28.0.3.2" )
VERSIONS+=( "29.0.5.1" )
VERSIONS+=( "29.0.6.1" )


IMAGES=()
Expand All @@ -33,7 +33,7 @@ IMAGES+=( "nextcloud:25.0.1-apache@sha256:a200319b132c01ec3486e0dcaf052092b560ec
IMAGES+=( "nextcloud:26.0.9-apache@sha256:23180fbe8169d428ce0058bfc8d47793628a16e00e40b495d82e4504a124b3fa" )
IMAGES+=( "nextcloud:27.0.2-apache@sha256:3c8040278bdc991cbc025278eaffc4978a9c2fd4ac34e95b10f646dcadb7c3fb" )
IMAGES+=( "nextcloud:28.0.3-apache@sha256:ed07f89119dcca2a3711897c48a8ac969542d96d69384445d8fcdc7804ca946f" )
IMAGES+=( "nextcloud:29.0.5-apache@sha256:5bbc6e9f207bfddd1515ac82f647c19edf6cdd075d7d253c3118a87c835204f0" )
IMAGES+=( "nextcloud:29.0.6-apache@sha256:c437d628c117e0508e45c6d1d89f5fba236c092ade7d0cc28d629d581bea161c" )

find_index() {
local -r value="${1}"
Expand Down
7 changes: 5 additions & 2 deletions nextcloud/umbrel-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifestVersion: 1.1
id: nextcloud
category: files
name: Nextcloud
version: "29.0.5"
version: "29.0.6"
tagline: Productivity platform that keeps you in control
description: >-
Nextcloud puts your data at your fingertips, under your control.
Expand All @@ -25,13 +25,16 @@ description: >-

Note: After logging in to Nextcloud please change the password to something secure before sharing the address with anyone.
releaseNotes: >-
⚠️ If you are upgrading from a version older than 29.0.4, this update may take several minutes to complete. Please be patient.
⚠️ This update may take several minutes to complete. Please be patient.


Key highlights:
- Enhanced performance and stability
- Improved file sharing and collaboration features
- Various security enhancements
- Fixed issues with user status automation
- Optimized query for share ownership
- Improved UI elements for group managers


Full release notes can be found at https://github.com/nextcloud/server/releases
Expand Down