235f738d35
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/shaneisrael/fireshare](https://redirect.github.com/ShaneIsrael/fireshare) | patch | `788e968` → `537f346` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>ShaneIsrael/fireshare (docker.io/shaneisrael/fireshare)</summary> ### [`v1.6.15`](https://redirect.github.com/ShaneIsrael/fireshare/releases/tag/v1.6.15) [Compare Source](https://redirect.github.com/ShaneIsrael/fireshare/compare/v1.6.14...v1.6.15) #### What's Changed ##### Bug Fixes - **Fix blank image cards on sort change** - Changing the sort order could leave image cards in a broken state, showing blank placeholders at the top of the page. Cards now properly reset their load state when the sort changes. ##### Maintenance - **Upgraded axios to 1.17.0** - Updated the axios dependency and migrated from the deprecated `CancelToken` API to the modern `AbortController` + `signal` pattern. ### [`v1.6.14`](https://redirect.github.com/ShaneIsrael/fireshare/releases/tag/v1.6.14) [Compare Source](https://redirect.github.com/ShaneIsrael/fireshare/compare/v1.6.13...v1.6.14) Highly recommended to upgrade to this release. A command injection vulnerability was discovered on the public upload endpoint and has been fixed in this release. #### Bug Fixes - Tightened folder name validation across all upload endpoints to reject names containing spaces, slashes, or parent directory traversal sequences. White spaces are replaced with hyphens for cleaner filename sanitization. - Fixed image uploads losing their original creation date. EXIF DateTimeOriginal is now read first, with fallback to filename date patterns then file modification time - Fixed a crash in create\_posters when a video has no duration metadata </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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. --- - [ ] <!-- rebase-check -->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). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9maXJlc2hhcmUiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: docker.io/shaneisrael/fireshare
|
|
tag: 1.6.15@sha256:537f346a6287a4252b2cd6a41a69fadc700ace8ab2177fe07000550a80de8640
|
|
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
SECRET_KEY:
|
|
secretKeyRef:
|
|
name: fireshare-secrets
|
|
key: SECRET_KEY
|
|
MINUTES_BETWEEN_VIDEO_SCANS: 5
|
|
ADMIN_PASSWORD: "changeme"
|
|
# TODO ADD LDAP
|
|
# LDAP_ENABLE: false
|
|
# LDAP_URL: ""
|
|
# LDAP_BINDDN: ""
|
|
# LDAP_PASSWORD: ""
|
|
# LDAP_BASEDN: ""
|
|
# LDAP_USER_FILTER: ""
|
|
# LDAP_ADMIN_GROUP: ""
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10287
|
|
protocol: http
|
|
targetPort: 80
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: /data
|
|
processeddata:
|
|
enabled: true
|
|
mountPath: /processed
|
|
videos:
|
|
enabled: true
|
|
mountPath: /videos
|
|
images:
|
|
enabled: true
|
|
mountPath: /images
|