diff --git a/CHANGELOG.md b/CHANGELOG.md index d6a519ff6..9b5fb3544 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [16.8.3](https://github.com/johannesjo/super-productivity/compare/v16.8.2...v16.8.3) (2026-01-04) + +### Bug Fixes + +- **e2e:** use format-agnostic time change in task-detail tests ([098e19f](https://github.com/johannesjo/super-productivity/commit/098e19f9ca7d2ad218d311b9dddfe9709d775b99)) +- **e2e:** use pressSequentially for time input in task-detail tests ([333c3a1](https://github.com/johannesjo/super-productivity/commit/333c3a16bc442d71dfe7c6b6f6953123a6bba928)) +- **schedule:** start tracking selected task when pressing Y in schedule view ([acedc67](https://github.com/johannesjo/super-productivity/commit/acedc67f2af1d5a86df910a12bf5d3efaec7a1e6)), closes [#5884](https://github.com/johannesjo/super-productivity/issues/5884) +- **sync:** resolve 25-second initial sync timeout race condition ([570a0b5](https://github.com/johannesjo/super-productivity/commit/570a0b590d94a1dab54991808a13e70d99db56d4)), closes [#5868](https://github.com/johannesjo/super-productivity/issues/5868) [#5877](https://github.com/johannesjo/super-productivity/issues/5877) +- **tasks:** clear reminder when clicking "today" button on already-today tasks ([2af57d2](https://github.com/johannesjo/super-productivity/commit/2af57d2b4aba90ee0ccfc2780e4c3cce26c74b43)), closes [#5872](https://github.com/johannesjo/super-productivity/issues/5872) + +### Features + +- **e2e:** add Docker-based E2E test isolation ([40d7118](https://github.com/johannesjo/super-productivity/commit/40d7118e179ae46670d0180460a1255d4f63f903)) + ## [16.8.2](https://github.com/johannesjo/super-productivity/compare/v16.8.1...v16.8.2) (2026-01-04) ### Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index e21c5b7e9..52ef463cc 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -20,8 +20,8 @@ android { minSdkVersion 24 targetSdkVersion 35 compileSdk 35 - versionCode 16_08_02_0000 - versionName "16.8.2" + versionCode 16_08_03_0000 + versionName "16.8.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" manifestPlaceholders = [ hostName : "app.super-productivity.com", diff --git a/android/fastlane/metadata/android/en-US/changelogs/1608030000.txt b/android/fastlane/metadata/android/en-US/changelogs/1608030000.txt new file mode 100644 index 000000000..24aebd652 --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/1608030000.txt @@ -0,0 +1,13 @@ + +### Bug Fixes + +* **e2e:** use format-agnostic time change in task-detail tests +* **e2e:** use pressSequentially for time input in task-detail tests +* **schedule:** start tracking selected task when pressing Y in schedule view (acedc67), closes #5884 +* **sync:** resolve 25-second initial sync timeout race condition (570a0b5), closes #5868 #5877 +* **tasks:** clear reminder when clicking "today" button on already-today tasks (2af57d2), closes #5872 + + +### Features + +* **e2e:** add Docker-based E2E test isolation \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 11cb1646b..fc7e76af8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "superProductivity", - "version": "16.8.2", + "version": "16.8.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "superProductivity", - "version": "16.8.2", + "version": "16.8.3", "license": "MIT", "workspaces": [ "packages/*" diff --git a/package.json b/package.json index cdda3b533..2801eeb61 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superProductivity", - "version": "16.8.2", + "version": "16.8.3", "description": "ToDo list and Time Tracking", "keywords": [ "ToDo", diff --git a/src/environments/versions.ts b/src/environments/versions.ts index ab1d531bc..823afcb32 100644 --- a/src/environments/versions.ts +++ b/src/environments/versions.ts @@ -1,6 +1,6 @@ // this file is automatically generated by git.version.ts script export const versions = { - version: '16.8.2', + version: '16.8.3', revision: 'NO_REV', branch: 'NO_BRANCH', };