1
0
mirror of https://git.cloudron.io/cloudron/syncthing-app synced 2025-09-13 16:29:09 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Package Updates
49b7a045eb Update package version to 1.33.6 2025-09-03 06:46:47 +00:00
Renovate Bot
2d17cea7ef chore(deps): update dependency syncthing/syncthing to v2.0.5
| datasource      | package             | from  | to    |
| --------------- | ------------------- | ----- | ----- |
| github-releases | syncthing/syncthing | 2.0.4 | 2.0.5 |
2025-09-03 06:20:01 +00:00
Package Updates
9c0df554c4 Update package version to 1.33.5 2025-09-02 07:47:35 +00:00
Renovate Bot
6c1f39247e chore(deps): update dependency syncthing/syncthing to v2.0.4
| datasource      | package             | from  | to    |
| --------------- | ------------------- | ----- | ----- |
| github-releases | syncthing/syncthing | 2.0.3 | 2.0.4 |
2025-09-02 06:20:16 +00:00
5 changed files with 39 additions and 19 deletions

View File

@@ -633,3 +633,23 @@
* 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. * 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.
* fix(cmd): restore --version flag for compatibility by [@acolomb](https://github.com/acolomb) in https://github.com/syncthing/syncthing/pull/10269 * fix(cmd): restore --version flag for compatibility by [@acolomb](https://github.com/acolomb) in https://github.com/syncthing/syncthing/pull/10269
[1.33.5]
* Update syncthing to 2.0.4
* [Full Changelog](https://github.com/syncthing/syncthing/releases/tag/v2.0.4)
* fix(cmd): only start temporary API server during migration if it's enabled by [@pixelspark](https://github.com/pixelspark) in https://github.com/syncthing/syncthing/pull/10284
* fix(model): consider MaxFolderConcurrency when calculating number of hashers by [@tomasz1986](https://github.com/tomasz1986) in https://github.com/syncthing/syncthing/pull/10285
[1.33.6]
* Update syncthing to 2.0.5
* [Full Changelog](https://github.com/syncthing/syncthing/releases/tag/v2.0.5)
* 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.
* 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.
* 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.
* 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.
* 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.
* A "default folder" is no longer created on first startup.
* 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.
* 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:
* 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.
* fix(db): only vacuum database on startup when a migration script was actually run by [@pixelspark](https://github.com/pixelspark) in https://github.com/syncthing/syncthing/pull/10339

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md", "description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG", "changelog": "file://CHANGELOG",
"tagline": "Decentralized file synchronization", "tagline": "Decentralized file synchronization",
"version": "1.33.4", "version": "1.33.6",
"upstreamVersion": "2.0.3", "upstreamVersion": "2.0.5",
"healthCheckPath": "/healthcheck", "healthCheckPath": "/healthcheck",
"httpPort": 8000, "httpPort": 8000,
"addons": { "addons": {

View File

@@ -4,7 +4,7 @@ RUN mkdir -p /app/code
WORKDIR /app/code WORKDIR /app/code
# renovate: datasource=github-releases depName=syncthing/syncthing versioning=semver extractVersion=^v(?<version>.+)$ # renovate: datasource=github-releases depName=syncthing/syncthing versioning=semver extractVersion=^v(?<version>.+)$
ARG SYNCTHING_VERSION=2.0.3 ARG SYNCTHING_VERSION=2.0.5
RUN wget https://github.com/syncthing/syncthing/releases/download/v${SYNCTHING_VERSION}/syncthing-linux-amd64-v${SYNCTHING_VERSION}.tar.gz -O - | tar -xz -C /app/code --strip-components=1 RUN wget https://github.com/syncthing/syncthing/releases/download/v${SYNCTHING_VERSION}/syncthing-linux-amd64-v${SYNCTHING_VERSION}.tar.gz -O - | tar -xz -C /app/code --strip-components=1

28
test/package-lock.json generated
View File

@@ -9,9 +9,9 @@
"version": "1.0.0", "version": "1.0.0",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"chromedriver": "^139.0.2", "chromedriver": "^140.0.0",
"expect.js": "^0.3.1", "expect.js": "^0.3.1",
"mocha": "^11.7.1", "mocha": "^11.7.2",
"selenium-webdriver": "^4.35.0" "selenium-webdriver": "^4.35.0"
} }
}, },
@@ -305,9 +305,9 @@
} }
}, },
"node_modules/chromedriver": { "node_modules/chromedriver": {
"version": "139.0.2", "version": "140.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-139.0.2.tgz", "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-140.0.0.tgz",
"integrity": "sha512-GEq1PM9unQBQ79iNxlsJPvMFzcw/LKIusxC39RVD+8noh1JqURNTqbhPGU887VpGUsCFJ0SCSpr+6waK/yWHRA==", "integrity": "sha512-mv41C2fi4YX27muRMWP035HJUnKatu7gMJqBcVD1tSmufWDxDy0m38YaieKG3pa2aAIYNVhlXqiOnHkvnqNMcw==",
"hasInstallScript": true, "hasInstallScript": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
@@ -992,9 +992,9 @@
} }
}, },
"node_modules/mocha": { "node_modules/mocha": {
"version": "11.7.1", "version": "11.7.2",
"resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.1.tgz", "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.2.tgz",
"integrity": "sha512-5EK+Cty6KheMS/YLPPMJC64g5V61gIR25KsRItHw6x4hEKT6Njp1n9LOlH4gpevuwMVS66SXaBBpg+RWZkza4A==", "integrity": "sha512-lkqVJPmqqG/w5jmmFtiRvtA2jkDyNVUcefFJKb2uyX4dekk8Okgqop3cgbFiaIvj8uCRJVTP5x9dfxGyXm2jvQ==",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"browser-stdout": "^1.3.1", "browser-stdout": "^1.3.1",
@@ -1873,9 +1873,9 @@
} }
}, },
"chromedriver": { "chromedriver": {
"version": "139.0.2", "version": "140.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-139.0.2.tgz", "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-140.0.0.tgz",
"integrity": "sha512-GEq1PM9unQBQ79iNxlsJPvMFzcw/LKIusxC39RVD+8noh1JqURNTqbhPGU887VpGUsCFJ0SCSpr+6waK/yWHRA==", "integrity": "sha512-mv41C2fi4YX27muRMWP035HJUnKatu7gMJqBcVD1tSmufWDxDy0m38YaieKG3pa2aAIYNVhlXqiOnHkvnqNMcw==",
"requires": { "requires": {
"@testim/chrome-version": "^1.1.4", "@testim/chrome-version": "^1.1.4",
"axios": "^1.7.4", "axios": "^1.7.4",
@@ -2339,9 +2339,9 @@
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="
}, },
"mocha": { "mocha": {
"version": "11.7.1", "version": "11.7.2",
"resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.1.tgz", "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.2.tgz",
"integrity": "sha512-5EK+Cty6KheMS/YLPPMJC64g5V61gIR25KsRItHw6x4hEKT6Njp1n9LOlH4gpevuwMVS66SXaBBpg+RWZkza4A==", "integrity": "sha512-lkqVJPmqqG/w5jmmFtiRvtA2jkDyNVUcefFJKb2uyX4dekk8Okgqop3cgbFiaIvj8uCRJVTP5x9dfxGyXm2jvQ==",
"requires": { "requires": {
"browser-stdout": "^1.3.1", "browser-stdout": "^1.3.1",
"chokidar": "^4.0.1", "chokidar": "^4.0.1",

View File

@@ -9,9 +9,9 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"chromedriver": "^139.0.2", "chromedriver": "^140.0.0",
"expect.js": "^0.3.1", "expect.js": "^0.3.1",
"mocha": "^11.7.1", "mocha": "^11.7.2",
"selenium-webdriver": "^4.35.0" "selenium-webdriver": "^4.35.0"
} }
} }