-
-
Notifications
You must be signed in to change notification settings - Fork 264
Update filebrowser to v2.32.0 #1858
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
base: master
Are you sure you want to change the base?
Conversation
WalkthroughThe changes update the Filebrowser addon to use version 2.32.0, including a new changelog entry, a switch to a new image repository and version in the build configuration, and an explicit ingress port mapping in the addon configuration. The internal service port is now bound to host port 8071, and the version number is updated accordingly. The update metadata was also refreshed to reflect the newer version and update date. No changes were made to code logic or exported entities. Changes
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
✅ Files skipped from review due to trivial changes (1)
⏰ Context from c 8000 hecks skipped due to timeout of 90000ms (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (3)
filebrowser/CHANGELOG.md
(1 hunks)filebrowser/build.json
(1 hunks)filebrowser/config.json
(3 hunks)
🧰 Additional context used
🪛 GitHub Actions: PR Check Build
filebrowser/CHANGELOG.md
[error] 1-1: No new entries in filebrowser CHANGELOG.md file!
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: Codacy Static Code Analysis
🔇 Additional comments (4)
filebrowser/build.json (1)
3-5
: Upgrade base image references.
Thebuild_from
entries now correctly point tofilebrowser/filebrowser:v2.32.0
for all architectures. Verify that this repository and tag exist (per your local testing screenshot). Otherwise, this lgtm.filebrowser/config.json (3)
84-84
: Validateingress_port
usage.
You’ve added"ingress_port": 8071
. Please confirm this key is supported by the Home Assistant addon schema and won’t conflict withingress: true
.
106-106
: Map container port to host port.
The"8080/tcp": 8071
mapping aligns with your ingress port—but if you rely solely on ingress, this direct host mapping may be unnecessary. Ensure port 8071 isn’t already in use on the host.
131-131
: Bump addon version.
Version updated to"2.32.0"
, matchingbuild.json
and your new changelog entry. Looks good.
## 2.32.0 (03-04-2025) | ||
|
||
- Update to latest image | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Fix CHANGELOG entry format to satisfy CI.
The pipeline check reports no new entries detected. Ensure your new release header and bullet use the exact style the CI expects (e.g., a blank line after the header and *
for list items). For example:
-## 2.32.0 (03-04-2025)
-
-- Update to latest image
+## 2.32.0 (03-04-2025)
+
+* Update to latest image
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
## 2.32.0 (03-04-2025) | |
- Update to latest image | |
## 2.32.0 (03-04-2025) | |
* Update to latest image |
🧰 Tools
🪛 GitHub Actions: PR Check Build
[error] 1-1: No new entries in filebrowser CHANGELOG.md file!
Hi, have you tested file upload? This is the part failing thanks |
Ahh, seems like you are right, the upload only works if you access it outside of ingress. |
We would need to find a way to disable TUS. I tried a bit but couldn't find how |
I am hoping this will fix it: |
Tested locally:
Summary by CodeRabbit
New Features
Chores