Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update core to 1.151.0 #2415

Merged
merged 1 commit into from
Nov 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update deltachat-core-rust to 'chore(release): prepare for 1.151.0' o…
…f 'v1.151.0'
  • Loading branch information
r10s committed Nov 23, 2024
commit 7bb185037bf9ac51790a5a8623260a1a7e88b71e
2 changes: 1 addition & 1 deletion deltachat-ios/libraries/deltachat-core-rust
Submodule deltachat-core-rust updated 89 files
+22 −0 .github/workflows/nix.yml
+142 −4 CHANGELOG.md
+91 −155 CONTRIBUTING.md
+482 −244 Cargo.lock
+16 −22 Cargo.toml
+98 −0 STYLE.md
+ assets/root-certificates/letsencrypt/isrgrootx1.der
+2 −1 deltachat-contact-tools/src/lib.rs
+1 −1 deltachat-ffi/Cargo.toml
+62 −3 deltachat-ffi/deltachat.h
+18 −1 deltachat-ffi/src/lib.rs
+2 −2 deltachat-jsonrpc/Cargo.toml
+21 −7 deltachat-jsonrpc/src/api.rs
+11 −5 deltachat-jsonrpc/src/api/types/chat_list.rs
+17 −0 deltachat-jsonrpc/src/api/types/events.rs
+7 −4 deltachat-jsonrpc/src/api/types/message.rs
+84 −11 deltachat-jsonrpc/src/api/types/qr.rs
+4 −0 deltachat-jsonrpc/src/api/types/webxdc.rs
+2 −0 deltachat-jsonrpc/src/lib.rs
+1 −1 deltachat-jsonrpc/typescript/package.json
+1 −1 deltachat-repl/Cargo.toml
+2 −1 deltachat-rpc-client/README.md
+1 −4 deltachat-rpc-client/pyproject.toml
+4 −0 deltachat-rpc-client/src/deltachat_rpc_client/contact.py
+10 −13 deltachat-rpc-client/tests/conftest.py
+2 −4 deltachat-rpc-client/tests/test_iroh_webxdc.py
+5 −5 deltachat-rpc-client/tests/test_something.py
+1 −0 deltachat-rpc-client/tests/test_webxdc.py
+1 −0 deltachat-rpc-client/tox.ini
+1 −1 deltachat-rpc-server/Cargo.toml
+1 −1 deltachat-rpc-server/npm-package/package.json
+13 −3 deny.toml
+38 −73 flake.lock
+34 −24 flake.nix
+2 −0 format-flowed/src/lib.rs
+916 −1,555 fuzz/Cargo.lock
+2 −0 node/constants.js
+1 −0 node/events.js
+3 −0 node/lib/constants.ts
+1 −1 package.json
+1 −1 python/pyproject.toml
+1 −1 python/tests/test_3_offline.py
+1 −1 release-date.in
+2 −2 scripts/wheel-rpc-server.py
+8 −14 src/authres.rs
+48 −37 src/chat.rs
+33 −7 src/chatlist.rs
+6 −0 src/config.rs
+11 −4 src/configure.rs
+0 −2 src/configure/auto_mozilla.rs
+0 −2 src/configure/auto_outlook.rs
+99 −4 src/contact.rs
+54 −2 src/context.rs
+2 −0 src/debug_logging.rs
+7 −145 src/decrypt.rs
+3 −3 src/e2ee.rs
+12 −0 src/events/payload.rs
+2 −6 src/html.rs
+28 −25 src/imap.rs
+4 −26 src/imap/idle.rs
+3 −3 src/imex.rs
+13 −5 src/key.rs
+2 −1 src/lib.rs
+0 −2 src/location.rs
+128 −11 src/message.rs
+3 −2 src/mimefactory.rs
+180 −71 src/mimeparser.rs
+2 −2 src/net.rs
+22 −28 src/net/tls.rs
+21 −23 src/peerstate.rs
+104 −52 src/pgp.rs
+25 −3 src/plaintext.rs
+0 −2 src/provider.rs
+45 −33 src/qr.rs
+63 −39 src/receive_imf.rs
+106 −2 src/receive_imf/tests.rs
+3 −7 src/scheduler.rs
+4 −5 src/scheduler/connectivity.rs
+38 −20 src/securejoin.rs
+1 −1 src/securejoin/bobstate.rs
+53 −21 src/simplify.rs
+10 −5 src/smtp.rs
+3 −6 src/sql.rs
+2 −2 src/summary.rs
+0 −1 src/test_utils.rs
+39 −4 src/tests/aeap.rs
+20 −16 src/tools.rs
+332 −32 src/webxdc.rs
+2 −0 src/webxdc/maps_integration.rs
Loading