From c199a746cab52c3acc5a3a7a589bb0890a52f28c Mon Sep 17 00:00:00 2001 From: Michael Habinsky Date: Tue, 22 Oct 2024 10:52:18 -0600 Subject: [PATCH] v1.6.0 (Update changelog and roll version) (#348) --- CHANGELOG.md | 15 +++++++++++++++ build/windows_installer_build.iss | 4 ++-- build/windows_installer_build_no_gui.iss | 4 ++-- common/types.go | 2 +- 4 files changed, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38674653f..cb178e855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Cloudfuse Changelog # +## **1.6.0** ## + +October 22nd 2024 +This version is based on [blobfuse2 2.3.2](https://github.com/Azure/azure-storage-fuse/releases/tag/blobfuse2-2.3.2) (upstream). + +### Changes ### + +- [#312](https://github.com/Seagate/cloudfuse/pull/312) Add option to set mount display capacity +- [#342](https://github.com/Seagate/cloudfuse/pull/342) Update default endpoint to LC2 (sv15.lyve) and improve error handling when connecting to Lyve Cloud + +### Bug Fixes ### + +- [#323](https://github.com/Seagate/cloudfuse/pull/323) Don't evict open files +- [#317](https://github.com/Seagate/cloudfuse/pull/317) When renaming a directory, don't delete the local copy of its contents + ## **1.5.0** ## August 28th 2024 diff --git a/build/windows_installer_build.iss b/build/windows_installer_build.iss index 1eb94d2b7..cec24968d 100644 --- a/build/windows_installer_build.iss +++ b/build/windows_installer_build.iss @@ -3,7 +3,7 @@ ; https://jrsoftware.org/ishelp/index.php #define MyAppName "Cloudfuse" -#define MyAppVersion "1.5.0" +#define MyAppVersion "1.6.0" #define MyAppPublisher "SEAGATE TECHNOLOGY LLC" #define MyAppURL "https://github.com/Seagate/cloudfuse" #define MyAppExeName "cloudfuseGUI.exe" @@ -134,7 +134,7 @@ begin begin SuppressibleMsgBox('Failed to remove cloudfuse as a service.', mbError, MB_OK, IDOK); end; - + // Ask the user if they would like to also uninstall WinFSP if SuppressibleMsgBox('Do you want to uninstall WinFSP?', mbConfirmation, MB_YESNO, IDYES) = IDYES then begin diff --git a/build/windows_installer_build_no_gui.iss b/build/windows_installer_build_no_gui.iss index ed19a9429..c63795388 100644 --- a/build/windows_installer_build_no_gui.iss +++ b/build/windows_installer_build_no_gui.iss @@ -3,7 +3,7 @@ ; https://jrsoftware.org/ishelp/index.php #define MyAppName "Cloudfuse" -#define MyAppVersion "1.5.0" +#define MyAppVersion "1.6.0" #define MyAppPublisher "SEAGATE TECHNOLOGY LLC" #define MyAppURL "https://github.com/Seagate/cloudfuse" #define MyAppExeCLIName "cloudfuse.exe" @@ -120,7 +120,7 @@ begin begin SuppressibleMsgBox('Failed to remove cloudfuse registry.', mbError, MB_OK, IDOK); end; - + // Ask the user if they would like to also uninstall WinFSP if SuppressibleMsgBox('Do you want to uninstall WinFSP?', mbConfirmation, MB_YESNO, IDYES) = IDYES then begin diff --git a/common/types.go b/common/types.go index 5ab7a98f4..fe4ba2e81 100644 --- a/common/types.go +++ b/common/types.go @@ -40,7 +40,7 @@ import ( // Standard config default values const ( - cloudfuseVersion_ = "1.5.0" + cloudfuseVersion_ = "1.6.0" DefaultMaxLogFileSize = 512 DefaultLogFileCount = 10