Skip to content

Commit

Permalink
update deltachat-core-rust to 'chore(release): prepare for 1.144.0' o…
Browse files Browse the repository at this point in the history
…f 'v1.144.0'
  • Loading branch information
r10s committed Sep 26, 2024
1 parent bc6d676 commit 0bef0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jni/deltachat-core-rust
Submodule deltachat-core-rust updated 79 files
+4 −4 .github/workflows/ci.yml
+92 −0 CHANGELOG.md
+35 −0 CONTRIBUTING.md
+598 −1,303 Cargo.lock
+15 −11 Cargo.toml
+1 −1 deltachat-ffi/Cargo.toml
+10 −11 deltachat-ffi/deltachat.h
+7 −13 deltachat-ffi/src/lib.rs
+21 −18 deltachat-ffi/src/lot.rs
+2 −2 deltachat-jsonrpc/Cargo.toml
+3 −3 deltachat-jsonrpc/src/api.rs
+6 −6 deltachat-jsonrpc/src/api/types/qr.rs
+1 −1 deltachat-jsonrpc/src/lib.rs
+1 −1 deltachat-jsonrpc/typescript/package.json
+3 −12 deltachat-jsonrpc/typescript/test/online.ts
+2 −2 deltachat-repl/Cargo.toml
+3 −3 deltachat-repl/src/cmdline.rs
+1 −1 deltachat-repl/src/main.rs
+1 −1 deltachat-rpc-client/pyproject.toml
+7 −19 deltachat-rpc-client/src/deltachat_rpc_client/direct_imap.py
+15 −7 deltachat-rpc-client/tests/test_securejoin.py
+21 −1 deltachat-rpc-client/tests/test_something.py
+1 −1 deltachat-rpc-server/Cargo.toml
+1 −1 deltachat-rpc-server/npm-package/package.json
+1 −57 deny.toml
+1 −0 node/constants.js
+1 −0 node/lib/constants.ts
+1 −1 node/test/test.mjs
+1 −1 package.json
+1 −1 python/pyproject.toml
+1 −3 python/src/deltachat/account.py
+7 −21 python/src/deltachat/direct_imap.py
+6 −5 python/src/deltachat/testplugin.py
+12 −5 python/tests/test_1_online.py
+1 −1 python/tests/test_3_offline.py
+1 −1 release-date.in
+1 −1 scripts/coredeps/install-rust.sh
+1 −1 scripts/update-provider-database.sh
+96 −53 src/chat.rs
+127 −39 src/config.rs
+196 −294 src/configure.rs
+8 −6 src/contact.rs
+16 −6 src/context.rs
+165 −100 src/imap.rs
+96 −65 src/imap/client.rs
+61 −4 src/imex.rs
+22 −232 src/imex/transfer.rs
+7 −22 src/key.rs
+0 −1 src/lib.rs
+882 −245 src/login_param.rs
+19 −0 src/message.rs
+35 −24 src/mimefactory.rs
+18 −18 src/mimeparser.rs
+105 −23 src/net.rs
+20 −21 src/net/dns.rs
+190 −101 src/net/http.rs
+715 −0 src/net/proxy.rs
+6 −0 src/net/session.rs
+40 −79 src/oauth2.rs
+8 −11 src/peer_channels.rs
+17 −17 src/pgp.rs
+1 −1 src/provider.rs
+86 −17 src/provider/data.rs
+7 −10 src/push.rs
+367 −68 src/qr.rs
+10 −9 src/qr/dclogin_scheme.rs
+13 −0 src/receive_imf/tests.rs
+15 −0 src/scheduler.rs
+113 −90 src/securejoin.rs
+30 −6 src/simplify.rs
+45 −66 src/smtp.rs
+168 −68 src/smtp/connect.rs
+0 −148 src/socks.rs
+34 −0 src/sql/migrations.rs
+2 −2 src/stock_str.rs
+72 −53 src/sync.rs
+73 −32 src/test_utils.rs
+29 −58 src/token.rs
+35 −22 src/tools.rs

0 comments on commit 0bef0b3

Please sign in to comment.