From e55a945bed0b4ddabafc7119c495bdb473062f73 Mon Sep 17 00:00:00 2001 From: TrueCharts Bot Date: Sat, 21 Jun 2025 20:44:22 +0200 Subject: [PATCH] =?UTF-8?q?chore(helm):=20update=20image=20docker.io/fileb?= =?UTF-8?q?rowser/filebrowser=20v2.32.3=20=E2=86=92=20v2.33.2=20(#36526)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/filebrowser/filebrowser](https://redirect.github.com/filebrowser/filebrowser) | minor | `9a14d4f` -> `57a7a97` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes
filebrowser/filebrowser (docker.io/filebrowser/filebrowser) ### [`v2.33.2`](https://redirect.github.com/filebrowser/filebrowser/releases/tag/v2.33.2) [Compare Source](https://redirect.github.com/filebrowser/filebrowser/compare/v2.33.1...v2.33.2) #### Changelog - [`ffb858e`](https://redirect.github.com/filebrowser/filebrowser/commit/ffb858e4ef17d59ac3be91d80cb8df8057aa812c) chore(release): 2.33.2 - [`0ca8059`](https://redirect.github.com/filebrowser/filebrowser/commit/0ca8059d8dea4fe079146471ce4f24acc96021f2) fix: create user dir on signup ### [`v2.33.1`](https://redirect.github.com/filebrowser/filebrowser/releases/tag/v2.33.1) [Compare Source](https://redirect.github.com/filebrowser/filebrowser/compare/v2.33.0...v2.33.1) #### Changelog - [`8ca0804`](https://redirect.github.com/filebrowser/filebrowser/commit/8ca080422fd154d907a3a120ef7e628e6dec6e56) chore(release): 2.33.1 - [`cbb7124`](https://redirect.github.com/filebrowser/filebrowser/commit/cbb712484d3bdabc033acaf3b696ef4f5865813d) fix: remove auth query parameter from download and preview links - [`8a14018`](https://redirect.github.com/filebrowser/filebrowser/commit/8a14018861fe581672bbd27cdc3ae5691f70a108) fix: downloadUrl of file preview ([#​3728](https://redirect.github.com/filebrowser/filebrowser/issues/3728)) - [`a493ec9`](https://redirect.github.com/filebrowser/filebrowser/commit/a493ec90ff7d7b4fdf2c054163a9262cb889a7fc) docs: add more docker notes - [`3311303`](https://redirect.github.com/filebrowser/filebrowser/commit/33113036cd3fa950c3862c382abe45fd2086af61) docs: update security.md - [`a02b297`](https://redirect.github.com/filebrowser/filebrowser/commit/a02b2972ebde2a58806ad1377bad46e748b63166) fix: search uses ctrl+shift+f instead of hijacking browser's ctrl+f ([#​4638](https://redirect.github.com/filebrowser/filebrowser/issues/4638)) ### [`v2.33.0`](https://redirect.github.com/filebrowser/filebrowser/releases/tag/v2.33.0) [Compare Source](https://redirect.github.com/filebrowser/filebrowser/compare/v2.32.3...v2.33.0) #### Docker Image Updates Two breaking changes have been done to the Alpine Docker images in order to address issues have been having for some time: - **User**: File Browser no longer runs as `root`, but as user with PID 1000 and GID 1000 by default. - **Volumes**: The volumes with the database and configuration are now aligned with the s6-overlay images. Assuming you have a `database.db`, a `.filebrowser.json` and the data in `/data`, do the following: 1. Change the path of `database` in `.filebrowser.json` to `/database/filebrowser.db` 2. Rename `database.db` to `filebrowser.db` 3. Rename `.filebrowser.json` to `settings.json` 4. Put them in the same directory locally, let's say `/app/filebrowser/` 5. Change the permissions of both files: `sudo chown 1000:1000 /app/filebrowser/filebrowser.db /app/filebrowser/settings.json /data` 6. Mount with the flags `-v /app/filebrowser:/database -v /app/filebrowser:/config` - you can also choose to put them in separate directories, but it is not needed. For more details, check the documentation: https://github.com/filebrowser/filebrowser/blob/v2.33.0/docs/installation.md#docker. #### Changelog - [`e9bb3dc`](https://redirect.github.com/filebrowser/filebrowser/commit/e9bb3dc243eb64b2a7da1bd17feb26bd83e06216) chore(release): 2.33.0 - [`2e26393`](https://redirect.github.com/filebrowser/filebrowser/commit/2e26393a022df0eaa9e08727407aba8b997aa728) feat: improved docker image volumes and permissions ([#​5160](https://redirect.github.com/filebrowser/filebrowser/issues/5160))
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). --- charts/stable/filebrowser/Chart.yaml | 4 ++-- charts/stable/filebrowser/values.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/stable/filebrowser/Chart.yaml b/charts/stable/filebrowser/Chart.yaml index 3b4fac7d49c..2fd7dfd797f 100644 --- a/charts/stable/filebrowser/Chart.yaml +++ b/charts/stable/filebrowser/Chart.yaml @@ -9,7 +9,7 @@ annotations: truecharts.org/min_helm_version: "3.14" truecharts.org/train: stable apiVersion: v2 -appVersion: 2.32.3 +appVersion: 2.33.2 dependencies: - name: common version: 25.4.10 @@ -36,5 +36,5 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/filebrowser - https://hub.docker.com/r/filebrowser/filebrowser type: application -version: 11.7.1 +version: 11.8.0 diff --git a/charts/stable/filebrowser/values.yaml b/charts/stable/filebrowser/values.yaml index 1ba7ccf9d04..2fb7fb502d5 100644 --- a/charts/stable/filebrowser/values.yaml +++ b/charts/stable/filebrowser/values.yaml @@ -1,7 +1,7 @@ image: repository: docker.io/filebrowser/filebrowser pullPolicy: IfNotPresent - tag: v2.32.3@sha256:9a14d4f683ec0807f213fb58371845f9ac1bfd749f4e7fe897a64c1f619b000c + tag: v2.33.2@sha256:57a7a972787ae64ca4d26c2c3cb2cdd05f258e8aca250ade6ea2c206341c03bd workload: main: podSpec: