mirror of
https://git.cloudron.io/cloudron/syncthing-app
synced 2025-09-13 16:29:09 +00:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
62ae532c40 | ||
|
e8c0199923 | ||
|
727abf1974 | ||
|
4e9f359eb3 | ||
|
cc32ef813d | ||
|
7f838181bc | ||
|
8878f63f8a | ||
|
dbd712704d |
35
CHANGELOG
35
CHANGELOG
@@ -502,3 +502,38 @@
|
|||||||
* [#​9719](https://github.com/syncthing/syncthing/issues/9719): Unable to establish/maintain multiple connections due to connection priority error
|
* [#​9719](https://github.com/syncthing/syncthing/issues/9719): Unable to establish/maintain multiple connections due to connection priority error
|
||||||
* [#​9715](https://github.com/syncthing/syncthing/issues/9715): Lower the log level of "already connected to this device" to DEBUG (is: INFO)
|
* [#​9715](https://github.com/syncthing/syncthing/issues/9715): Lower the log level of "already connected to this device" to DEBUG (is: INFO)
|
||||||
|
|
||||||
|
[1.27.1]
|
||||||
|
* Update syncthing to 1.28.1
|
||||||
|
* [Full Changelog](https://github.com/syncthing/syncthing/releases/tag/v1.28.1)
|
||||||
|
* [#​9400](https://github.com/syncthing/syncthing/issues/9400): Folder overlap not detected when using tilde
|
||||||
|
* [#​9590](https://github.com/syncthing/syncthing/issues/9590): WebUI table column widths broken on iPhone 12 Pro Max and wider
|
||||||
|
* [#​9686](https://github.com/syncthing/syncthing/issues/9686): Sync status stays at 'Syncing xx%" when remote device pauses the folder.
|
||||||
|
* [#​9757](https://github.com/syncthing/syncthing/issues/9757): Firefox, dark theme: device ID is hard to read
|
||||||
|
* [#​9775](https://github.com/syncthing/syncthing/issues/9775): Junctions as dirs doesn't work anymore
|
||||||
|
* [#​9776](https://github.com/syncthing/syncthing/issues/9776): Disabled checkbox panels don't respect dark theme
|
||||||
|
* [#​9783](https://github.com/syncthing/syncthing/issues/9783): gui: Address override not respected in fresh default config
|
||||||
|
* [#​9821](https://github.com/syncthing/syncthing/issues/9821): panic: runtime error: index out of range \[-1]
|
||||||
|
* [#​9725](https://github.com/syncthing/syncthing/issues/9725): Ignoring symbolic links when syncing on android as well
|
||||||
|
|
||||||
|
[1.28.0]
|
||||||
|
* Update syncthing to 1.29.1
|
||||||
|
* [Full Changelog](https://github.com/syncthing/syncthing/releases/tag/v1.29.1)
|
||||||
|
* [#​9904](https://github.com/syncthing/syncthing/issues/9904): The browse API response has changed as of Syncthing v1.29.0
|
||||||
|
* [#​9906](https://github.com/syncthing/syncthing/issues/9906): Deadlocks randomly, occasionally
|
||||||
|
* [#​9907](https://github.com/syncthing/syncthing/issues/9907): The response of "pending" APIs has changed as of Syncthing v1.29.0
|
||||||
|
* [#​9909](https://github.com/syncthing/syncthing/issues/9909): Login into UI (Browser) not working anymore
|
||||||
|
* [#​9855](https://github.com/syncthing/syncthing/issues/9855): GUI address unix socket broken
|
||||||
|
* [#​9872](https://github.com/syncthing/syncthing/issues/9872): When socket files are in a folder that needs to be synced on linux, some files were not synced until the socket files were removed
|
||||||
|
* [#​9875](https://github.com/syncthing/syncthing/issues/9875): Clarify log message for ignored folders
|
||||||
|
* [#​9870](https://github.com/syncthing/syncthing/issues/9870): Fails with Go 1.24: runtime go1.24rc1 not found in compat.yaml
|
||||||
|
|
||||||
|
[1.28.1]
|
||||||
|
* Update syncthing to 1.29.2
|
||||||
|
* [Full Changelog](https://github.com/syncthing/syncthing/releases/tag/v1.29.2)
|
||||||
|
* [#​9913](https://github.com/syncthing/syncthing/issues/9913): panic: string field contains invalid UTF-8 \[recovered]
|
||||||
|
|
||||||
|
[1.28.2]
|
||||||
|
* Update syncthing to 1.29.3
|
||||||
|
* [Full Changelog](https://github.com/syncthing/syncthing/releases/tag/v1.29.3)
|
||||||
|
* [#​9929](https://github.com/syncthing/syncthing/issues/9929): Unintelligible error message "setting metadata: lookup failed"
|
||||||
|
|
||||||
|
@@ -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.27.0",
|
"version": "1.28.2",
|
||||||
"upstreamVersion": "1.28.0",
|
"upstreamVersion": "1.29.3",
|
||||||
"healthCheckPath": "/healthcheck",
|
"healthCheckPath": "/healthcheck",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -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=1.28.0
|
ARG SYNCTHING_VERSION=1.29.3
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
|
780
test/package-lock.json
generated
780
test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,9 +9,9 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chromedriver": "^128.0.1",
|
"chromedriver": "^134.0.2",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mocha": "^10.7.3",
|
"mocha": "^11.1.0",
|
||||||
"selenium-webdriver": "^4.24.0"
|
"selenium-webdriver": "^4.29.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user