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

Merge master branch #4874

Merged
merged 142 commits into from
Oct 25, 2023
Merged

Merge master branch #4874

merged 142 commits into from
Oct 25, 2023

Commits on Jul 7, 2023

  1. chore: spellcheck

    link2xt committed Jul 7, 2023
    Configuration menu
    Copy the full SHA
    243c035 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2023

  1. feat: Verified 1:1 chats (#4315)

    Implement #4188
    
    BREAKING CHANGE: Remove unused DC_STR_PROTECTION_(EN)ABLED* strings
    BREAKING CHANGE: Remove unused dc_set_chat_protection()
    Hocuri committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    9cd000c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2b15cb View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. chore: nightly clippy fixes

    link2xt authored and hpk42 committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    31e3169 View commit details
    Browse the repository at this point in the history
  2. build: remove examples/simple.rs

    When `cargo test` is executed,
    all examples are built by default
    to ensure that they can be compiled.
    
    This is a documented and expected behaviour,
    even though it was previously reported as a bug:
    <rust-lang/cargo#6675>
    
    In particular, `examples/simple.rs` is built into
    a 67M binary `target/debug/examples/simple`.
    This is unnecessary to do so every time
    you change a line in the `deltachat` crate
    and want to rerun the tests.
    
    Workaround is to run `cargo test --tests`,
    but it is easy to forget and is not discoverable
    unless you read the "Target Selection" section of `cargo help test`.
    
    We have a maintained example at https://github.com/deltachat-bot/echo,
    so there is no need for an example in the core repository.
    link2xt committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    976797d View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. test: Remove unnecessary inner_set_protection() call (#4539)

    1:1 chats are automatically created as protected if the contact is
    verified, there is no need to explicitly do this.
    
    Plus, by removing this call, the test also tests that automatically
    creating 1:1 chats as protected works.
    Hocuri committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    17f2d33 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1e28ea9 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2023

  1. Merge branch 'stable'

    link2xt committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    a020d5c View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2023

  1. fix: Allow to save a draft if the verification is broken (#4542)

    If the verification is broken, `can_send()` is false.
    
    But if the user was typing a message right when a verification-breaking message came in, the UI still needs to be able to save it as a draft.
    
    Steps to reproduce the bug:
      - Set a draft
      - Your chat partner breaks verification
      - Go back to the chats list
      - Go to the chat again
      - Accept the breakage
      - Expected: The draft is still there
      - Bug behavior: The draft is gone
    Hocuri committed Jul 16, 2023
    Configuration menu
    Copy the full SHA
    d762753 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. Merge branch 'stable'

    link2xt committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    6d37e86 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2023

  1. Configuration menu
    Copy the full SHA
    3de1dbc View commit details
    Browse the repository at this point in the history
  2. build: use Rust 1.71.0 and increase MSRV to 1.66.0

    Rust 1.66 is required by constant_time_eq 0.3.0.
    link2xt committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    a1663a9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    659cffe View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2023

  1. Configuration menu
    Copy the full SHA
    7062bb0 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2023

  1. Configuration menu
    Copy the full SHA
    5673294 View commit details
    Browse the repository at this point in the history
  2. cargo fmt

    Simon-Laux committed Jul 23, 2023
    Configuration menu
    Copy the full SHA
    b8fcb66 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'stable'

    link2xt committed Jul 23, 2023
    Configuration menu
    Copy the full SHA
    3705616 View commit details
    Browse the repository at this point in the history
  4. update node constants

    looks like this was fogotten when changing the chat protection stock strings
    Simon-Laux authored and link2xt committed Jul 23, 2023
    Configuration menu
    Copy the full SHA
    3a63628 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2023

  1. fix: Fix info-message orderings of verified 1:1 chats (#4545)

    Correctly handle messages with old timestamps for verified chats:
    
     * They must not be sorted over a protection-changed info message
    
     * If they change the protection, then they must not be sorted over existing other messages, because then the protection-changed info message would also be above these existing messages.
    
    
    This PR fixes this:
    
     1. Even seen messages can't be sorted into already-noticed messages anymore. **This also changes DC's behavior in the absence of verified 1:1 chats**. Before this PR, messages that are marked as seen when they are downloaded will always be sorted by their timestamp, even if it's very old.
    
     2. protection-changed info messages are always sorted to the bottom.
    
        **Edit:**
    
     3. There is an exception to rule 1: Outgoing messages are still allowed to be sorted purely by their timestamp, and don't influence old messages. This is to the problem described at [*].
    
    
    Together, these rules also make sure that the protection-changed info message is always right above the message causing the change.
    
    [*] If we receive messages from two different folders, e.g. `Sent` and `Inbox`, then this will lead to wrong message ordering in many cases. I need to think about this more, or maybe someone else has an idea. One new idea that came to my mind is:
    
     * Always sort noticed messages under the newest info message (this PR sorts them under the newest noticed message, master sorts them purely by their sent timestamp)
    
     * Always sort unnoticed messages under the newest noticed message (that's the same behavior as in this PR and on master)
    
     * Always sort protection-changed info messages to the bottom (as in this PR)
    
    
    However, after a talk with @link2xt we instead decided to add rule 3. (see above) because it seemed a little bit easier.
    Hocuri committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    682e241 View commit details
    Browse the repository at this point in the history
  2. api!(Rust): Remove unused function is_verified_ex() (#4551)

    No one used it anymore, and all occurences I could find (on
    GitHub)[https://github.com/search?q=%22is_verified_ex%22&type=code&p=1]
    are either forks of deltachat-core-rust or of deltachat-core (which is
    the old C core).
    Hocuri committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    b96028c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8fb8a87 View commit details
    Browse the repository at this point in the history
  4. chore(deps): update rPGP

    link2xt committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    acc7bb0 View commit details
    Browse the repository at this point in the history
  5. refactor: use slices and vectors instead of Keyring wrapper

    This change removes all traces of dc_keyring_t,
    which was a C implementation of dynamically sized array.
    link2xt committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    d797de7 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'stable'

    link2xt committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    f930576 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2023

  1. Update README.md

    Hocuri committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    170968d View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2023

  1. refactor(e2ee): do not return anything from ensure_secret_key_exists()

    The return value was never used.
    link2xt committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    6d51d19 View commit details
    Browse the repository at this point in the history
  2. feat!: Add lockfile to account manager (#4310)

    Opening the same account (context) from multiple processes is dangerous, can result in duplicate
    downloads of the same message etc. Same for account manager, attempts to modify the same
    accounts.toml even if done atomically with may result in corrupted files as atomic replacement
    procedure does not expect that multiple processes may write to the same temporary file.
    
    accounts.toml cannot be used as a lockfile because it is replaced during atomic update. Therefore, a
    new file next to accounts.toml is needed to prevent starting second account manager in the same
    directory.
    
    But iOS needs to be able to open accounts from multiple processes at the same time. This is required
    as the "share-to-DC extension" is a separate process by iOS design -- this process may or may not be
    started while the main app is running. Accounts are not altered however by this extension, so let's
    add to the `Accounts::new()` constructor an `rdwr` parameter which allows to read the accounts
    config w/o locking the lockfile.
    iequidoo committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    f27d304 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2023

  1. Configuration menu
    Copy the full SHA
    c55a3d3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b9703a View commit details
    Browse the repository at this point in the history
  3. Merge branch 'stable'

    link2xt committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    67f28f5 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2023

  1. Configuration menu
    Copy the full SHA
    a02a593 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    85739ba View commit details
    Browse the repository at this point in the history
  3. refactor: move dc_preconfigure_keypair() implementation into `deltach…

    …at` crate
    
    This allows to hide `DcKey` trait from public API.
    link2xt committed Jul 29, 2023
    Configuration menu
    Copy the full SHA
    b784415 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    af01355 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. feat: Don't show a contact as verified if their key changed since the…

    … verification (#4574)
    
    Don't show a contact as verified if their key changed in the meantime
    
    If a contact's key changed since the verification, then it's very
    unlikely that they still have the old, verified key. So, don't show them
    as verified anymore.
    
    This also means that you can't add a contact like this to a verified
    group, which is good.
    
    The documentation actually already described this (new) behavior:
    
    ```rust
    /// and if the key has not changed since this verification.
    ```
    
    so, this adapts the code to the documentation.
    Hocuri committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    60bacbe View commit details
    Browse the repository at this point in the history
  2. api!: make MsgId.delete_from_db() private

    Use `delete_msgs()` if you are using the Delta Chat core
    as a library and want to delete a message.
    link2xt committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    8ed6d4d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8eee389 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2023

  1. Configuration menu
    Copy the full SHA
    c34edc5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    13e766b View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. Configuration menu
    Copy the full SHA
    d95843b View commit details
    Browse the repository at this point in the history
  2. build: increase MSRV to 1.67.0

    This is required by time v0.3.24
    link2xt committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    70000d9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e6cffd5 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. Configuration menu
    Copy the full SHA
    3111bcd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aecbebd View commit details
    Browse the repository at this point in the history
  3. Merge tag 'v1.119.0'

    link2xt committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    954067e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e12044e View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2023

  1. build: update to Zig 0.11.0

    link2xt committed Aug 6, 2023
    Configuration menu
    Copy the full SHA
    3ab181f View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. test: Directly unwrap in TestContext::get_chat() (#4614)

    Directly unwrap in TestContext::get_chat()
    
    Turns out that all usages of get_chat() directly unwrapped, because in a
    test it doesn't make sense to handle the error of there being no chat.
    Hocuri committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    885f26e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    53f04a1 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. chore(cargo): bump quick-xml from 0.29.0 to 0.30.0

    Bumps [quick-xml](https://github.com/tafia/quick-xml) from 0.29.0 to 0.30.0.
    - [Release notes](https://github.com/tafia/quick-xml/releases)
    - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
    - [Commits](tafia/quick-xml@v0.29.0...v0.30.0)
    
    ---
    updated-dependencies:
    - dependency-name: quick-xml
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and iequidoo committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    03395b9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    20c8874 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Configuration menu
    Copy the full SHA
    987ce58 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2023

  1. Configuration menu
    Copy the full SHA
    3b47c3f View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2023

  1. build(cargo-deny): ignore RUSTSEC-2022-0093

    It is an API issue that can only be fixed in rPGP and iroh upstream.
    link2xt committed Aug 17, 2023
    Configuration menu
    Copy the full SHA
    16aad3f View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Configuration menu
    Copy the full SHA
    9094df7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    488a3d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8f2313b View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. fix: receive_imf: Update peerstate from db after handling Securejoin …

    …handshake (#4600)
    
    Otherwise has_verified_encryption() would check a stale Peerstate object.
    iequidoo authored and link2xt committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    0179ec2 View commit details
    Browse the repository at this point in the history
  2. fix: Sort old incoming messages below all outgoing ones (#4621)

    If the Inbox is fetched before the Sentbox (as done currently), messages from the Sentbox will
    correctly mingle with the Inbox messages in the end. So, this commit changes message ordering only
    if we already have processed outgoing messages, e.g. if we just sent them in the chat as described
    in #4621. Otherwise new incoming messages are displayed somewhere in the middle of the chat which
    doesn't look usable.
    iequidoo committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    95b2a15 View commit details
    Browse the repository at this point in the history
  3. fix: Delete messages from SMTP queue only on user demand (#4579)

    I.e. from delete_msgs(). Otherwise messages must not be deleted from there, e.g. if a message is
    ephemeral, but a network outage lasts longer than the ephemeral message timer, the message still
    must be sent upon a successful reconnection.
    iequidoo committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    a66f8bd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8c778b3 View commit details
    Browse the repository at this point in the history
  5. fix: do not mark non-verified group chats as verified when using secu…

    …rejoin
    
    Only mark the chat is verified if 1:1 verified chats are enabled
    and securejoin targets a 1:1 chat.
    link2xt committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    7676473 View commit details
    Browse the repository at this point in the history
  6. chore(cargo): bump sanitize-filename from 0.4.0 to 0.5.0

    Bumps [sanitize-filename](https://github.com/kardeiz/sanitize-filename) from 0.4.0 to 0.5.0.
    - [Commits](https://github.com/kardeiz/sanitize-filename/commits)
    
    ---
    updated-dependencies:
    - dependency-name: sanitize-filename
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    94cd9a7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c857d6e View commit details
    Browse the repository at this point in the history
  8. Merge branch 'stable'

    link2xt committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    3b80632 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2023

  1. Merge branch 'stable'

    link2xt committed Aug 25, 2023
    Configuration menu
    Copy the full SHA
    2051347 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2023

  1. fix: receive_imf: Set protection only for Chattype::Single (#4597)

    Also don't set protection to ProtectionBroken if it already is.
    
    Co-authored-by: Hocuri <hocuri@gmx.de>
    iequidoo and Hocuri committed Aug 26, 2023
    Configuration menu
    Copy the full SHA
    95f29f7 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'stable'

    link2xt committed Aug 26, 2023
    Configuration menu
    Copy the full SHA
    5e3b1fa View commit details
    Browse the repository at this point in the history
  3. chore: rustfmt

    link2xt committed Aug 26, 2023
    Configuration menu
    Copy the full SHA
    a520f02 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2023

  1. Merge branch 'stable'

    link2xt committed Aug 27, 2023
    Configuration menu
    Copy the full SHA
    e59c4ee View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Merge tag 'v1.120.0'

    link2xt committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    9a7d1fa View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. fix: Return from dc_get_chatlist(DC_GCL_FOR_FORWARDING) only chats wh…

    …ere we can send (#4616)
    
    I.e. exclude from the list the following chats as well:
    - Read-only mailing lists.
    - Chats we're not a member of.
    
    But as for ProtectionBroken chats, we return them, as that may happen to a verified chat at any
    time. It may be confusing if a chat that is normally in the list disappears suddenly. The UI need to
    deal with that case anyway.
    iequidoo committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    83ef25e View commit details
    Browse the repository at this point in the history
  2. Merge commit '7c7cd9cc8084f0e425b1919b84d5e79ed150d16b~' into HEAD

    Merge `stable` up to the mentioned commit.
    iequidoo committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    bc80236 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'stable'

    7c7cd9c is a backport from `master`, so skip it.
    iequidoo committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    5e5e557 View commit details
    Browse the repository at this point in the history
  4. chore(cargo): bump strum_macros from 0.25.1 to 0.25.2

    Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.25.1 to 0.25.2.
    - [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/Peternator7/strum/commits)
    
    ---
    updated-dependencies:
    - dependency-name: strum_macros
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    60ddbe5 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2023

  1. chore(cargo): bump syn from 2.0.28 to 2.0.29

    Bumps [syn](https://github.com/dtolnay/syn) from 2.0.28 to 2.0.29.
    - [Release notes](https://github.com/dtolnay/syn/releases)
    - [Commits](dtolnay/syn@2.0.28...2.0.29)
    
    ---
    updated-dependencies:
    - dependency-name: syn
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    6881f9d View commit details
    Browse the repository at this point in the history
  2. chore(cargo): bump chrono from 0.4.26 to 0.4.28

    Bumps [chrono](https://github.com/chronotope/chrono) from 0.4.26 to 0.4.28.
    - [Release notes](https://github.com/chronotope/chrono/releases)
    - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
    - [Commits](chronotope/chrono@v0.4.26...v0.4.28)
    
    ---
    updated-dependencies:
    - dependency-name: chrono
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    88ae653 View commit details
    Browse the repository at this point in the history
  3. chore(cargo): bump base64 from 0.21.2 to 0.21.3

    Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.21.2 to 0.21.3.
    - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
    - [Commits](marshallpierce/rust-base64@v0.21.2...v0.21.3)
    
    ---
    updated-dependencies:
    - dependency-name: base64
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    99302c9 View commit details
    Browse the repository at this point in the history
  4. chore(cargo): bump anyhow from 1.0.72 to 1.0.75

    Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.72 to 1.0.75.
    - [Release notes](https://github.com/dtolnay/anyhow/releases)
    - [Commits](dtolnay/anyhow@1.0.72...1.0.75)
    
    ---
    updated-dependencies:
    - dependency-name: anyhow
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    cb0270b View commit details
    Browse the repository at this point in the history
  5. chore(cargo): bump thiserror from 1.0.44 to 1.0.47

    Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.44 to 1.0.47.
    - [Release notes](https://github.com/dtolnay/thiserror/releases)
    - [Commits](dtolnay/thiserror@1.0.44...1.0.47)
    
    ---
    updated-dependencies:
    - dependency-name: thiserror
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    2a39a85 View commit details
    Browse the repository at this point in the history
  6. chore(cargo): bump url from 2.4.0 to 2.4.1

    Bumps [url](https://github.com/servo/rust-url) from 2.4.0 to 2.4.1.
    - [Release notes](https://github.com/servo/rust-url/releases)
    - [Commits](servo/rust-url@v2.4.0...v2.4.1)
    
    ---
    updated-dependencies:
    - dependency-name: url
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    aebad2e View commit details
    Browse the repository at this point in the history
  7. chore(cargo): bump schemars from 0.8.12 to 0.8.13

    Bumps [schemars](https://github.com/GREsau/schemars) from 0.8.12 to 0.8.13.
    - [Release notes](https://github.com/GREsau/schemars/releases)
    - [Changelog](https://github.com/GREsau/schemars/blob/master/CHANGELOG.md)
    - [Commits](GREsau/schemars@v0.8.12...v0.8.13)
    
    ---
    updated-dependencies:
    - dependency-name: schemars
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    ab09ecc View commit details
    Browse the repository at this point in the history
  8. chore(cargo): bump tokio from 1.29.1 to 1.32.0

    Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.29.1 to 1.32.0.
    - [Release notes](https://github.com/tokio-rs/tokio/releases)
    - [Commits](tokio-rs/tokio@tokio-1.29.1...tokio-1.32.0)
    
    ---
    updated-dependencies:
    - dependency-name: tokio
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    828c90a View commit details
    Browse the repository at this point in the history
  9. chore(cargo): bump backtrace from 0.3.68 to 0.3.69

    Bumps [backtrace](https://github.com/rust-lang/backtrace-rs) from 0.3.68 to 0.3.69.
    - [Release notes](https://github.com/rust-lang/backtrace-rs/releases)
    - [Commits](rust-lang/backtrace-rs@0.3.68...0.3.69)
    
    ---
    updated-dependencies:
    - dependency-name: backtrace
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    486050d View commit details
    Browse the repository at this point in the history
  10. chore(cargo): bump image from 0.24.6 to 0.24.7

    Bumps [image](https://github.com/image-rs/image) from 0.24.6 to 0.24.7.
    - [Changelog](https://github.com/image-rs/image/blob/master/CHANGES.md)
    - [Commits](image-rs/image@v0.24.6...v0.24.7)
    
    ---
    updated-dependencies:
    - dependency-name: image
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    d9e3828 View commit details
    Browse the repository at this point in the history
  11. chore(cargo): bump quote from 1.0.32 to 1.0.33

    Bumps [quote](https://github.com/dtolnay/quote) from 1.0.32 to 1.0.33.
    - [Release notes](https://github.com/dtolnay/quote/releases)
    - [Commits](dtolnay/quote@1.0.32...1.0.33)
    
    ---
    updated-dependencies:
    - dependency-name: quote
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    e1f1143 View commit details
    Browse the repository at this point in the history
  12. chore(cargo): bump tempfile from 3.7.0 to 3.8.0

    Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.7.0 to 3.8.0.
    - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
    - [Commits](Stebalien/tempfile@v3.7.0...v3.8.0)
    
    ---
    updated-dependencies:
    - dependency-name: tempfile
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    8ac1754 View commit details
    Browse the repository at this point in the history
  13. chore(cargo): bump reqwest from 0.11.18 to 0.11.20

    Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.18 to 0.11.20.
    - [Release notes](https://github.com/seanmonstar/reqwest/releases)
    - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
    - [Commits](seanmonstar/reqwest@v0.11.18...v0.11.20)
    
    ---
    updated-dependencies:
    - dependency-name: reqwest
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    d8bf1c1 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ec56134 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2023

  1. chore(cargo): bump serde_json from 1.0.104 to 1.0.105

    Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.104 to 1.0.105.
    - [Release notes](https://github.com/serde-rs/json/releases)
    - [Commits](serde-rs/json@v1.0.104...v1.0.105)
    
    ---
    updated-dependencies:
    - dependency-name: serde_json
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 3, 2023
    Configuration menu
    Copy the full SHA
    0a4c993 View commit details
    Browse the repository at this point in the history
  2. chore(cargo): bump serde from 1.0.180 to 1.0.188

    Bumps [serde](https://github.com/serde-rs/serde) from 1.0.180 to 1.0.188.
    - [Release notes](https://github.com/serde-rs/serde/releases)
    - [Commits](serde-rs/serde@v1.0.180...v1.0.188)
    
    ---
    updated-dependencies:
    - dependency-name: serde
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 3, 2023
    Configuration menu
    Copy the full SHA
    72c94e1 View commit details
    Browse the repository at this point in the history
  3. chore(cargo): bump typescript-type-def from 0.5.7 to 0.5.8

    Bumps [typescript-type-def](https://github.com/dbeckwith/rust-typescript-type-def) from 0.5.7 to 0.5.8.
    - [Changelog](https://github.com/dbeckwith/rust-typescript-type-def/blob/master/CHANGELOG.md)
    - [Commits](dbeckwith/rust-typescript-type-def@v0.5.7...v0.5.8)
    
    ---
    updated-dependencies:
    - dependency-name: typescript-type-def
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 3, 2023
    Configuration menu
    Copy the full SHA
    1b883ae View commit details
    Browse the repository at this point in the history
  4. chore(cargo): bump log from 0.4.19 to 0.4.20

    Bumps [log](https://github.com/rust-lang/log) from 0.4.19 to 0.4.20.
    - [Release notes](https://github.com/rust-lang/log/releases)
    - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
    - [Commits](rust-lang/log@0.4.19...0.4.20)
    
    ---
    updated-dependencies:
    - dependency-name: log
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 3, 2023
    Configuration menu
    Copy the full SHA
    b36acb2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e12ef80 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. Configuration menu
    Copy the full SHA
    ae939e7 View commit details
    Browse the repository at this point in the history
  2. chore(cargo): bump axum from 0.6.19 to 0.6.20

    Bumps [axum](https://github.com/tokio-rs/axum) from 0.6.19 to 0.6.20.
    - [Release notes](https://github.com/tokio-rs/axum/releases)
    - [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
    - [Commits](tokio-rs/axum@axum-v0.6.19...axum-v0.6.20)
    
    ---
    updated-dependencies:
    - dependency-name: axum
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    54d632a View commit details
    Browse the repository at this point in the history
  3. chore(cargo): bump trust-dns-resolver from 0.22.0 to 0.23.0

    Bumps [trust-dns-resolver](https://github.com/bluejekyll/trust-dns) from 0.22.0 to 0.23.0.
    - [Release notes](https://github.com/bluejekyll/trust-dns/releases)
    - [Changelog](https://github.com/bluejekyll/trust-dns/blob/main/CHANGELOG.md)
    - [Commits](hickory-dns/hickory-dns@v0.22.0...v0.23.0)
    
    ---
    updated-dependencies:
    - dependency-name: trust-dns-resolver
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and link2xt committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    178fc17 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e9811fb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f94d34c View commit details
    Browse the repository at this point in the history
  6. chore(cargo): bump regex from 1.9.1 to 1.9.5

    Bumps [regex](https://github.com/rust-lang/regex) from 1.9.1 to 1.9.5.
    - [Release notes](https://github.com/rust-lang/regex/releases)
    - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
    - [Commits](rust-lang/regex@1.9.1...1.9.5)
    
    ---
    updated-dependencies:
    - dependency-name: regex
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    f05b0dd View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Configuration menu
    Copy the full SHA
    4815e9b View commit details
    Browse the repository at this point in the history
  2. fix: Clear VerifiedOneOnOneChats config on backup (#4681)

    If the user makes a backup from a UI that supports the experimental verified 1:1 chats (e.g. nightly Android) and imports it into a UI that doesn't, then this config should be cleared.
    
    We already talked about this a long time ago after @Simon-Laux noticed this problem, but I think we didn't actually solve it back then?
    
    Best to review with whitespace changes disabled.
    Hocuri committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    2587ebb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f7a47e6 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. Merge tag 'v1.121.0'

    link2xt committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    dcbf599 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Configuration menu
    Copy the full SHA
    4a05854 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. Merge tag 'v1.122.0'

    link2xt committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    790e867 View commit details
    Browse the repository at this point in the history
  2. build(coredeps): install perl-IPC-Cmd

    It is required to configure OpenSSL 3.0.
    link2xt committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    e7617f0 View commit details
    Browse the repository at this point in the history
  3. build(coredeps): only run yum if it is available

    musllinux is based on Alpine and has no yum
    link2xt committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    061d091 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2023

  1. chore(deps): bump quinn-proto from 0.9.2 to 0.9.5 in /fuzz

    Bumps [quinn-proto](https://github.com/quinn-rs/quinn) from 0.9.2 to 0.9.5.
    - [Release notes](https://github.com/quinn-rs/quinn/releases)
    - [Commits](https://github.com/quinn-rs/quinn/commits)
    
    ---
    updated-dependencies:
    - dependency-name: quinn-proto
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    a42a6ca View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. Merge tag 'v1.123.0'

    link2xt committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    59a3bc0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c416875 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2023

  1. Fix link to the template documentation of git-cliff

    The old link gives me 404
    Hocuri authored and link2xt committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    d109a1b View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2023

  1. Merge stable into master

    link2xt committed Sep 30, 2023
    Configuration menu
    Copy the full SHA
    5daa627 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2023

  1. Configuration menu
    Copy the full SHA
    59e5a63 View commit details
    Browse the repository at this point in the history
  2. chore(cargo): bump brotli from 3.3.4 to 3.4.0

    Bumps [brotli](https://github.com/dropbox/rust-brotli) from 3.3.4 to 3.4.0.
    - [Release notes](https://github.com/dropbox/rust-brotli/releases)
    - [Commits](https://github.com/dropbox/rust-brotli/commits)
    
    ---
    updated-dependencies:
    - dependency-name: brotli
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 1, 2023
    Configuration menu
    Copy the full SHA
    e500485 View commit details
    Browse the repository at this point in the history
  3. chore(cargo): bump tokio-util from 0.7.8 to 0.7.9

    Bumps [tokio-util](https://github.com/tokio-rs/tokio) from 0.7.8 to 0.7.9.
    - [Release notes](https://github.com/tokio-rs/tokio/releases)
    - [Commits](tokio-rs/tokio@tokio-util-0.7.8...tokio-util-0.7.9)
    
    ---
    updated-dependencies:
    - dependency-name: tokio-util
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 1, 2023
    Configuration menu
    Copy the full SHA
    3166b44 View commit details
    Browse the repository at this point in the history
  4. chore(cargo): bump thiserror from 1.0.47 to 1.0.49

    Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.47 to 1.0.49.
    - [Release notes](https://github.com/dtolnay/thiserror/releases)
    - [Commits](dtolnay/thiserror@1.0.47...1.0.49)
    
    ---
    updated-dependencies:
    - dependency-name: thiserror
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 1, 2023
    Configuration menu
    Copy the full SHA
    6b2df13 View commit details
    Browse the repository at this point in the history
  5. chore(cargo): bump regex from 1.9.5 to 1.9.6

    Bumps [regex](https://github.com/rust-lang/regex) from 1.9.5 to 1.9.6.
    - [Release notes](https://github.com/rust-lang/regex/releases)
    - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
    - [Commits](rust-lang/regex@1.9.5...1.9.6)
    
    ---
    updated-dependencies:
    - dependency-name: regex
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 1, 2023
    Configuration menu
    Copy the full SHA
    573746c View commit details
    Browse the repository at this point in the history
  6. chore(cargo): bump smallvec from 1.11.0 to 1.11.1

    Bumps [smallvec](https://github.com/servo/rust-smallvec) from 1.11.0 to 1.11.1.
    - [Release notes](https://github.com/servo/rust-smallvec/releases)
    - [Commits](servo/rust-smallvec@v1.11.0...v1.11.1)
    
    ---
    updated-dependencies:
    - dependency-name: smallvec
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 1, 2023
    Configuration menu
    Copy the full SHA
    e4e50d0 View commit details
    Browse the repository at this point in the history
  7. chore(cargo): bump sha2 from 0.10.7 to 0.10.8

    Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.10.7 to 0.10.8.
    - [Commits](RustCrypto/hashes@sha2-v0.10.7...sha2-v0.10.8)
    
    ---
    updated-dependencies:
    - dependency-name: sha2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 1, 2023
    Configuration menu
    Copy the full SHA
    c0195ab View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2023

  1. Configuration menu
    Copy the full SHA
    c2d7011 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4a6a214 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2ae92c0 View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump webpki from 0.22.0 to 0.22.2 in /fuzz

    Bumps [webpki](https://github.com/briansmith/webpki) from 0.22.0 to 0.22.2.
    - [Commits](https://github.com/briansmith/webpki/commits)
    
    ---
    updated-dependencies:
    - dependency-name: webpki
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 2, 2023
    Configuration menu
    Copy the full SHA
    8bc2ce1 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

  1. Configuration menu
    Copy the full SHA
    1f03267 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    883832f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ef3e94c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    24ea90b View commit details
    Browse the repository at this point in the history
  5. chore(cargo): bump proptest from 1.2.0 to 1.3.1

    Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.2.0 to 1.3.1.
    - [Release notes](https://github.com/proptest-rs/proptest/releases)
    - [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
    - [Commits](proptest-rs/proptest@v1.2.0...v1.3.1)
    
    ---
    updated-dependencies:
    - dependency-name: proptest
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and iequidoo committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    f3fb0dc View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2023

  1. Merge tag 'v1.124.0'

    link2xt committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    2757915 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2023

  1. Merge tag 'v1.124.1'

    link2xt committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    a119b24 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2023

  1. Merge 'stable' into 'master'

    Resolved conflicts due to asyncio removal.
    link2xt committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    37383c1 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2023

  1. Merge tag 'v1.125.0'

    Release 1.125.0
    link2xt committed Oct 14, 2023
    Configuration menu
    Copy the full SHA
    2775fd1 View commit details
    Browse the repository at this point in the history
  2. api(json-rpc): force stickers to be sent as stickers (#4819)

    This approach uses a param field to enable forcing the sticker
    `viewtype`. The first commit has the memory-only flag implemented, but
    this flag is not persistent through the database conversion needed for
    draft/undraft. That's why `param` has to be used.
    
    follow up to #4814 
    fixes #4739
    
    ---------
    
    Co-authored-by: Septias <scoreplayer2000@gmail.comclear>
    Septias and Septias committed Oct 14, 2023
    Configuration menu
    Copy the full SHA
    0751cc5 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2023

  1. feat: add bot field to contact (#4821)

    closes #4647
    Septias committed Oct 15, 2023
    Configuration menu
    Copy the full SHA
    1632035 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2023

  1. test: adjust expected info message in test_verified_group_vs_delete_s…

    …erver_after
    
    Test was written for stable branch
    and has to be adjusted for verified 1:1 chats branch
    link2xt committed Oct 21, 2023
    Configuration menu
    Copy the full SHA
    e87f785 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2023

  1. Merge tag 'v1.126.0'

    link2xt committed Oct 22, 2023
    Configuration menu
    Copy the full SHA
    54410db View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Merge tag 'v1.126.1'

    Release 1.126.1
    link2xt committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    c1eb33c View commit details
    Browse the repository at this point in the history
  2. Merge branch 'stable'

    link2xt committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    4e771e8 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Configuration menu
    Copy the full SHA
    3748794 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b89c134 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    113356a View commit details
    Browse the repository at this point in the history