diff --git a/CHANGELOG.md b/CHANGELOG.md index 44b6c7494..b1049481f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,104 @@ # Changelog +## [1.135.0] - 2024-02-13 + +### Features / Changes + +- Add wildcard pattern support to provider database. +- Add device message about outgoing undecryptable messages ([#5164](https://github.com/deltachat/deltachat-core-rust/pull/5164)). +- Context::set_config(): Restart IO scheduler if needed ([#5111](https://github.com/deltachat/deltachat-core-rust/pull/5111)). +- Server_sent_unsolicited_exists(): Log folder name. +- Cache system time instead of looking at the clock several times in a row. + +### Fixes + +- Dehtml: Don't just truncate text when trying to decode ([#5223](https://github.com/deltachat/deltachat-core-rust/pull/5223)). +- Mark the gossip keys from the message as verified, not the ones from the db ([#5247](https://github.com/deltachat/deltachat-core-rust/pull/5247)). +- Guarantee immediate message deletion if delete_server_after == 0 ([#5201](https://github.com/deltachat/deltachat-core-rust/pull/5201)). +- Never allow a message timestamp to be a lot in the future ([#5249](https://github.com/deltachat/deltachat-core-rust/pull/5249)). +- Imap::configure_mvbox: Do select_with_uidvalidity() before return. +- ImapSession::select_or_create_folder(): Don't fail if folder is created in parallel. +- Emit ConfigSynced event on the second device. +- Create mvbox on setting mvbox_move. +- Use SystemTime instead of Instant everywhere. +- Restore database rows removed in previous release; this ensures compatibility when adding second device or importing backup and not all devices run the new core ([#5254](https://github.com/deltachat/deltachat-core-rust/pull/5254)) + +### Miscellaneous Tasks + +- cargo: Bump image from 0.24.7 to 0.24.8. +- cargo: Bump chrono from 0.4.31 to 0.4.33. +- cargo: Bump futures-lite from 2.1.0 to 2.2.0. +- cargo: Bump pin-project from 1.1.3 to 1.1.4. +- cargo: Bump iana-time-zone from yanked 0.1.59 to 0.1.60. +- cargo: Bump smallvec from 1.11.2 to 1.13.1. +- cargo: Bump base64 from 0.21.5 to 0.21.7. +- cargo: Bump regex from 1.10.2 to 1.10.3. +- cargo: Bump libc from 0.2.151 to 0.2.153. +- cargo: Bump reqwest from 0.11.23 to 0.11.24. +- cargo: Bump axum from 0.7.3 to 0.7.4. +- cargo: Bump uuid from 1.6.1 to 1.7.0. +- cargo: Bump fast-socks5 from 0.9.2 to 0.9.5. +- cargo: Bump serde_json from 1.0.111 to 1.0.113. +- cargo: Bump syn from 2.0.46 to 2.0.48. +- cargo: Bump serde from 1.0.194 to 1.0.196. +- cargo: Bump toml from 0.8.8 to 0.8.10. +- cargo: Update to strum 0.26. +- Cargo update. +- scripts: Do not install deltachat-rpc-client twice. + +### Other + +- Update welcome image, thanks @paulaluap +. +- Merge pull request #5243 from deltachat/dependabot/cargo/pin-project-1.1.4 + +. +- Merge pull request #5241 from deltachat/dependabot/cargo/futures-lite-2.2.0 + +. +- Merge pull request #5236 from deltachat/dependabot/cargo/chrono-0.4.33 + +. +- Merge pull request #5235 from deltachat/dependabot/cargo/image-0.24.8 + +. +- Basic self-reporting, core part ([#5129](https://github.com/deltachat/deltachat-core-rust/pull/5129)) + +Part of https://github.com/deltachat/deltachat-android/issues/2909 + +For now, this is only sending a few basic metrics.. +- Do not change db schema in an incompatible way ([#5254](https://github.com/deltachat/deltachat-core-rust/pull/5254)) + +PR #5099 removed some columns in the database that were actually in use. + +usually, to not worsen UX unnecessarily +(releases take time - in between, "Add Second Device", "Backup" etc. +would fail), we try to avoid such schema changes (checking for +db-version would avoid import etc. but would still worse UX), +see discussion at #2294. + +these are the errors, the user will be confronted with otherwise: + + + +it is not great to maintain the old columns, but well :) + +as no official releases with newer cores are rolled out yet, i think, it +is fine to change the "107" migration +and not copy things a second time in a newer migration. + +(this issue happens to me during testing, and is probably also the issue +reported by @lk108 for ubuntu-touch). + +### Refactor + +- Resultify token::exists. + +### Tests + +- Delete_server_after="1" should cause immediate message deletion ([#5201](https://github.com/deltachat/deltachat-core-rust/pull/5201)). + ## [1.134.0] - 2024-01-31 ### API-Changes @@ -3476,3 +3575,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.133.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.133.0...v1.133.1 [1.133.2]: https://github.com/deltachat/deltachat-core-rust/compare/v1.133.1...v1.133.2 [1.134.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.133.2...v1.134.0 +[1.135.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.134.0...v1.135.0 diff --git a/Cargo.lock b/Cargo.lock index 9fa579766..5f63032e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1089,7 +1089,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.134.0" +version = "1.135.0" dependencies = [ "ansi_term", "anyhow", @@ -1169,7 +1169,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.134.0" +version = "1.135.0" dependencies = [ "anyhow", "async-channel 2.2.0", @@ -1193,7 +1193,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.134.0" +version = "1.135.0" dependencies = [ "ansi_term", "anyhow", @@ -1208,7 +1208,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.134.0" +version = "1.135.0" dependencies = [ "anyhow", "deltachat", @@ -1233,7 +1233,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.134.0" +version = "1.135.0" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index 7c54a48ed..3beb1d0f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.134.0" +version = "1.135.0" edition = "2021" license = "MPL-2.0" rust-version = "1.70" diff --git a/RELEASE.md b/RELEASE.md index b9f50e9ca..341ecc9cf 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -9,13 +9,16 @@ For example, to release version 1.116.0 of the core, do the following steps. 3. Update the changelog: `git cliff --unreleased --tag 1.116.0 --prepend CHANGELOG.md` or `git cliff -u -t 1.116.0 -p CHANGELOG.md`. -4. Update the version by running `scripts/set_core_version.py 1.116.0`. +4. add a link to compare previous with current version to the end of CHANGELOG.md: + `[1.116.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.115.2...v1.116.0` -5. Commit the changes as `chore(release): prepare for 1.116.0`. +5. Update the version by running `scripts/set_core_version.py 1.116.0`. + +6. Commit the changes as `chore(release): prepare for 1.116.0`. Optionally, use a separate branch like `prep-1.116.0` for this commit and open a PR for review. -6. Tag the release: `git tag -a v1.116.0`. +7. Tag the release: `git tag -a v1.116.0`. -7. Push the release tag: `git push origin v1.116.0`. +8. Push the release tag: `git push origin v1.116.0`. -8. Create a GitHub release: `gh release create v1.116.0 -n ''`. +9. Create a GitHub release: `gh release create v1.116.0 -n ''`. diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index a367fd515..fd6c78ef6 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.134.0" +version = "1.135.0" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 5d591c1cc..455711ca3 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.134.0" +version = "1.135.0" description = "DeltaChat JSON-RPC API" edition = "2021" default-run = "deltachat-jsonrpc-server" diff --git a/deltachat-jsonrpc/typescript/package.json b/deltachat-jsonrpc/typescript/package.json index e2680da06..4d0535c67 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -53,5 +53,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.134.0" + "version": "1.135.0" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index b588f977e..cb74832e0 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.134.0" +version = "1.135.0" license = "MPL-2.0" edition = "2021" diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index 9a5655451..7ab59e55c 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.134.0" +version = "1.135.0" description = "DeltaChat JSON-RPC server" edition = "2021" readme = "README.md" diff --git a/package.json b/package.json index 0c71ed747..5eb374e82 100644 --- a/package.json +++ b/package.json @@ -55,5 +55,5 @@ "test:mocha": "mocha node/test/test.mjs --growl --reporter=spec --bail --exit" }, "types": "node/dist/index.d.ts", - "version": "1.134.0" + "version": "1.135.0" } diff --git a/release-date.in b/release-date.in index 223c4375f..8eac22ece 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2024-01-31 \ No newline at end of file +2024-02-13 \ No newline at end of file