From 289c8e6f32eb520cc711389f6b6a4ed94a73ecd4 Mon Sep 17 00:00:00 2001 From: M A E R Y O Date: Wed, 9 Aug 2023 05:29:03 +0900 Subject: [PATCH 1/2] fix: 403 error error when uploading (#2598) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 김종성 --- http/tus_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/tus_handlers.go b/http/tus_handlers.go index 88b2bca1..15003cce 100644 --- a/http/tus_handlers.go +++ b/http/tus_handlers.go @@ -40,7 +40,7 @@ func tusPostHandler() handleFunc { return errToStatus(err), err } - fileFlags := os.O_CREATE + fileFlags := os.O_CREATE | os.O_WRONLY if r.URL.Query().Get("override") == "true" { fileFlags |= os.O_TRUNC } From 184b7c14f277e5363c0e1b6d9721fc5ab87dd079 Mon Sep 17 00:00:00 2001 From: Oleg Lobanov Date: Tue, 8 Aug 2023 22:30:21 +0200 Subject: [PATCH 2/2] chore(release): 2.24.2 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bb2d07e..43178270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [2.24.2](https://github.com/filebrowser/filebrowser/compare/v2.24.1...v2.24.2) (2023-08-08) + + +### Bug Fixes + +* 403 error error when uploading ([#2598](https://github.com/filebrowser/filebrowser/issues/2598)) ([289c8e6](https://github.com/filebrowser/filebrowser/commit/289c8e6f32eb520cc711389f6b6a4ed94a73ecd4)) +* config init for branding.disableUsedPercentage ([#2576](https://github.com/filebrowser/filebrowser/issues/2576)) ([#2596](https://github.com/filebrowser/filebrowser/issues/2596)) ([ff1e0b8](https://github.com/filebrowser/filebrowser/commit/ff1e0b8185faf14b1f8e91830ca5e71e68ab672e)) + + +### Build + +* add riscv64 binary releases ([#2587](https://github.com/filebrowser/filebrowser/issues/2587)) ([0ac3968](https://github.com/filebrowser/filebrowser/commit/0ac39684f175487314e97403406f4d2c482e3d79)) + ### [2.24.1](https://github.com/filebrowser/filebrowser/compare/v2.24.0...v2.24.1) (2023-07-31)