Skip to content

Commit e67020f

Browse files
Add 2.0 changelog (#679)
* Add 2.0 changelog * Bump version to 2.0
1 parent 482c044 commit e67020f

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,51 @@
11
# Cloudfuse Changelog #
22

3+
## **2.0.0** ##
4+
5+
September 4th 2025
6+
This version is based on [blobfuse2 2.4.2](https://github.com/Azure/azure-storage-fuse/releases/tag/blobfuse2-2.4.2) (upstream).
7+
8+
### Highlights
9+
10+
- New terminal-based configuration UI (TUI): `cloudfuse config`
11+
- New `update` command so cloudfuse can update itself
12+
- New `gather-logs` command to easily collect all cloudfuse logs and generate a zip file
13+
- Support for FUSE3 on Linux bringing faster directory listing and other performance improvements
14+
- Faster file cache performance on Linux
15+
- APT and RPM repositories
16+
17+
### Breaking changes
18+
19+
- GUI removed from this repo
20+
The GUI is no longer bundled. Install it separately: <https://github.com/Seagate/cloudfuse-gui>
21+
Use the new TUI with `cloudfuse config` for in-terminal setup.
22+
23+
- CLI cleanup and removals
24+
Some v1 command-line options were removed. All removed options can still be configured in the `config.yaml`.
25+
Refer to the docs for the current CLI options.
26+
27+
- Passphrase handling simplified
28+
Base64 encoding of the passphrase is no longer required. Existing base64-encoded values continue to work.
29+
30+
### Features ###
31+
32+
- [#481](https://github.com/Seagate/cloudfuse/pull/481) Add update command
33+
- [#599](https://github.com/Seagate/cloudfuse/pull/599) Add log collector
34+
- [#641](https://github.com/Seagate/cloudfuse/pull/641) Add TUI interface
35+
- [#657](https://github.com/Seagate/cloudfuse/pull/657) Improve file_cache performance on linux
36+
- [#631](https://github.com/Seagate/cloudfuse/pull/631) Bump blobfuse version to 2.4.2
37+
- [#500](https://github.com/Seagate/cloudfuse/pull/500) Add builds for fuse3
38+
- [#591](https://github.com/Seagate/cloudfuse/pull/591) Add rpm and apt repository
39+
- [#499](https://github.com/Seagate/cloudfuse/pull/499) Remove GUI
40+
- [#624](https://github.com/Seagate/cloudfuse/pull/624) Remove V1 Command Line Options
41+
- [#650](https://github.com/Seagate/cloudfuse/pull/650) Remove requirement for base64 encoded passphrase
42+
- [#633](https://github.com/Seagate/cloudfuse/pull/633) Add sync command for size_tracker
43+
44+
### Bug Fixes ###
45+
46+
- [#661](https://github.com/Seagate/cloudfuse/pull/661) Don't mount if enable remount is set and mount failed
47+
- [#642](https://github.com/Seagate/cloudfuse/pull/642) Fix issue with block cache caching files in directories
48+
349
## **1.12.2** ##
450

551
August 22nd 2025

build/windows_installer_build.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; https://jrsoftware.org/ishelp/index.php
44

55
#define MyAppName "Cloudfuse"
6-
#define MyAppVersion "1.12.2"
6+
#define MyAppVersion "2.0.0"
77
#define MyAppPublisher "SEAGATE TECHNOLOGY LLC"
88
#define MyAppURL "https://github.com/Seagate/cloudfuse"
99
#define MyAppExeCLIName "cloudfuse.exe"

common/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040

4141
// Standard config default values
4242
const (
43-
cloudfuseVersion_ = "1.12.2"
43+
cloudfuseVersion_ = "2.0.0"
4444

4545
DefaultMaxLogFileSize = 512
4646
DefaultLogFileCount = 10

0 commit comments

Comments
 (0)