mirror of
https://git.cloudron.io/cloudron/syncthing-app
synced 2025-09-22 04:47:35 +00:00
Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8878f63f8a | ||
|
dbd712704d | ||
|
9f5c82864e | ||
|
777990ba85 | ||
|
64fd0bb9a7 | ||
|
f3abbdd291 | ||
|
7bab576c1b | ||
|
79404da144 | ||
|
49ce3bc7db | ||
|
4691f193fa | ||
|
0f9be01fea | ||
|
66abb7718b | ||
|
d7b0862f12 |
30
CHANGELOG
30
CHANGELOG
@@ -485,3 +485,33 @@
|
|||||||
* Update Syncthing to 1.27.9
|
* Update Syncthing to 1.27.9
|
||||||
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.9)
|
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.9)
|
||||||
|
|
||||||
|
[1.26.9]
|
||||||
|
* Update Syncthing to 1.27.11
|
||||||
|
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.11)
|
||||||
|
|
||||||
|
[1.26.10]
|
||||||
|
* Update Syncthing to 1.27.12
|
||||||
|
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.12)
|
||||||
|
|
||||||
|
[1.27.0]
|
||||||
|
* Update syncthing to 1.28.0
|
||||||
|
* [Full Changelog](https://github.com/syncthing/syncthing/releases/tag/v1.28.0)
|
||||||
|
* [#​9597](https://github.com/syncthing/syncthing/issues/9597): Filenames with extended characters not ignored correctly on macOS
|
||||||
|
* [#​9668](https://github.com/syncthing/syncthing/issues/9668): The Web UI defaults to Filipino on Finnish browsers.
|
||||||
|
* [#​9670](https://github.com/syncthing/syncthing/issues/9670): lib/api: /svc/lang disregards the passed quality values
|
||||||
|
* [#​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)
|
||||||
|
|
||||||
|
[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
|
||||||
|
|
||||||
|
@@ -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.26.8",
|
"version": "1.27.1",
|
||||||
"upstreamVersion": "1.27.9",
|
"upstreamVersion": "1.28.1",
|
||||||
"healthCheckPath": "/healthcheck",
|
"healthCheckPath": "/healthcheck",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -3,9 +3,10 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
|
|||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=1.27.9
|
# renovate: datasource=github-releases depName=syncthing/syncthing versioning=semver extractVersion=^v(?<version>.+)$
|
||||||
|
ARG SYNCTHING_VERSION=1.28.1
|
||||||
|
|
||||||
RUN wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${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
|
||||||
|
|
||||||
# add supervisor configs
|
# add supervisor configs
|
||||||
ADD supervisor/* /etc/supervisor/conf.d/
|
ADD supervisor/* /etc/supervisor/conf.d/
|
||||||
|
4
renovate.json5
Normal file
4
renovate.json5
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": ["local>devops/renovator//default.renovate.json5"]
|
||||||
|
}
|
985
test/package-lock.json
generated
985
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": "^126.0.4",
|
"chromedriver": "^131.0.1",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mocha": "^10.5.2",
|
"mocha": "^11.0.1",
|
||||||
"selenium-webdriver": "^4.22.0"
|
"selenium-webdriver": "^4.27.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
29
test/test.js
29
test/test.js
@@ -1,11 +1,7 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
/* jshint esversion: 8 */
|
/* jshint esversion: 8 */
|
||||||
/* global describe */
|
/* global it, xit, describe, before, after, afterEach */
|
||||||
/* global before */
|
|
||||||
/* global after */
|
|
||||||
/* global it */
|
|
||||||
/* global xit */
|
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@@ -13,6 +9,7 @@ require('chromedriver');
|
|||||||
|
|
||||||
const execSync = require('child_process').execSync,
|
const execSync = require('child_process').execSync,
|
||||||
expect = require('expect.js'),
|
expect = require('expect.js'),
|
||||||
|
fs = require('fs'),
|
||||||
path = require('path'),
|
path = require('path'),
|
||||||
timers = require('timers/promises'),
|
timers = require('timers/promises'),
|
||||||
{ Builder, By, until } = require('selenium-webdriver'),
|
{ Builder, By, until } = require('selenium-webdriver'),
|
||||||
@@ -26,7 +23,7 @@ if (!process.env.USERNAME || !process.env.PASSWORD) {
|
|||||||
describe('Application life cycle test', function () {
|
describe('Application life cycle test', function () {
|
||||||
this.timeout(0);
|
this.timeout(0);
|
||||||
|
|
||||||
const LOCATION = 'test';
|
const LOCATION = process.env.LOCATION || 'test';
|
||||||
const TEST_TIMEOUT = 30000;
|
const TEST_TIMEOUT = 30000;
|
||||||
const FOLDER = 'xmf'; // keep this small. long folder names fail in automation, not sure why
|
const FOLDER = 'xmf'; // keep this small. long folder names fail in automation, not sure why
|
||||||
const SYNC_PORT = 22001;
|
const SYNC_PORT = 22001;
|
||||||
@@ -34,17 +31,31 @@ describe('Application life cycle test', function () {
|
|||||||
|
|
||||||
let browser, app;
|
let browser, app;
|
||||||
const adminUsername = 'admin', adminPassword = 'changeme';
|
const adminUsername = 'admin', adminPassword = 'changeme';
|
||||||
let username = process.env.USERNAME;
|
const username = process.env.USERNAME;
|
||||||
let password = process.env.PASSWORD;
|
const password = process.env.PASSWORD;
|
||||||
|
|
||||||
before(function () {
|
before(function () {
|
||||||
browser = new Builder().forBrowser('chrome').setChromeOptions(new Options().windowSize({ width: 1280, height: 1024 })).build();
|
const chromeOptions = new Options().windowSize({ width: 1280, height: 1024 });
|
||||||
|
if (process.env.CI) chromeOptions.addArguments('no-sandbox', 'disable-dev-shm-usage', 'headless');
|
||||||
|
browser = new Builder().forBrowser('chrome').setChromeOptions(chromeOptions).build();
|
||||||
|
if (!fs.existsSync('./screenshots')) fs.mkdirSync('./screenshots');
|
||||||
});
|
});
|
||||||
|
|
||||||
after(function () {
|
after(function () {
|
||||||
browser.quit();
|
browser.quit();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
afterEach(async function () {
|
||||||
|
if (!process.env.CI || !app) return;
|
||||||
|
|
||||||
|
const currentUrl = await browser.getCurrentUrl();
|
||||||
|
if (!currentUrl.includes(app.domain)) return;
|
||||||
|
expect(this.currentTest.title).to.be.a('string');
|
||||||
|
|
||||||
|
const screenshotData = await browser.takeScreenshot();
|
||||||
|
fs.writeFileSync(`./screenshots/${new Date().getTime()}-${this.currentTest.title.replaceAll(' ', '_')}.png`, screenshotData, 'base64');
|
||||||
|
});
|
||||||
|
|
||||||
function getAppInfo() {
|
function getAppInfo() {
|
||||||
const inspect = JSON.parse(execSync('cloudron inspect'));
|
const inspect = JSON.parse(execSync('cloudron inspect'));
|
||||||
app = inspect.apps.filter(function (a) { return a.location.indexOf(LOCATION) === 0; })[0];
|
app = inspect.apps.filter(function (a) { return a.location.indexOf(LOCATION) === 0; })[0];
|
||||||
|
Reference in New Issue
Block a user