Skip to content

Commit

Permalink
update deltachat-core-rust to 'chore(release): prepare for 1.151.0' o…
Browse files Browse the repository at this point in the history
…f 'v1.151.0'
  • Loading branch information
r10s committed Nov 23, 2024
1 parent 816b505 commit 1b1f2d5
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 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

0 comments on commit 1b1f2d5

Please sign in to comment.