Skip to content
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
4 changes: 2 additions & 2 deletions nextcloud/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version: "3.7"

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

web:
image: nextcloud:32.0.6-apache@sha256:0e1084cc59df77bec7d6bb29d9ac6939da8372512237a9c51f74ff0a970524f2
image: nextcloud:33.0.0-apache@sha256:ff2cbaab14c85e587b5541e3aff4216a8a484e06424ebae661581937c0c8da0c
# 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 @@ -60,7 +60,7 @@
condition: service_started

cron:
image: nextcloud:32.0.6-apache@sha256:0e1084cc59df77bec7d6bb29d9ac6939da8372512237a9c51f74ff0a970524f2
image: nextcloud:33.0.0-apache@sha256:ff2cbaab14c85e587b5541e3aff4216a8a484e06424ebae661581937c0c8da0c
# 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 Down
2 changes: 2 additions & 0 deletions nextcloud/hooks/pre-start
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ VERSIONS+=( "29" )
VERSIONS+=( "30" )
VERSIONS+=( "31" )
VERSIONS+=( "32" )
VERSIONS+=( "33" )

# List of Nextcloud major version images to migrate to
IMAGES=()
Expand All @@ -36,6 +37,7 @@ IMAGES+=( "nextcloud:29.0.7-apache@sha256:3bcd2afa9d02fccc52251712bee1afc4f5891b
IMAGES+=( "nextcloud:30.0.5-apache@sha256:02441f524c6fab3aadbf7157f6e0484927e231d685b248dc0734fa2941b4445e" )
IMAGES+=( "nextcloud:31.0.9-apache@sha256:11f158050216614d585886600445e0a1b75ee224d6a6dddc5eba996cc9499fa6" )
IMAGES+=( "nextcloud:32.0.6-apache@sha256:0e1084cc59df77bec7d6bb29d9ac6939da8372512237a9c51f74ff0a970524f2" )
IMAGES+=( "nextcloud:33.0.0-apache@sha256:ff2cbaab14c85e587b5541e3aff4216a8a484e06424ebae661581937c0c8da0c" )

find_index() {
local -r value="${1}"
Expand Down
16 changes: 13 additions & 3 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: "32.0.6"
version: "33.0.0"
tagline: Productivity platform that keeps you in control
description: >-
Nextcloud puts your data at your fingertips, under your control.
Expand All @@ -25,8 +25,18 @@ description: >-

Note: After logging in to Nextcloud please change the password to something secure before sharing the address with anyone.
releaseNotes: >-
This update includes bug fixes and improvements:
- Various bug fixes and stability improvements
This update includes new features, improvements and bug fixes:
- 🏡 Easier data migration and portability
- 🌐 Expanded federation (Deck, Calendar, Teams across servers)
- 🔐 Enhanced security (browser E2EE, calendar invite restrictions)
- 💬 Nextcloud Talk upgrades (pinning, scheduling, live translations)
- 📧 Mail improvements (attachments overview, auto calendar invites, compact mode)
- 📊 Nextcloud Office usability boosts (document compare, sheet views, table design)
- 🎨 Whiteboard enhancements (timers, voting, reactions, version history)
- 🤖 Nextcloud Assistant AI improvements (content labels, memories, faster models)
- ⚡ Performance improvements & new ADA engine
- 🧩 New developer APIs and updated platform components
- 📱 Desktop & mobile client updates (better VFS, performance, accessibility)


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