Skip to content

Commit

Permalink
update deltachat-core-rust to 'chore(release): prepare for 1.147.1' o…
Browse files Browse the repository at this point in the history
…f 'v1.147.1'
  • Loading branch information
r10s committed Oct 15, 2024
1 parent 0827719 commit ff8f629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deltachat-ios/libraries/deltachat-core-rust
Submodule deltachat-core-rust updated 92 files
+9 −9 .github/workflows/ci.yml
+202 −0 CHANGELOG.md
+60 −0 CONTRIBUTING.md
+658 −1,357 Cargo.lock
+27 −20 Cargo.toml
+1 −1 deltachat-ffi/Cargo.toml
+10 −35 deltachat-ffi/deltachat.h
+7 −55 deltachat-ffi/src/lib.rs
+21 −18 deltachat-ffi/src/lot.rs
+2 −2 deltachat-jsonrpc/Cargo.toml
+3 −52 deltachat-jsonrpc/src/api.rs
+1 −1 deltachat-jsonrpc/src/api/types/message.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
+14 −5 deltachat-repl/src/cmdline.rs
+6 −2 deltachat-repl/src/main.rs
+4 −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
+0 −41 node/lib/context.ts
+0 −22 node/src/module.c
+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/run_all.sh
+1 −1 scripts/update-provider-database.sh
+41 −25 src/blob.rs
+146 −117 src/chat.rs
+130 −40 src/config.rs
+198 −299 src/configure.rs
+8 −6 src/contact.rs
+69 −28 src/context.rs
+27 −4 src/download.rs
+22 −6 src/ephemeral.rs
+165 −100 src/imap.rs
+96 −65 src/imap/client.rs
+207 −32 src/imex.rs
+53 −234 src/imex/transfer.rs
+7 −22 src/key.rs
+0 −1 src/lib.rs
+882 −245 src/login_param.rs
+39 −7 src/message.rs
+37 −25 src/mimefactory.rs
+18 −18 src/mimeparser.rs
+105 −23 src/net.rs
+20 −21 src/net/dns.rs
+189 −101 src/net/http.rs
+655 −0 src/net/proxy.rs
+11 −2 src/net/session.rs
+24 −22 src/net/tls.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
+368 −69 src/qr.rs
+10 −9 src/qr/dclogin_scheme.rs
+10 −1 src/quota.rs
+76 −48 src/receive_imf.rs
+81 −2 src/receive_imf/tests.rs
+39 −30 src/scheduler.rs
+117 −91 src/securejoin.rs
+5 −2 src/securejoin/bob.rs
+30 −6 src/simplify.rs
+45 −66 src/smtp.rs
+168 −68 src/smtp/connect.rs
+0 −148 src/socks.rs
+1 −3 src/sql.rs
+75 −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
+9 −12 src/webxdc.rs

0 comments on commit ff8f629

Please sign in to comment.