You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ShortDescription: Open Source Continuous File Synchronization
18
18
Description: |-
@@ -37,51 +37,26 @@ Tags:
37
37
- synchronization
38
38
ReleaseNotes: |-
39
39
Major changes in 2.0
40
-
- Database backend switched from LevelDB to SQLite. There is a migration on
41
-
first launch which can be lengthy for larger setups. The new database is
42
-
easier to understand and maintain and, hopefully, less buggy.
43
-
- The logging format has changed to use structured log entries (a message
44
-
plus several key-value pairs). Additionally, we can now control the log
45
-
level per package, and a new log level WARNING has been inserted between
46
-
INFO and ERROR (which was previously known as WARNING...). The INFO level
47
-
has become more verbose, indicating the sync actions taken by Syncthing. A
48
-
new command line flag --log-level sets the default log level for all
49
-
packages, and the STTRACE environment variable and GUI has been updated
50
-
to set log levels per package. The --verbose and --logflags command
51
-
line options have been removed and will be ignored if given.
52
-
- Deleted items are no longer kept forever in the database, instead they are
53
-
forgotten after fifteen months. If your use case require deletes to take
54
-
effect after more than a fifteen month delay, set the
55
-
--db-delete-retention-interval command line option or corresponding
56
-
environment variable to zero, or a longer time interval of your choosing.
57
-
- Modernised command line options parsing. Old single-dash long options are
58
-
no longer supported, e.g. -home must be given as --home. Some options
59
-
have been renamed, others have become subcommands. All serve options are
60
-
now also accepted as environment variables. See syncthing --help and
61
-
syncthing serve --help for details.
62
-
- Rolling hash detection of shifted data is no longer supported as this
63
-
effectively never helped. Instead, scanning and syncing is faster and more
64
-
efficient without it.
40
+
- Database backend switched from LevelDB to SQLite. There is a migration on first launch which can be lengthy for larger setups. The new database is easier to understand and maintain and, hopefully, less buggy.
41
+
- The logging format has changed to use structured log entries (a message plus several key-value pairs). Additionally, we can now control the log level per package, and a new log level WARNING has been inserted between INFO and ERROR (which was previously known as WARNING...). The INFO level has become more verbose, indicating the sync actions taken by Syncthing. A new command line flag `--log-level` sets the default log level for all packages, and the `STTRACE` environment variable and GUI has been updated to set log levels per package. The `--verbose` and `--logflags` command line options have been removed and will be ignored if given.
42
+
- Deleted items are no longer kept forever in the database, instead they are forgotten after fifteen months. If your use case require deletes to take effect after more than a fifteen month delay, set the `--db-delete-retention-interval` command line option or corresponding environment variable to zero, or a longer time interval of your choosing.
43
+
- Modernised command line options parsing. Old single-dash long options are no longer supported, e.g. `-home` must be given as `--home`. Some options have been renamed, others have become subcommands. All serve options are now also accepted as environment variables. See `syncthing --help` and `syncthing serve --help` for details.
44
+
- Rolling hash detection of shifted data is no longer supported as this effectively never helped. Instead, scanning and syncing is faster and more efficient without it.
65
45
- A "default folder" is no longer created on first startup.
66
-
- Multiple connections are now used by default between v2 devices. The new
67
-
default value is to use three connections: one for index metadata and two
68
-
for data exchange.
69
-
- The following platforms unfortunately no longer get prebuilt binaries for
70
-
download at syncthing.net and on GitHub, due to complexities related to
71
-
cross compilation with SQLite:
46
+
- Multiple connections are now used by default between v2 devices. The new default value is to use three connections: one for index metadata and two for data exchange.
47
+
- The following platforms unfortunately no longer get prebuilt binaries for download at syncthing.net and on GitHub, due to complexities related to cross compilation with SQLite:
72
48
- dragonfly/amd64
73
49
- illumos/amd64 and solaris/amd64
74
50
- linux/ppc64
75
51
- netbsd/*
76
52
- openbsd/386 and openbsd/arm
77
53
- windows/arm
78
-
- The handling of conflict resolution involving deleted files has changed. A
79
-
delete can now be the winning outcome of conflict resolution, resulting in
80
-
the deleted file being moved to a conflict copy.
54
+
- The handling of conflict resolution involving deleted files has changed. A delete can now be the winning outcome of conflict resolution, resulting in the deleted file being moved to a conflict copy.
55
+
81
56
This release is also available as:
82
57
- APT repository: https://apt.syncthing.net/
83
-
- Docker image: docker.io/syncthing/syncthing:2.0.3 or ghcr.io/syncthing/syncthing:2.0.3
84
-
({docker,ghcr}.io/syncthing/syncthing:2 to follow just the major version)
58
+
- Docker image: `docker.io/syncthing/syncthing:2.0.3` or `ghcr.io/syncthing/syncthing:2.0.3` (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)
59
+
85
60
What's Changed
86
61
Fixes
87
62
- fix(cmd): restore --version flag for compatibility by @acolomb in #10269
@@ -91,7 +66,8 @@ ReleaseNotes: |-
91
66
Other
92
67
- chore(slog): re-enable LOGGER_DISCARD (fixes #10262) by @rasa in #10267
93
68
- build: downgrade gopsutil (fixes #10276) by @calmh in #10277
94
-
Full Changelog: v2.0.2...v2.0.3
69
+
70
+
Full Changelog: https://github.com/syncthing/syncthing/compare/v2.0.2...v2.0.3
0 commit comments