diff --git a/CHANGELOG.md b/CHANGELOG.md index 016ae04..70f52a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -100,3 +100,13 @@ * Update traccar to 6.1 * [Full changelog](https://www.traccar.org/blog/traccar-6-1/) +[1.10.0] +* Update traccar to 6.2 +* [Full changelog](https://www.traccar.org/blog/traccar-6-2/) +* Computed attributes can now be ordered using priority +* Support token authentication for WebSocket +* Allow regular users to edit hours and total distance +* Support for right-to-left languages on map +* Terms and privacy policy option +* Engine hours are now calculated after computed attributes +* Default configuration file is now removed to avoid confusion and misconfiguration diff --git a/CloudronManifest.json b/CloudronManifest.json index 767904b..72a8de0 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,8 +5,8 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG.md", "tagline": "Modern GPS Tracking Platform", - "version": "1.9.0", - "upstreamVersion": "6.1", + "version": "1.10.0", + "upstreamVersion": "6.2", "minBoxVersion": "7.1.0", "memoryLimit": 1073741824, "healthCheckPath": "/", diff --git a/test/test.js b/test/test.js index 9e77643..7e0cd92 100644 --- a/test/test.js +++ b/test/test.js @@ -144,7 +144,7 @@ describe('Application life cycle test', function () { }); // test update - it('can install app', function () { execSync(`cloudron install --appstore-id org.traccar.cloudronapp --location ${LOCATION}`, EXEC_ARGS); }); + it('can install app for update', function () { execSync(`cloudron install --appstore-id org.traccar.cloudronapp --location ${LOCATION}`, EXEC_ARGS); }); it('can get app information', getAppInfo); it('can login', login.bind(null, ADMIN_USERNAME, ADMIN_PASSWORD)); it('can add device', addDevice);