chore(deps): update axum monorepo #932

Open
renovate wants to merge 1 commit from renovate/axum-monorepo into main
Collaborator

This PR contains the following updates:

Package Type Update Change
axum workspace.dependencies minor 0.7.9 -> 0.8.0
axum-extra workspace.dependencies minor 0.9.6 -> 0.10.0

Release Notes

tokio-rs/axum (axum)

v0.8.6

Compare Source

v0.8.5: axum v0.8.5

Compare Source

  • fixed: Reject JSON request bodies with trailing characters after the JSON document (#​3453)
  • added: Implement OptionalFromRequest for Multipart (#​3220)
  • added: Getter methods Location::{status_code, location}
  • added: Support for writing arbitrary binary data into server-sent events (#​3425)]
  • added: middleware::ResponseAxumBodyLayer for mapping response body to axum::body::Body (#​3469)
  • added: impl FusedStream for WebSocket (#​3443)
  • changed: The sse module and Sse type no longer depend on the tokio feature (#​3154)
  • changed: If the location given to one of Redirects constructors is not a valid header value, instead of panicking on construction, the IntoResponse impl now returns an HTTP 500, just like Json does when serialization fails (#​3377)
  • changed: Update minimum rust version to 1.78 (#​3412)

v0.8.4: axum v0.8.4

Compare Source

  • added: Router::reset_fallback (#​3320)
  • added: WebSocketUpgrade::selected_protocol (#​3248)
  • fixed: Panic location for overlapping method routes (#​3319)
  • fixed: Don't leak a tokio task when using serve without graceful shutdown (#​3129)

v0.8.3: axum v0.8.3

Compare Source

  • added: Implement From<Bytes> for Message (#​3273)
  • added: Implement OptionalFromRequest for Json (#​3142)
  • added: Implement OptionalFromRequest for Extension (#​3157)
  • added: Allow setting the read buffer capacity of WebSocketUpgrade (#​3178)
  • changed: Improved code size / compile time of dependent crates (#​3285, #​3294)

v0.8.2: axum v0.8.2

Yanked from crates.io due to unforeseen breaking change, see #​3190 for details


  • added: Implement OptionalFromRequest for Json (#​3142)
  • added: Implement OptionalFromRequest for Extension (#​3157)
  • changed: Make the status function of rejections a const function, such
    as JsonRejection, QueryRejection and PathRejection (#​3168)

v0.8.0: axum v0.8.0

Compare Source

since rc.1

  • breaking: axum::extract::ws::Message now uses Bytes in place of Vec<u8>,
    and a new Utf8Bytes type in place of String, for its variants (#​3078)
  • breaking: Remove OptionalFromRequestParts impl for Query (#​3088)
  • changed: Upgraded tokio-tungstenite to 0.26 (#​3078)
  • changed: Query/Form: Use serde_path_to_error to report fields that failed to parse (#​3081)

full changelog

You can also read the blog post on tokio

Note: there are further relevant changes in axum-core's changelog

  • breaking: Upgrade matchit to 0.8, changing the path parameter syntax from /:single and /*many to /{single} and /{*many}; the old syntax produces a panic to avoid silent change in behavior (#​2645)
  • breaking: Require Sync for all handlers and services added to Router and MethodRouter (#​2473)
  • breaking: The tuple and tuple_struct Path extractor deserializers now check that the number of parameters matches the tuple length exactly (#​2931)
  • breaking: Move Host extractor to axum-extra (#​2956)
  • breaking: Remove WebSocket::close. Users should explicitly send close messages themselves. (#​2974)
  • breaking: Make serve generic over the listener and IO types (#​2941)
  • breaking: Remove Serve::tcp_nodelay and WithGracefulShutdown::tcp_nodelay.
    See serve::ListenerExt for an API that let you set arbitrary TCP stream properties. (#​2941)
  • breaking: Option<Path<T>> no longer swallows all error conditions,
    instead rejecting the request in many cases; see its documentation for details (#​2475)
  • breaking: axum::extract::ws::Message now uses Bytes in place of Vec<u8>,
    and a new Utf8Bytes type in place of String, for its variants (#​3078)
  • fixed: Skip SSE incompatible chars of serde_json::RawValue in Event::json_data (#​2992)
  • fixed: Don't panic when array type is used for path segment (#​3039)
  • fixed: Avoid setting content-length before middleware.
    This allows middleware to add bodies to requests without needing to manually set content-length (#​2897)
  • change: Update minimum rust version to 1.75 (#​2943)
  • changed: Upgraded tokio-tungstenite to 0.26 (#​3078)
  • changed: Query/Form: Use serde_path_to_error to report fields that failed to parse (#​3081)
  • added: Add method_not_allowed_fallback to set a fallback when a path matches but there is no handler for the given HTTP method (#​2903)
  • added: Add NoContent as a self-described shortcut for StatusCode::NO_CONTENT (#​2978)
  • added: Add support for WebSockets over HTTP/2. They can be enabled by changing get(ws_endpoint) handlers to any(ws_endpoint) (#​2894)
  • added: Add MethodFilter::CONNECT, routing::connect[_service] and MethodRouter::connect[_service] (#​2961)
  • added: Extend FailedToDeserializePathParams::kind enum with (ErrorKind::DeserializeError). This new variant captures both key, value, and message from named path parameters parse errors, instead of only deserialization error message in ErrorKind::Message. (#​2720)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [axum](https://github.com/tokio-rs/axum) | workspace.dependencies | minor | `0.7.9` -> `0.8.0` | | [axum-extra](https://github.com/tokio-rs/axum) | workspace.dependencies | minor | `0.9.6` -> `0.10.0` | --- ### Release Notes <details> <summary>tokio-rs/axum (axum)</summary> ### [`v0.8.6`](https://github.com/tokio-rs/axum/compare/axum-v0.8.5...axum-v0.8.6) [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.5...axum-v0.8.6) ### [`v0.8.5`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.5): axum v0.8.5 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.4...axum-v0.8.5) - **fixed:** Reject JSON request bodies with trailing characters after the JSON document ([#&#8203;3453]) - **added:** Implement `OptionalFromRequest` for `Multipart` ([#&#8203;3220]) - **added:** Getter methods `Location::{status_code, location}` - **added:** Support for writing arbitrary binary data into server-sent events ([#&#8203;3425])] - **added:** `middleware::ResponseAxumBodyLayer` for mapping response body to `axum::body::Body` ([#&#8203;3469]) - **added:** `impl FusedStream for WebSocket` ([#&#8203;3443]) - **changed:** The `sse` module and `Sse` type no longer depend on the `tokio` feature ([#&#8203;3154]) - **changed:** If the location given to one of `Redirect`s constructors is not a valid header value, instead of panicking on construction, the `IntoResponse` impl now returns an HTTP 500, just like `Json` does when serialization fails ([#&#8203;3377]) - **changed:** Update minimum rust version to 1.78 ([#&#8203;3412]) [#&#8203;3154]: https://github.com/tokio-rs/axum/pull/3154 [#&#8203;3220]: https://github.com/tokio-rs/axum/pull/3220 [#&#8203;3377]: https://github.com/tokio-rs/axum/pull/3377 [#&#8203;3412]: https://github.com/tokio-rs/axum/pull/3412 [#&#8203;3425]: https://github.com/tokio-rs/axum/pull/3425 [#&#8203;3443]: https://github.com/tokio-rs/axum/pull/3443 [#&#8203;3453]: https://github.com/tokio-rs/axum/pull/3453 [#&#8203;3469]: https://github.com/tokio-rs/axum/pull/3469 ### [`v0.8.4`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.4): axum v0.8.4 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.3...axum-v0.8.4) - **added:** `Router::reset_fallback` ([#&#8203;3320]) - **added:** `WebSocketUpgrade::selected_protocol` ([#&#8203;3248]) - **fixed:** Panic location for overlapping method routes ([#&#8203;3319]) - **fixed:** Don't leak a tokio task when using `serve` without graceful shutdown ([#&#8203;3129]) [#&#8203;3319]: https://github.com/tokio-rs/axum/pull/3319 [#&#8203;3320]: https://github.com/tokio-rs/axum/pull/3320 [#&#8203;3248]: https://github.com/tokio-rs/axum/pull/3248 [#&#8203;3129]: https://github.com/tokio-rs/axum/pull/3129 ### [`v0.8.3`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.3): axum v0.8.3 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.2...axum-v0.8.3) - **added:** Implement `From<Bytes>` for `Message` ([#&#8203;3273]) - **added:** Implement `OptionalFromRequest` for `Json` ([#&#8203;3142]) - **added:** Implement `OptionalFromRequest` for `Extension` ([#&#8203;3157]) - **added:** Allow setting the read buffer capacity of `WebSocketUpgrade` ([#&#8203;3178]) - **changed:** Improved code size / compile time of dependent crates ([#&#8203;3285], [#&#8203;3294]) [#&#8203;3273]: https://github.com/tokio-rs/axum/pull/3273 [#&#8203;3142]: https://github.com/tokio-rs/axum/pull/3142 [#&#8203;3157]: https://github.com/tokio-rs/axum/pull/3157 [#&#8203;3178]: https://github.com/tokio-rs/axum/pull/3178 [#&#8203;3285]: https://github.com/tokio-rs/axum/pull/3285 [#&#8203;3294]: https://github.com/tokio-rs/axum/pull/3294 ### [`v0.8.2`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.2): axum v0.8.2 Yanked from crates.io due to unforeseen breaking change, see [#&#8203;3190](https://github.com/tokio-rs/axum/issues/3190) for details *** - **added:** Implement `OptionalFromRequest` for `Json` ([#&#8203;3142]) - **added:** Implement `OptionalFromRequest` for `Extension` ([#&#8203;3157]) - **changed:** Make the `status` function of rejections a `const` function, such as `JsonRejection`, `QueryRejection` and `PathRejection` ([#&#8203;3168]) [#&#8203;3142]: https://github.com/tokio-rs/axum/pull/3142 [#&#8203;3157]: https://github.com/tokio-rs/axum/pull/3157 [#&#8203;3168]: https://github.com/tokio-rs/axum/pull/3168 ### [`v0.8.0`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.0): axum v0.8.0 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.7.9...axum-v0.8.0) #### since rc.1 <details> - **breaking:** `axum::extract::ws::Message` now uses `Bytes` in place of `Vec<u8>`, and a new `Utf8Bytes` type in place of `String`, for its variants ([#&#8203;3078]) - **breaking:** Remove `OptionalFromRequestParts` impl for `Query` ([#&#8203;3088]) - **changed:** Upgraded `tokio-tungstenite` to 0.26 ([#&#8203;3078]) - **changed:** Query/Form: Use `serde_path_to_error` to report fields that failed to parse ([#&#8203;3081]) </details> #### full changelog *You can also read the blog post on [tokio](https://tokio.rs/blog/2025-01-01-announcing-axum-0-8-0)* *Note: there are further relevant changes in [axum-core's changelog](https://github.com/tokio-rs/axum/releases/tag/axum-core-v0.5.0)* - **breaking:** Upgrade matchit to 0.8, changing the path parameter syntax from `/:single` and `/*many` to `/{single}` and `/{*many}`; the old syntax produces a panic to avoid silent change in behavior ([#&#8203;2645]) - **breaking:** Require `Sync` for all handlers and services added to `Router` and `MethodRouter` ([#&#8203;2473]) - **breaking:** The tuple and tuple\_struct `Path` extractor deserializers now check that the number of parameters matches the tuple length exactly ([#&#8203;2931]) - **breaking:** Move `Host` extractor to `axum-extra` ([#&#8203;2956]) - **breaking:** Remove `WebSocket::close`. Users should explicitly send close messages themselves. ([#&#8203;2974]) - **breaking:** Make `serve` generic over the listener and IO types ([#&#8203;2941]) - **breaking:** Remove `Serve::tcp_nodelay` and `WithGracefulShutdown::tcp_nodelay`. See `serve::ListenerExt` for an API that let you set arbitrary TCP stream properties. ([#&#8203;2941]) - **breaking:** `Option<Path<T>>` no longer swallows all error conditions, instead rejecting the request in many cases; see its documentation for details ([#&#8203;2475]) - **breaking:** `axum::extract::ws::Message` now uses `Bytes` in place of `Vec<u8>`, and a new `Utf8Bytes` type in place of `String`, for its variants ([#&#8203;3078]) - **fixed:** Skip SSE incompatible chars of `serde_json::RawValue` in `Event::json_data` ([#&#8203;2992]) - **fixed:** Don't panic when array type is used for path segment ([#&#8203;3039]) - **fixed:** Avoid setting `content-length` before middleware. This allows middleware to add bodies to requests without needing to manually set `content-length` ([#&#8203;2897]) - **change:** Update minimum rust version to 1.75 ([#&#8203;2943]) - **changed:** Upgraded `tokio-tungstenite` to 0.26 ([#&#8203;3078]) - **changed:** Query/Form: Use `serde_path_to_error` to report fields that failed to parse ([#&#8203;3081]) - **added:** Add `method_not_allowed_fallback` to set a fallback when a path matches but there is no handler for the given HTTP method ([#&#8203;2903]) - **added:** Add `NoContent` as a self-described shortcut for `StatusCode::NO_CONTENT` ([#&#8203;2978]) - **added:** Add support for WebSockets over HTTP/2. They can be enabled by changing `get(ws_endpoint)` handlers to `any(ws_endpoint)` ([#&#8203;2894]) - **added:** Add `MethodFilter::CONNECT`, `routing::connect[_service]` and `MethodRouter::connect[_service]` ([#&#8203;2961]) - **added:** Extend `FailedToDeserializePathParams::kind` enum with (`ErrorKind::DeserializeError`). This new variant captures both `key`, `value`, and `message` from named path parameters parse errors, instead of only deserialization error message in `ErrorKind::Message`. ([#&#8203;2720]) [#&#8203;2475]: https://github.com/tokio-rs/axum/pull/2475 [#&#8203;2897]: https://github.com/tokio-rs/axum/pull/2897 [#&#8203;2903]: https://github.com/tokio-rs/axum/pull/2903 [#&#8203;2894]: https://github.com/tokio-rs/axum/pull/2894 [#&#8203;2956]: https://github.com/tokio-rs/axum/pull/2956 [#&#8203;2961]: https://github.com/tokio-rs/axum/pull/2961 [#&#8203;2974]: https://github.com/tokio-rs/axum/pull/2974 [#&#8203;2978]: https://github.com/tokio-rs/axum/pull/2978 [#&#8203;2992]: https://github.com/tokio-rs/axum/pull/2992 [#&#8203;2720]: https://github.com/tokio-rs/axum/pull/2720 [#&#8203;3039]: https://github.com/tokio-rs/axum/pull/3039 [#&#8203;2941]: https://github.com/tokio-rs/axum/pull/2941 [#&#8203;2473]: https://github.com/tokio-rs/axum/pull/2473 [#&#8203;2645]: https://github.com/tokio-rs/axum/pull/2645 [#&#8203;2931]: https://github.com/tokio-rs/axum/pull/2931 [#&#8203;2943]: https://github.com/tokio-rs/axum/pull/2943 [#&#8203;3078]: https://github.com/tokio-rs/axum/pull/3078 [#&#8203;3081]: https://github.com/tokio-rs/axum/pull/3081 [#&#8203;3088]: https://github.com/tokio-rs/axum/pull/3088 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS43Ni4wIiwidXBkYXRlZEluVmVyIjoiNDEuMTMxLjYiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIkRlcGVuZGVuY2llcyIsIkRlcGVuZGVuY2llcy9SZW5vdmF0ZSJdfQ==-->
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package axum@0.7.9 --precise 0.8.6
    Updating git repository `https://forgejo.ellis.link/continuwuation/async-channel`
From https://forgejo.ellis.link/continuwuation/async-channel
 * [new branch]      master             -> origin/master
 * [new branch]      renovate/configure -> origin/renovate/configure
 * [new ref]         HEAD               -> origin/HEAD
    Updating git repository `https://forgejo.ellis.link/continuwuation/event-listener`
From https://forgejo.ellis.link/continuwuation/event-listener
 * [new branch]      master             -> origin/master
 * [new branch]      renovate/configure -> origin/renovate/configure
 * [new ref]         HEAD               -> origin/HEAD
    Updating git repository `https://forgejo.ellis.link/continuwuation/hyper-util`
From https://forgejo.ellis.link/continuwuation/hyper-util
 * [new branch]      auto-builder-from  -> origin/auto-builder-from
 * [new branch]      master             -> origin/master
 * [new branch]      proxy-env          -> origin/proxy-env
 * [new branch]      proxy-tunnel       -> origin/proxy-tunnel
 * [new branch]      renovate/configure -> origin/renovate/configure
 * [new ref]         HEAD               -> origin/HEAD
 * [new tag]         v0.1.0             -> v0.1.0
 * [new tag]         v0.1.1             -> v0.1.1
 * [new tag]         v0.1.10            -> v0.1.10
 * [new tag]         v0.1.11            -> v0.1.11
 * [new tag]         v0.1.2             -> v0.1.2
 * [new tag]         v0.1.3             -> v0.1.3
 * [new tag]         v0.1.4             -> v0.1.4
 * [new tag]         v0.1.5             -> v0.1.5
 * [new tag]         v0.1.6             -> v0.1.6
 * [new tag]         v0.1.7             -> v0.1.7
 * [new tag]         v0.1.8             -> v0.1.8
 * [new tag]         v0.1.9             -> v0.1.9
    Updating git repository `https://forgejo.ellis.link/continuwuation/rustyline-async`
From https://forgejo.ellis.link/continuwuation/rustyline-async
 * [new branch]      continuwuity-changes -> origin/continuwuity-changes
 * [new branch]      legacy-changes       -> origin/legacy-changes
 * [new branch]      main                 -> origin/main
 * [new branch]      renovate/configure   -> origin/renovate/configure
 * [new ref]         HEAD                 -> origin/HEAD
    Updating crates.io index
    Updating git repository `https://forgejo.ellis.link/continuwuation/ruwuma`
From https://forgejo.ellis.link/continuwuation/ruwuma
 * [new branch]        conduwuit-changes           -> origin/conduwuit-changes
 * [new branch]        dash_uwu/axum-0.8           -> origin/dash_uwu/axum-0.8
 * [new branch]        deprecated-user-login-field -> origin/deprecated-user-login-field
 * [new branch]        jade/eq-recipts             -> origin/jade/eq-recipts
 * [new branch]        jade/hack-join-rules        -> origin/jade/hack-join-rules
 * [new branch]        main                        -> origin/main
 * [new branch]        morguldir/invalid-predecessor -> origin/morguldir/invalid-predecessor
 * [new branch]        msc4121                     -> origin/msc4121
 * [new branch]        nex/cwy-as-callbacks        -> origin/nex/cwy-as-callbacks
 * [new branch]        nex/feat/oidc-stuff         -> origin/nex/feat/oidc-stuff
 * [new branch]        nex/no-timeout-default      -> origin/nex/no-timeout-default
 * [new branch]        relations-request-direction -> origin/relations-request-direction
 * [new branch]        renovate/configure          -> origin/renovate/configure
 * [new branch]        url-preview-ts              -> origin/url-preview-ts
 * [new ref]           HEAD                        -> origin/HEAD
 * [new tag]           ruma-0.0.1                  -> ruma-0.0.1
 * [new tag]           ruma-0.0.2                  -> ruma-0.0.2
 * [new tag]           ruma-0.0.3                  -> ruma-0.0.3
 * [new tag]           ruma-0.1.0                  -> ruma-0.1.0
 * [new tag]           ruma-0.1.1                  -> ruma-0.1.1
 * [new tag]           ruma-0.1.2                  -> ruma-0.1.2
 * [new tag]           ruma-0.10.0                 -> ruma-0.10.0
 * [new tag]           ruma-0.10.1                 -> ruma-0.10.1
 * [new tag]           ruma-0.2.0                  -> ruma-0.2.0
 * [new tag]           ruma-0.3.0                  -> ruma-0.3.0
 * [new tag]           ruma-0.4.0                  -> ruma-0.4.0
 * [new tag]           ruma-0.5.0                  -> ruma-0.5.0
 * [new tag]           ruma-0.6.0                  -> ruma-0.6.0
 * [new tag]           ruma-0.6.1                  -> ruma-0.6.1
 * [new tag]           ruma-0.6.2                  -> ruma-0.6.2
 * [new tag]           ruma-0.6.3                  -> ruma-0.6.3
 * [new tag]           ruma-0.6.4                  -> ruma-0.6.4
 * [new tag]           ruma-0.7.0                  -> ruma-0.7.0
 * [new tag]           ruma-0.7.1                  -> ruma-0.7.1
 * [new tag]           ruma-0.7.2                  -> ruma-0.7.2
 * [new tag]           ruma-0.7.3                  -> ruma-0.7.3
 * [new tag]           ruma-0.7.4                  -> ruma-0.7.4
 * [new tag]           ruma-0.8.0                  -> ruma-0.8.0
 * [new tag]           ruma-0.8.1                  -> ruma-0.8.1
 * [new tag]           ruma-0.8.2                  -> ruma-0.8.2
 * [new tag]           ruma-0.9.0                  -> ruma-0.9.0
 * [new tag]           ruma-0.9.1                  -> ruma-0.9.1
 * [new tag]           ruma-0.9.2                  -> ruma-0.9.2
 * [new tag]           ruma-0.9.3                  -> ruma-0.9.3
 * [new tag]           ruma-0.9.4                  -> ruma-0.9.4
 * [new tag]           ruma-api-0.17.0             -> ruma-api-0.17.0
 * [new tag]           ruma-api-0.17.0-alpha.1     -> ruma-api-0.17.0-alpha.1
 * [new tag]           ruma-api-0.17.0-alpha.2     -> ruma-api-0.17.0-alpha.2
 * [new tag]           ruma-api-0.17.0-alpha.4     -> ruma-api-0.17.0-alpha.4
 * [new tag]           ruma-api-0.17.1             -> ruma-api-0.17.1
 * [new tag]           ruma-api-0.17.2             -> ruma-api-0.17.2
 * [new tag]           ruma-api-0.18.1             -> ruma-api-0.18.1
 * [new tag]           ruma-api-0.18.2             -> ruma-api-0.18.2
 * [new tag]           ruma-api-0.18.3             -> ruma-api-0.18.3
 * [new tag]           ruma-api-0.18.4             -> ruma-api-0.18.4
 * [new tag]           ruma-api-0.18.5             -> ruma-api-0.18.5
 * [new tag]           ruma-api-0.19.0             -> ruma-api-0.19.0
 * [new tag]           ruma-api-0.20.0             -> ruma-api-0.20.0
 * [new tag]           ruma-appservice-api-0.10.0  -> ruma-appservice-api-0.10.0
 * [new tag]           ruma-appservice-api-0.2.0   -> ruma-appservice-api-0.2.0
 * [new tag]           ruma-appservice-api-0.2.0-alpha.1 -> ruma-appservice-api-0.2.0-alpha.1
 * [new tag]           ruma-appservice-api-0.2.0-alpha.2 -> ruma-appservice-api-0.2.0-alpha.2
 * [new tag]           ruma-appservice-api-0.2.0-alpha.3 -> ruma-appservice-api-0.2.0-alpha.3
 * [new tag]           ruma-appservice-api-0.3.0   -> ruma-appservice-api-0.3.0
 * [new tag]           ruma-appservice-api-0.4.0   -> ruma-appservice-api-0.4.0
 * [new tag]           ruma-appservice-api-0.5.0   -> ruma-appservice-api-0.5.0
 * [new tag]           ruma-appservice-api-0.6.0   -> ruma-appservice-api-0.6.0
 * [new tag]           ruma-appservice-api-0.7.0   -> ruma-appservice-api-0.7.0
 * [new tag]           ruma-appservice-api-0.8.0   -> ruma-appservice-api-0.8.0
 * [new tag]           ruma-appservice-api-0.8.1   -> ruma-appservice-api-0.8.1
 * [new tag]           ruma-appservice-api-0.9.0   -> ruma-appservice-api-0.9.0
 * [new tag]           ruma-client-0.10.0          -> ruma-client-0.10.0
 * [new tag]           ruma-client-0.11.0          -> ruma-client-0.11.0
 * [new tag]           ruma-client-0.12.0          -> ruma-client-0.12.0
 * [new tag]           ruma-client-0.13.0          -> ruma-client-0.13.0
 * [new tag]           ruma-client-0.5.0           -> ruma-client-0.5.0
 * [new tag]           ruma-client-0.5.0-alpha.1   -> ruma-client-0.5.0-alpha.1
 * [new tag]           ruma-client-0.5.0-alpha.2   -> ruma-client-0.5.0-alpha.2
 * [new tag]           ruma-client-0.6.0           -> ruma-client-0.6.0
 * [new tag]           ruma-client-0.7.0           -> ruma-client-0.7.0
 * [new tag]           ruma-client-0.8.0           -> ruma-client-0.8.0
 * [new tag]           ruma-client-0.9.0           -> ruma-client-0.9.0
 * [new tag]           ruma-client-api-0.10.0      -> ruma-client-api-0.10.0
 * [new tag]           ruma-client-api-0.10.0-alpha.1 -> ruma-client-api-0.10.0-alpha.1
 * [new tag]           ruma-client-api-0.10.0-alpha.2 -> ruma-client-api-0.10.0-alpha.2
 * [new tag]           ruma-client-api-0.10.0-alpha.3 -> ruma-client-api-0.10.0-alpha.3
 * [new tag]           ruma-client-api-0.10.1      -> ruma-client-api-0.10.1
 * [new tag]           ruma-client-api-0.10.2      -> ruma-client-api-0.10.2
 * [new tag]           ruma-client-api-0.11.0      -> ruma-client-api-0.11.0
 * [new tag]           ruma-client-api-0.11.2      -> ruma-client-api-0.11.2
 * [new tag]           ruma-client-api-0.12.0      -> ruma-client-api-0.12.0
 * [new tag]           ruma-client-api-0.12.1      -> ruma-client-api-0.12.1
 * [new tag]           ruma-client-api-0.12.2      -> ruma-client-api-0.12.2
 * [new tag]           ruma-client-api-0.12.3      -> ruma-client-api-0.12.3
 * [new tag]           ruma-client-api-0.13.0      -> ruma-client-api-0.13.0
 * [new tag]           ruma-client-api-0.14.0      -> ruma-client-api-0.14.0
 * [new tag]           ruma-client-api-0.14.1      -> ruma-client-api-0.14.1
 * [new tag]           ruma-client-api-0.15.0      -> ruma-client-api-0.15.0
 * [new tag]           ruma-client-api-0.15.1      -> ruma-client-api-0.15.1
 * [new tag]           ruma-client-api-0.15.2      -> ruma-client-api-0.15.2
 * [new tag]           ruma-client-api-0.15.3      -> ruma-client-api-0.15.3
 * [new tag]           ruma-client-api-0.16.0      -> ruma-client-api-0.16.0
 * [new tag]           ruma-client-api-0.16.1      -> ruma-client-api-0.16.1
 * [new tag]           ruma-client-api-0.16.2      -> ruma-client-api-0.16.2
 * [new tag]           ruma-client-api-0.17.0      -> ruma-client-api-0.17.0
 * [new tag]           ruma-client-api-0.17.1      -> ruma-client-api-0.17.1
 * [new tag]           ruma-client-api-0.17.2      -> ruma-client-api-0.17.2
 * [new tag]           ruma-client-api-0.17.3      -> ruma-client-api-0.17.3
 * [new tag]           ruma-client-api-0.17.4      -> ruma-client-api-0.17.4
 * [new tag]           ruma-client-api-0.18.0      -> ruma-client-api-0.18.0
 * [new tag]           ruma-common-0.10.0          -> ruma-common-0.10.0
 * [new tag]           ruma-common-0.10.1          -> ruma-common-0.10.1
 * [new tag]           ruma-common-0.10.2          -> ruma-common-0.10.2
 * [new tag]           ruma-common-0.10.3          -> ruma-common-0.10.3
 * [new tag]           ruma-common-0.10.4          -> ruma-common-0.10.4
 * [new tag]           ruma-common-0.10.5          -> ruma-common-0.10.5
 * [new tag]           ruma-common-0.11.0          -> ruma-common-0.11.0
 * [new tag]           ruma-common-0.11.1          -> ruma-common-0.11.1
 * [new tag]           ruma-common-0.11.2          -> ruma-common-0.11.2
 * [new tag]           ruma-common-0.11.3          -> ruma-common-0.11.3
 * [new tag]           ruma-common-0.12.0          -> ruma-common-0.12.0
 * [new tag]           ruma-common-0.12.1          -> ruma-common-0.12.1
 * [new tag]           ruma-common-0.13.0          -> ruma-common-0.13.0
 * [new tag]           ruma-common-0.2.0           -> ruma-common-0.2.0
 * [new tag]           ruma-common-0.3.0           -> ruma-common-0.3.0
 * [new tag]           ruma-common-0.3.0-alpha.1   -> ruma-common-0.3.0-alpha.1
 * [new tag]           ruma-common-0.3.1           -> ruma-common-0.3.1
 * [new tag]           ruma-common-0.4.0           -> ruma-common-0.4.0
 * [new tag]           ruma-common-0.5.0           -> ruma-common-0.5.0
 * [new tag]           ruma-common-0.5.1           -> ruma-common-0.5.1
 * [new tag]           ruma-common-0.5.2           -> ruma-common-0.5.2
 * [new tag]           ruma-common-0.5.3           -> ruma-common-0.5.3
 * [new tag]           ruma-common-0.5.4           -> ruma-common-0.5.4
 * [new tag]           ruma-common-0.6.0           -> ruma-common-0.6.0
 * [new tag]           ruma-common-0.7.0           -> ruma-common-0.7.0
 * [new tag]           ruma-common-0.8.0           -> ruma-common-0.8.0
 * [new tag]           ruma-common-0.9.0           -> ruma-common-0.9.0
 * [new tag]           ruma-common-0.9.1           -> ruma-common-0.9.1
 * [new tag]           ruma-common-0.9.2           -> ruma-common-0.9.2
 * [new tag]           ruma-common-0.9.3           -> ruma-common-0.9.3
 * [new tag]           ruma-events-0.22.0          -> ruma-events-0.22.0
 * [new tag]           ruma-events-0.22.0-alpha.1  -> ruma-events-0.22.0-alpha.1
 * [new tag]           ruma-events-0.22.0-alpha.2  -> ruma-events-0.22.0-alpha.2
 * [new tag]           ruma-events-0.22.0-alpha.3  -> ruma-events-0.22.0-alpha.3
 * [new tag]           ruma-events-0.22.1          -> ruma-events-0.22.1
 * [new tag]           ruma-events-0.22.2          -> ruma-events-0.22.2
 * [new tag]           ruma-events-0.23.0          -> ruma-events-0.23.0
 * [new tag]           ruma-events-0.23.1          -> ruma-events-0.23.1
 * [new tag]           ruma-events-0.23.2          -> ruma-events-0.23.2
 * [new tag]           ruma-events-0.23.3          -> ruma-events-0.23.3
 * [new tag]           ruma-events-0.24.1          -> ruma-events-0.24.1
 * [new tag]           ruma-events-0.24.2          -> ruma-events-0.24.2
 * [new tag]           ruma-events-0.24.3          -> ruma-events-0.24.3
 * [new tag]           ruma-events-0.24.4          -> ruma-events-0.24.4
 * [new tag]           ruma-events-0.24.5          -> ruma-events-0.24.5
 * [new tag]           ruma-events-0.24.6          -> ruma-events-0.24.6
 * [new tag]           ruma-events-0.25.0          -> ruma-events-0.25.0
 * [new tag]           ruma-events-0.26.0          -> ruma-events-0.26.0
 * [new tag]           ruma-events-0.27.0          -> ruma-events-0.27.0
 * [new tag]           ruma-events-0.27.1          -> ruma-events-0.27.1
 * [new tag]           ruma-events-0.27.10         -> ruma-events-0.27.10
 * [new tag]           ruma-events-0.27.11         -> ruma-events-0.27.11
 * [new tag]           ruma-events-0.27.2          -> ruma-events-0.27.2
 * [new tag]           ruma-events-0.27.3          -> ruma-events-0.27.3
 * [new tag]           ruma-events-0.27.4          -> ruma-events-0.27.4
 * [new tag]           ruma-events-0.27.5          -> ruma-events-0.27.5
 * [new tag]           ruma-events-0.27.6          -> ruma-events-0.27.6
 * [new tag]           ruma-events-0.27.7          -> ruma-events-0.27.7
 * [new tag]           ruma-events-0.27.8          -> ruma-events-0.27.8
 * [new tag]           ruma-events-0.27.9          -> ruma-events-0.27.9
 * [new tag]           ruma-events-0.28.0          -> ruma-events-0.28.0
 * [new tag]           ruma-events-0.28.1          -> ruma-events-0.28.1
 * [new tag]           ruma-federation-api-0.0.3   -> ruma-federation-api-0.0.3
 * [new tag]           ruma-federation-api-0.1.0   -> ruma-federation-api-0.1.0
 * [new tag]           ruma-federation-api-0.1.0-alpha.1 -> ruma-federation-api-0.1.0-alpha.1
 * [new tag]           ruma-federation-api-0.1.0-alpha.2 -> ruma-federation-api-0.1.0-alpha.2
 * [new tag]           ruma-federation-api-0.2.0   -> ruma-federation-api-0.2.0
 * [new tag]           ruma-federation-api-0.3.0   -> ruma-federation-api-0.3.0
 * [new tag]           ruma-federation-api-0.3.1   -> ruma-federation-api-0.3.1
 * [new tag]           ruma-federation-api-0.4.0   -> ruma-federation-api-0.4.0
 * [new tag]           ruma-federation-api-0.5.0   -> ruma-federation-api-0.5.0
 * [new tag]           ruma-federation-api-0.6.0   -> ruma-federation-api-0.6.0
 * [new tag]           ruma-federation-api-0.7.0   -> ruma-federation-api-0.7.0
 * [new tag]           ruma-federation-api-0.7.1   -> ruma-federation-api-0.7.1
 * [new tag]           ruma-federation-api-0.8.0   -> ruma-federation-api-0.8.0
 * [new tag]           ruma-federation-api-0.9.0   -> ruma-federation-api-0.9.0
 * [new tag]           ruma-html-0.1.0             -> ruma-html-0.1.0
 * [new tag]           ruma-html-0.2.0             -> ruma-html-0.2.0
 * [new tag]           ruma-identifiers-0.17.0     -> ruma-identifiers-0.17.0
 * [new tag]           ruma-identifiers-0.17.2     -> ruma-identifiers-0.17.2
 * [new tag]           ruma-identifiers-0.18.0     -> ruma-identifiers-0.18.0
 * [new tag]           ruma-identifiers-0.18.0-alpha.1 -> ruma-identifiers-0.18.0-alpha.1
 * [new tag]           ruma-identifiers-0.18.1     -> ruma-identifiers-0.18.1
 * [new tag]           ruma-identifiers-0.19.0     -> ruma-identifiers-0.19.0
 * [new tag]           ruma-identifiers-0.19.1     -> ruma-identifiers-0.19.1
 * [new tag]           ruma-identifiers-0.19.2     -> ruma-identifiers-0.19.2
 * [new tag]           ruma-identifiers-0.19.3     -> ruma-identifiers-0.19.3
 * [new tag]           ruma-identifiers-0.19.4     -> ruma-identifiers-0.19.4
 * [new tag]           ruma-identifiers-0.20.0     -> ruma-identifiers-0.20.0
 * [new tag]           ruma-identifiers-0.21.0     -> ruma-identifiers-0.21.0
 * [new tag]           ruma-identifiers-0.22.0     -> ruma-identifiers-0.22.0
 * [new tag]           ruma-identity-service-api-0.0.1 -> ruma-identity-service-api-0.0.1
 * [new tag]           ruma-identity-service-api-0.1.0 -> ruma-identity-service-api-0.1.0
 * [new tag]           ruma-identity-service-api-0.1.0-alpha.1 -> ruma-identity-service-api-0.1.0-alpha.1
 * [new tag]           ruma-identity-service-api-0.2.0 -> ruma-identity-service-api-0.2.0
 * [new tag]           ruma-identity-service-api-0.3.0 -> ruma-identity-service-api-0.3.0
 * [new tag]           ruma-identity-service-api-0.4.0 -> ruma-identity-service-api-0.4.0
 * [new tag]           ruma-identity-service-api-0.5.0 -> ruma-identity-service-api-0.5.0
 * [new tag]           ruma-identity-service-api-0.6.0 -> ruma-identity-service-api-0.6.0
 * [new tag]           ruma-identity-service-api-0.7.0 -> ruma-identity-service-api-0.7.0
 * [new tag]           ruma-identity-service-api-0.7.1 -> ruma-identity-service-api-0.7.1
 * [new tag]           ruma-identity-service-api-0.8.0 -> ruma-identity-service-api-0.8.0
 * [new tag]           ruma-identity-service-api-0.9.0 -> ruma-identity-service-api-0.9.0
 * [new tag]           ruma-push-gateway-api-0.0.1 -> ruma-push-gateway-api-0.0.1
 * [new tag]           ruma-push-gateway-api-0.1.0 -> ruma-push-gateway-api-0.1.0
 * [new tag]           ruma-push-gateway-api-0.1.0-alpha.1 -> ruma-push-gateway-api-0.1.0-alpha.1
 * [new tag]           ruma-push-gateway-api-0.2.0 -> ruma-push-gateway-api-0.2.0
 * [new tag]           ruma-push-gateway-api-0.3.0 -> ruma-push-gateway-api-0.3.0
 * [new tag]           ruma-push-gateway-api-0.4.0 -> ruma-push-gateway-api-0.4.0
 * [new tag]           ruma-push-gateway-api-0.5.0 -> ruma-push-gateway-api-0.5.0
 * [new tag]           ruma-push-gateway-api-0.6.0 -> ruma-push-gateway-api-0.6.0
 * [new tag]           ruma-push-gateway-api-0.7.0 -> ruma-push-gateway-api-0.7.0
 * [new tag]           ruma-push-gateway-api-0.7.1 -> ruma-push-gateway-api-0.7.1
 * [new tag]           ruma-push-gateway-api-0.8.0 -> ruma-push-gateway-api-0.8.0
 * [new tag]           ruma-push-gateway-api-0.9.0 -> ruma-push-gateway-api-0.9.0
 * [new tag]           ruma-serde-0.2.3            -> ruma-serde-0.2.3
 * [new tag]           ruma-serde-0.3.0            -> ruma-serde-0.3.0
 * [new tag]           ruma-serde-0.3.1            -> ruma-serde-0.3.1
 * [new tag]           ruma-serde-0.4.0            -> ruma-serde-0.4.0
 * [new tag]           ruma-serde-0.4.1            -> ruma-serde-0.4.1
 * [new tag]           ruma-serde-0.4.2            -> ruma-serde-0.4.2
 * [new tag]           ruma-serde-0.5.0            -> ruma-serde-0.5.0
 * [new tag]           ruma-serde-0.6.0            -> ruma-serde-0.6.0
 * [new tag]           ruma-server-util-0.1.0      -> ruma-server-util-0.1.0
 * [new tag]           ruma-server-util-0.1.1      -> ruma-server-util-0.1.1
 * [new tag]           ruma-server-util-0.2.0      -> ruma-server-util-0.2.0
 * [new tag]           ruma-server-util-0.3.0      -> ruma-server-util-0.3.0
 * [new tag]           ruma-signatures-0.10.0      -> ruma-signatures-0.10.0
 * [new tag]           ruma-signatures-0.11.0      -> ruma-signatures-0.11.0
 * [new tag]           ruma-signatures-0.12.0      -> ruma-signatures-0.12.0
 * [new tag]           ruma-signatures-0.13.0      -> ruma-signatures-0.13.0
 * [new tag]           ruma-signatures-0.13.1      -> ruma-signatures-0.13.1
 * [new tag]           ruma-signatures-0.14.0      -> ruma-signatures-0.14.0
 * [new tag]           ruma-signatures-0.15.0      -> ruma-signatures-0.15.0
 * [new tag]           ruma-signatures-0.6.0       -> ruma-signatures-0.6.0
 * [new tag]           ruma-signatures-0.6.0-alpha.1 -> ruma-signatures-0.6.0-alpha.1
 * [new tag]           ruma-signatures-0.7.0       -> ruma-signatures-0.7.0
 * [new tag]           ruma-signatures-0.7.1       -> ruma-signatures-0.7.1
 * [new tag]           ruma-signatures-0.7.2       -> ruma-signatures-0.7.2
 * [new tag]           ruma-signatures-0.8.0       -> ruma-signatures-0.8.0
 * [new tag]           ruma-signatures-0.9.0       -> ruma-signatures-0.9.0
 * [new tag]           ruma-state-res-0.1.0        -> ruma-state-res-0.1.0
 * [new tag]           ruma-state-res-0.10.0       -> ruma-state-res-0.10.0
 * [new tag]           ruma-state-res-0.11.0       -> ruma-state-res-0.11.0
 * [new tag]           ruma-state-res-0.2.0        -> ruma-state-res-0.2.0
 * [new tag]           ruma-state-res-0.3.0        -> ruma-state-res-0.3.0
 * [new tag]           ruma-state-res-0.4.0        -> ruma-state-res-0.4.0
 * [new tag]           ruma-state-res-0.4.1        -> ruma-state-res-0.4.1
 * [new tag]           ruma-state-res-0.5.0        -> ruma-state-res-0.5.0
 * [new tag]           ruma-state-res-0.6.0        -> ruma-state-res-0.6.0
 * [new tag]           ruma-state-res-0.7.0        -> ruma-state-res-0.7.0
 * [new tag]           ruma-state-res-0.8.0        -> ruma-state-res-0.8.0
 * [new tag]           ruma-state-res-0.9.0        -> ruma-state-res-0.9.0
 * [new tag]           ruma-state-res-0.9.1        -> ruma-state-res-0.9.1
    Updating git repository `https://forgejo.ellis.link/continuwuation/jemallocator`
From https://forgejo.ellis.link/continuwuation/jemallocator
 * [new branch]      avoid-atexit            -> origin/avoid-atexit
 * [new branch]      disable-stats           -> origin/disable-stats
 * [new branch]      fixxx                   -> origin/fixxx
 * [new branch]      ga                      -> origin/ga
 * [new branch]      gh-pages                -> origin/gh-pages
 * [new branch]      git_feature             -> origin/git_feature
 * [new branch]      gnzlbg-patch-1          -> origin/gnzlbg-patch-1
 * [new branch]      main                    -> origin/main
 * [new branch]      master                  -> origin/master
 * [new branch]      min_align               -> origin/min_align
 * [new branch]      origin-jemallocator     -> origin/origin-jemallocator
 * [new branch]      pub0.3.0                -> origin/pub0.3.0
 * [new branch]      readme_version_number   -> origin/readme_version_number
 * [new branch]      renovate/configure      -> origin/renovate/configure
 * [new branch]      tikv-main               -> origin/tikv-main
 * [new branch]      tikv-master             -> origin/tikv-master
 * [new ref]         HEAD                    -> origin/HEAD
 * [new tag]         0.1.1                   -> 0.1.1
 * [new tag]         0.1.2                   -> 0.1.2
 * [new tag]         0.1.3                   -> 0.1.3
 * [new tag]         0.1.4                   -> 0.1.4
 * [new tag]         0.1.6                   -> 0.1.6
 * [new tag]         0.1.7                   -> 0.1.7
 * [new tag]         0.3.0                   -> 0.3.0
 * [new tag]         0.4.0                   -> 0.4.0
 * [new tag]         0.4.1                   -> 0.4.1
 * [new tag]         0.4.3                   -> 0.4.3
 * [new tag]         0.5.0                   -> 0.5.0
 * [new tag]         0.5.4                   -> 0.5.4
 * [new tag]         jemalloc-sys-0.1.1      -> jemalloc-sys-0.1.1
 * [new tag]         jemalloc-sys-0.1.2      -> jemalloc-sys-0.1.2
 * [new tag]         jemalloc-sys-0.1.3      -> jemalloc-sys-0.1.3
 * [new tag]         jemalloc-sys-0.1.4      -> jemalloc-sys-0.1.4
 * [new tag]         jemalloc-sys-0.1.5      -> jemalloc-sys-0.1.5
 * [new tag]         jemalloc-sys-0.1.7      -> jemalloc-sys-0.1.7
 * [new tag]         tikv-jemalloc-sys-0.4.2 -> tikv-jemalloc-sys-0.4.2
 * [new tag]         tikv-jemalloc-sys-0.5.1 -> tikv-jemalloc-sys-0.5.1
 * [new tag]         tikv-jemalloc-sys-0.5.2 -> tikv-jemalloc-sys-0.5.2
 * [new tag]         tikv-jemalloc-sys-0.5.3 -> tikv-jemalloc-sys-0.5.3
    Updating git submodule `https://github.com/tikv/jemalloc`
From https://github.com/tikv/jemalloc
 * [new ref]           e13ca993e8ccb9ba9847cc330696e02839f328f7 -> refs/commit/e13ca993e8ccb9ba9847cc330696e02839f328f7
    Updating git repository `https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1`
From https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1
 * [new branch]      folly-coroutines         -> origin/folly-coroutines
 * [new branch]      master                   -> origin/master
 * [new branch]      renovate/configure       -> origin/renovate/configure
 * [new branch]      rust-rocksdb-upstream-master -> origin/rust-rocksdb-upstream-master
 * [new branch]      snappy-1.2.1             -> origin/snappy-1.2.1
 * [new branch]      strawberry/bump-jemalloc -> origin/strawberry/bump-jemalloc
 * [new branch]      strawberry/freebsd-system-jemalloc -> origin/strawberry/freebsd-system-jemalloc
 * [new branch]      strawberry/remove-gtest  -> origin/strawberry/remove-gtest
 * [new ref]         HEAD                     -> origin/HEAD
 * [new tag]         continuwuity-v0.5.0-rc.6 -> continuwuity-v0.5.0-rc.6
 * [new tag]         v0.5.0-rc.7              -> v0.5.0-rc.7
    Updating git submodule `https://forgejo.ellis.link/continuwuation/rocksdb.git`
From https://forgejo.ellis.link/continuwuation/rocksdb
 * [new branch]          10.4.fb                  -> origin/10.4.fb
 * [new branch]          10.5.fb                  -> origin/10.5.fb
 * [new branch]          2.2.fb.branch            -> origin/2.2.fb.branch
 * [new branch]          2.3.fb.branch            -> origin/2.3.fb.branch
 * [new branch]          2.4.fb.branch            -> origin/2.4.fb.branch
 * [new branch]          2.5.fb.branch            -> origin/2.5.fb.branch
 * [new branch]          2.6.fb.branch            -> origin/2.6.fb.branch
 * [new branch]          2.7                      -> origin/2.7
 * [new branch]          2.7.fb.branch            -> origin/2.7.fb.branch
 * [new branch]          2.8.1.fb                 -> origin/2.8.1.fb
 * [new branch]          2.8.fb                   -> origin/2.8.fb
 * [new branch]          2.8.fb.trunk             -> origin/2.8.fb.trunk
 * [new branch]          3.0.fb                   -> origin/3.0.fb
 * [new branch]          3.0.fb.branch            -> origin/3.0.fb.branch
 * [new branch]          3.1.fb                   -> origin/3.1.fb
 * [new branch]          3.10.fb                  -> origin/3.10.fb
 * [new branch]          3.11.fb                  -> origin/3.11.fb
 * [new branch]          3.12.fb                  -> origin/3.12.fb
 * [new branch]          3.13.fb                  -> origin/3.13.fb
 * [new branch]          3.2.fb                   -> origin/3.2.fb
 * [new branch]          3.3.fb                   -> origin/3.3.fb
 * [new branch]          3.4.fb                   -> origin/3.4.fb
 * [new branch]          3.5.fb                   -> origin/3.5.fb
 * [new branch]          3.6.fb                   -> origin/3.6.fb
 * [new branch]          3.7.fb                   -> origin/3.7.fb
 * [new branch]          3.8.fb                   -> origin/3.8.fb
 * [new branch]          3.9.fb                   -> origin/3.9.fb
 * [new branch]          4.0.fb                   -> origin/4.0.fb
 * [new branch]          4.1.fb                   -> origin/4.1.fb
 * [new branch]          4.10.fb                  -> origin/4.10.fb
 * [new branch]          4.11.fb                  -> origin/4.11.fb
 * [new branch]          4.12.fb                  -> origin/4.12.fb
 * [new branch]          4.13.fb                  -> origin/4.13.fb
 * [new branch]          4.2.fb                   -> origin/4.2.fb
 * [new branch]          4.3.fb                   -> origin/4.3.fb
 * [new branch]          4.4.fb                   -> origin/4.4.fb
 * [new branch]          4.5.fb                   -> origin/4.5.fb
 * [new branch]          4.6.fb                   -> origin/4.6.fb
 * [new branch]          4.7.fb                   -> origin/4.7.fb
 * [new branch]          4.8.fb                   -> origin/4.8.fb
 * [new branch]          4.9.fb                   -> origin/4.9.fb
 * [new branch]          5.0.fb                   -> origin/5.0.fb
 * [new branch]          5.1.fb                   -> origin/5.1.fb
 * [new branch]          5.10.fb                  -> origin/5.10.fb
 * [new branch]          5.11.fb                  -> origin/5.11.fb
 * [new branch]          5.12.fb                  -> origin/5.12.fb
 * [new branch]          5.13.fb                  -> origin/5.13.fb
 * [new branch]          5.13.fb.myrocks          -> origin/5.13.fb.myrocks
 * [new branch]          5.14.fb                  -> origin/5.14.fb
 * [new branch]          5.14.fb.myrocks          -> origin/5.14.fb.myrocks
 * [new branch]          5.15.fb                  -> origin/5.15.fb
 * [new branch]          5.16.fb                  -> origin/5.16.fb
 * [new branch]          5.17.fb                  -> origin/5.17.fb
 * [new branch]          5.17.fb.myrocks          -> origin/5.17.fb.myrocks
 * [new branch]          5.18.fb                  -> origin/5.18.fb
 * [new branch]          5.2.fb                   -> origin/5.2.fb
 * [new branch]          5.3.fb                   -> origin/5.3.fb
 * [new branch]          5.4.fb                   -> origin/5.4.fb
 * [new branch]          5.5.fb                   -> origin/5.5.fb
 * [new branch]          5.6.fb                   -> origin/5.6.fb
 * [new branch]          5.7.fb                   -> origin/5.7.fb
 * [new branch]          5.7.fb.myrocks           -> origin/5.7.fb.myrocks
 * [new branch]          5.8.3                    -> origin/5.8.3
 * [new branch]          5.8.fb                   -> origin/5.8.fb
 * [new branch]          5.9.fb                   -> origin/5.9.fb
 * [new branch]          5.9.fb.myrocks           -> origin/5.9.fb.myrocks
 * [new branch]          6.0.fb                   -> origin/6.0.fb
 * [new branch]          6.0.fb.myrocks           -> origin/6.0.fb.myrocks
 * [new branch]          6.1.fb                   -> origin/6.1.fb
 * [new branch]          6.1.fb.myrocks           -> origin/6.1.fb.myrocks
 * [new branch]          6.1.fb.prod201905        -> origin/6.1.fb.prod201905
 * [new branch]          6.10.fb                  -> origin/6.10.fb
 * [new branch]          6.11.fb                  -> origin/6.11.fb
 * [new branch]          6.12.fb                  -> origin/6.12.fb
 * [new branch]          6.13.fb                  -> origin/6.13.fb
 * [new branch]          6.13.fb.laser            -> origin/6.13.fb.laser
 * [new branch]          6.14.fb                  -> origin/6.14.fb
 * [new branch]          6.14.fb.laser            -> origin/6.14.fb.laser
 * [new branch]          6.15.fb                  -> origin/6.15.fb
 * [new branch]          6.16.fb                  -> origin/6.16.fb
 * [new branch]          6.17.fb                  -> origin/6.17.fb
 * [new branch]          6.17.fb.laser            -> origin/6.17.fb.laser
 * [new branch]          6.18.fb                  -> origin/6.18.fb
 * [new branch]          6.19.fb                  -> origin/6.19.fb
 * [new branch]          6.2.fb                   -> origin/6.2.fb
 * [new branch]          6.20.fb                  -> origin/6.20.fb
 * [new branch]          6.21.fb                  -> origin/6.21.fb
 * [new branch]          6.22-history.md-fixup    -> origin/6.22-history.md-fixup
 * [new branch]          6.22.fb                  -> origin/6.22.fb
 * [new branch]          6.23.fb                  -> origin/6.23.fb
 * [new branch]          6.24.fb                  -> origin/6.24.fb
 * [new branch]          6.25.fb                  -> origin/6.25.fb
 * [new branch]          6.26.fb                  -> origin/6.26.fb
 * [new branch]          6.27.fb                  -> origin/6.27.fb
 * [new branch]          6.28.fb                  -> origin/6.28.fb
 * [new branch]          6.29.fb                  -> origin/6.29.fb
 * [new branch]          6.3.fb                   -> origin/6.3.fb
 * [new branch]          6.3.fb.myrocks           -> origin/6.3.fb.myrocks
 * [new branch]          6.3.fb.myrocks2          -> origin/6.3.fb.myrocks2
 * [new branch]          6.3fb                    -> origin/6.3fb
 * [new branch]          6.4.fb                   -> origin/6.4.fb
 * [new branch]          6.5.fb                   -> origin/6.5.fb
 * [new branch]          6.6.fb                   -> origin/6.6.fb
 * [new branch]          6.7.fb                   -> origin/6.7.fb
 * [new branch]          6.8.fb                   -> origin/6.8.fb
 * [new branch]          6.9.fb                   -> origin/6.9.fb
 * [new branch]          7.0.fb                   -> origin/7.0.fb
 * [new branch]          7.1.fb                   -> origin/7.1.fb
 * [new branch]          7.10.fb                  -> origin/7.10.fb
 * [new branch]          7.2.fb                   -> origin/7.2.fb
 * [new branch]          7.3.fb                   -> origin/7.3.fb
 * [new branch]          7.4.fb                   -> origin/7.4.fb
 * [new branch]          7.5.fb                   -> origin/7.5.fb
 * [new branch]          7.6.fb                   -> origin/7.6.fb
 * [new branch]          7.7.fb                   -> origin/7.7.fb
 * [new branch]          7.8.fb                   -> origin/7.8.fb
 * [new branch]          7.9.fb                   -> origin/7.9.fb
 * [new branch]          8.0.fb                   -> origin/8.0.fb
 * [new branch]          8.1.fb                   -> origin/8.1.fb
 * [new branch]          8.10.fb                  -> origin/8.10.fb
 * [new branch]          8.11.2_zippydb           -> origin/8.11.2_zippydb
 * [new branch]          8.11.fb                  -> origin/8.11.fb
 * [new branch]          8.11.fb_zippydb          -> origin/8.11.fb_zippydb
 * [new branch]          8.2.fb                   -> origin/8.2.fb
 * [new branch]          8.3.fb                   -> origin/8.3.fb
 * [new branch]          8.4.fb                   -> origin/8.4.fb
 * [new branch]          8.5.fb                   -> origin/8.5.fb
 * [new branch]          8.6.fb                   -> origin/8.6.fb
 * [new branch]          8.7.fb                   -> origin/8.7.fb
 * [new branch]          8.8.fb                   -> origin/8.8.fb
 * [new branch]          8.9.fb                   -> origin/8.9.fb
 * [new branch]          9.0.fb                   -> origin/9.0.fb
 * [new branch]          9.1.fb                   -> origin/9.1.fb
 * [new branch]          adaptive                 -> origin/adaptive
 * [new branch]          ajkr-patch-1             -> origin/ajkr-patch-1
 * [new branch]          ajkr-patch-2             -> origin/ajkr-patch-2
 * [new branch]          blob_shadow              -> origin/blob_shadow
 * [new branch]          bottom-pri-level         -> origin/bottom-pri-level
 * [new branch]          bugfix-build-detect      -> origin/bugfix-build-detect
 * [new branch]          checksum_readahead_mmap_fix -> origin/checksum_readahead_mmap_fix
 * [new branch]          draft-myrocks-and-fbcode-8.0.fb -> origin/draft-myrocks-and-fbcode-8.0.fb
 * [new branch]          feature/debug-rocksdbjavastatic -> origin/feature/debug-rocksdbjavastatic
 * [new branch]          feature/travis-arm64     -> origin/feature/travis-arm64
 * [new branch]          fix-release-notes        -> origin/fix-release-notes
 * [new branch]          fix-win2022-build        -> origin/fix-win2022-build
 * [new branch]          fix-write-batch-comment  -> origin/fix-write-batch-comment
 * [new branch]          format_compatible_4      -> origin/format_compatible_4
 * [new branch]          getmergeops              -> origin/getmergeops
 * [new branch]          gh-pages-old             -> origin/gh-pages-old
 * [new branch]          history-update           -> origin/history-update
 * [new branch]          hotfix/lambda-capture    -> origin/hotfix/lambda-capture
 * [new branch]          improve-support          -> origin/improve-support
 * [new branch]          jijiew-patch-1           -> origin/jijiew-patch-1
 * [new branch]          katherinez-patch-1       -> origin/katherinez-patch-1
 * [new branch]          katherinez-patch-2       -> origin/katherinez-patch-2
 * [new branch]          main                     -> origin/main
 * [new branch]          master                   -> origin/master
 * [new branch]          mdcallag_benchmark_oct22 -> origin/mdcallag_benchmark_oct22
 * [new branch]          nvm_cache_proto          -> origin/nvm_cache_proto
 * [new branch]          pr-sanity-check-as-GHAction -> origin/pr-sanity-check-as-GHAction
 * [new branch]          pr/11267                 -> origin/pr/11267
 * [new branch]          pr/6062                  -> origin/pr/6062
 * [new branch]          ramvadiv-patch-1         -> origin/ramvadiv-patch-1
 * [new branch]          release_fix              -> origin/release_fix
 * [new branch]          renovate/configure       -> origin/renovate/configure
 * [new branch]          revert-10606-7.6.1       -> origin/revert-10606-7.6.1
 * [new branch]          ribbon_bloom_hybrid      -> origin/ribbon_bloom_hybrid
 * [new branch]          scaffold                 -> origin/scaffold
 * [new branch]          siying-patch-1           -> origin/siying-patch-1
 * [new branch]          siying-patch-10          -> origin/siying-patch-10
 * [new branch]          siying-patch-2           -> origin/siying-patch-2
 * [new branch]          siying-patch-3           -> origin/siying-patch-3
 * [new branch]          siying-patch-4           -> origin/siying-patch-4
 * [new branch]          siying-patch-5           -> origin/siying-patch-5
 * [new branch]          siying-patch-6           -> origin/siying-patch-6
 * [new branch]          siying-patch-7           -> origin/siying-patch-7
 * [new branch]          siying-patch-8           -> origin/siying-patch-8
 * [new branch]          skip_memtable_flush      -> origin/skip_memtable_flush
 * [new branch]          tags/v9.8.4              -> origin/tags/v9.8.4
 * [new branch]          testing_ppc_build        -> origin/testing_ppc_build
 * [new branch]          tests                    -> origin/tests
 * [new branch]          unschedule_issue_test_base -> origin/unschedule_issue_test_base
 * [new branch]          unused-var               -> origin/unused-var
 * [new branch]          v6.6.4                   -> origin/v6.6.4
 * [new branch]          v9.1.1                   -> origin/v9.1.1
 * [new branch]          v9.10.0                  -> origin/v9.10.0
 * [new branch]          v9.11.1                  -> origin/v9.11.1
 * [new branch]          v9.2.1                   -> origin/v9.2.1
 * [new branch]          v9.3.1                   -> origin/v9.3.1
 * [new branch]          v9.4.0                   -> origin/v9.4.0
 * [new branch]          v9.5.2                   -> origin/v9.5.2
 * [new branch]          v9.6.1                   -> origin/v9.6.1
 * [new branch]          v9.7.2                   -> origin/v9.7.2
 * [new branch]          v9.7.3                   -> origin/v9.7.3
 * [new branch]          v9.7.4                   -> origin/v9.7.4
 * [new branch]          v9.8.4                   -> origin/v9.8.4
 * [new branch]          v9.9.3                   -> origin/v9.9.3
 * [new branch]          xxhash_merge_base        -> origin/xxhash_merge_base
 * [new branch]          yiwu_stackable           -> origin/yiwu_stackable
 * [new branch]          yuslepukhin              -> origin/yuslepukhin
 * [new ref]             HEAD                     -> origin/HEAD
 * [new tag]             1.5.7.fb                 -> 1.5.7.fb
 * [new tag]             1.5.8.1.fb               -> 1.5.8.1.fb
 * [new tag]             1.5.8.2.fb               -> 1.5.8.2.fb
 * [new tag]             1.5.8.fb                 -> 1.5.8.fb
 * [new tag]             1.5.9.1.fb               -> 1.5.9.1.fb
 * [new tag]             1.5.9.2.fb               -> 1.5.9.2.fb
 * [new tag]             1.5.9.fb                 -> 1.5.9.fb
 * [new tag]             2.0.fb                   -> 2.0.fb
 * [new tag]             2.1.fb                   -> 2.1.fb
 * [new tag]             2.2.fb                   -> 2.2.fb
 * [new tag]             2.3.fb                   -> 2.3.fb
 * [new tag]             2.4.fb                   -> 2.4.fb
 * [new tag]             2.5.fb                   -> 2.5.fb
 * [new tag]             2.6.fb                   -> 2.6.fb
 * [new tag]             2.7.fb                   -> 2.7.fb
 * [new tag]             2.8.fb                   -> 2.8.fb
 * [new tag]             3.0.fb                   -> 3.0.fb
 * [new tag]             blob_st_lvl-pre          -> blob_st_lvl-pre
 * [new tag]             continuwuity-v0.5.0-rc.6 -> continuwuity-v0.5.0-rc.6
 * [new tag]             do-not-use-me2           -> do-not-use-me2
 * [new tag]             rocksdb-3.1              -> rocksdb-3.1
 * [new tag]             rocksdb-3.10.1           -> rocksdb-3.10.1
 * [new tag]             rocksdb-3.10.2           -> rocksdb-3.10.2
 * [new tag]             rocksdb-3.11             -> rocksdb-3.11
 * [new tag]             rocksdb-3.11.1           -> rocksdb-3.11.1
 * [new tag]             rocksdb-3.11.2           -> rocksdb-3.11.2
 * [new tag]             rocksdb-3.12             -> rocksdb-3.12
 * [new tag]             rocksdb-3.12.1           -> rocksdb-3.12.1
 * [new tag]             rocksdb-3.13             -> rocksdb-3.13
 * [new tag]             rocksdb-3.13.1           -> rocksdb-3.13.1
 * [new tag]             rocksdb-3.2              -> rocksdb-3.2
 * [new tag]             rocksdb-3.3              -> rocksdb-3.3
 * [new tag]             rocksdb-3.4              -> rocksdb-3.4
 * [new tag]             rocksdb-3.5              -> rocksdb-3.5
 * [new tag]             rocksdb-3.5.1            -> rocksdb-3.5.1
 * [new tag]             rocksdb-3.6.1            -> rocksdb-3.6.1
 * [new tag]             rocksdb-3.6.2            -> rocksdb-3.6.2
 * [new tag]             rocksdb-3.7              -> rocksdb-3.7
 * [new tag]             rocksdb-3.8              -> rocksdb-3.8
 * [new tag]             rocksdb-3.9              -> rocksdb-3.9
 * [new tag]             rocksdb-3.9.1            -> rocksdb-3.9.1
 * [new tag]             rocksdb-4.1              -> rocksdb-4.1
 * [new tag]             rocksdb-4.11.2           -> rocksdb-4.11.2
 * [new tag]             rocksdb-4.13             -> rocksdb-4.13
 * [new tag]             rocksdb-4.13.5           -> rocksdb-4.13.5
 * [new tag]             rocksdb-4.2              -> rocksdb-4.2
 * [new tag]             rocksdb-4.3              -> rocksdb-4.3
 * [new tag]             rocksdb-4.3.1            -> rocksdb-4.3.1
 * [new tag]             rocksdb-4.4              -> rocksdb-4.4
 * [new tag]             rocksdb-4.4.1            -> rocksdb-4.4.1
 * [new tag]             rocksdb-4.5.1            -> rocksdb-4.5.1
 * [new tag]             rocksdb-4.6.1            -> rocksdb-4.6.1
 * [new tag]             rocksdb-4.8              -> rocksdb-4.8
 * [new tag]             rocksdb-4.9              -> rocksdb-4.9
 * [new tag]             rocksdb-5.0.1            -> rocksdb-5.0.1
 * [new tag]             rocksdb-5.0.2            -> rocksdb-5.0.2
 * [new tag]             rocksdb-5.1.2            -> rocksdb-5.1.2
 * [new tag]             rocksdb-5.1.3            -> rocksdb-5.1.3
 * [new tag]             rocksdb-5.1.4            -> rocksdb-5.1.4
 * [new tag]             rocksdb-5.10.2           -> rocksdb-5.10.2
 * [new tag]             rocksdb-5.10.3           -> rocksdb-5.10.3
 * [new tag]             rocksdb-5.10.4           -> rocksdb-5.10.4
 * [new tag]             rocksdb-5.11.2           -> rocksdb-5.11.2
 * [new tag]             rocksdb-5.11.3           -> rocksdb-5.11.3
 * [new tag]             rocksdb-5.14.3           -> rocksdb-5.14.3
 * [new tag]             rocksdb-5.2.1            -> rocksdb-5.2.1
 * [new tag]             rocksdb-5.3.3            -> rocksdb-5.3.3
 * [new tag]             rocksdb-5.3.4            -> rocksdb-5.3.4
 * [new tag]             rocksdb-5.3.5            -> rocksdb-5.3.5
 * [new tag]             rocksdb-5.3.6            -> rocksdb-5.3.6
 * [new tag]             rocksdb-5.4.10           -> rocksdb-5.4.10
 * [new tag]             rocksdb-5.4.5            -> rocksdb-5.4.5
 * [new tag]             rocksdb-5.4.6            -> rocksdb-5.4.6
 * [new tag]             rocksdb-5.4.7            -> rocksdb-5.4.7
 * [new tag]             rocksdb-5.5.2            -> rocksdb-5.5.2
 * [new tag]             rocksdb-5.5.3            -> rocksdb-5.5.3
 * [new tag]             rocksdb-5.5.4            -> rocksdb-5.5.4
 * [new tag]             rocksdb-5.5.5            -> rocksdb-5.5.5
 * [new tag]             rocksdb-5.5.6            -> rocksdb-5.5.6
 * [new tag]             rocksdb-5.6.1            -> rocksdb-5.6.1
 * [new tag]             rocksdb-5.6.2            -> rocksdb-5.6.2
 * [new tag]             rocksdb-5.7.1            -> rocksdb-5.7.1
 * [new tag]             rocksdb-5.7.2            -> rocksdb-5.7.2
 * [new tag]             rocksdb-5.7.3            -> rocksdb-5.7.3
 * [new tag]             rocksdb-5.7.5            -> rocksdb-5.7.5
 * [new tag]             rocksdb-5.8              -> rocksdb-5.8
 * [new tag]             rocksdb-5.8.6            -> rocksdb-5.8.6
 * [new tag]             rocksdb-5.8.7            -> rocksdb-5.8.7
 * [new tag]             rocksdb-5.8.8            -> rocksdb-5.8.8
 * [new tag]             rocksdb-5.9.2            -> rocksdb-5.9.2
 * [new tag]             v1.5.7                   -> v1.5.7
 * [new tag]             v1.5.8                   -> v1.5.8
 * [new tag]             v1.5.8.1                 -> v1.5.8.1
 * [new tag]             v1.5.8.2                 -> v1.5.8.2
 * [new tag]             v1.5.9.1                 -> v1.5.9.1
 * [new tag]             v2.0                     -> v2.0
 * [new tag]             v2.1                     -> v2.1
 * [new tag]             v2.2                     -> v2.2
 * [new tag]             v2.3                     -> v2.3
 * [new tag]             v2.4                     -> v2.4
 * [new tag]             v2.5                     -> v2.5
 * [new tag]             v2.6                     -> v2.6
 * [new tag]             v2.7                     -> v2.7
 * [new tag]             v2.8                     -> v2.8
 * [new tag]             v3.0                     -> v3.0
 * [new tag]             v3.1                     -> v3.1
 * [new tag]             v3.10                    -> v3.10
 * [new tag]             v3.11                    -> v3.11
 * [new tag]             v3.12                    -> v3.12
 * [new tag]             v3.12.1                  -> v3.12.1
 * [new tag]             v3.13                    -> v3.13
 * [new tag]             v3.13.1                  -> v3.13.1
 * [new tag]             v3.2                     -> v3.2
 * [new tag]             v3.3                     -> v3.3
 * [new tag]             v3.4                     -> v3.4
 * [new tag]             v3.5                     -> v3.5
 * [new tag]             v3.6.1                   -> v3.6.1
 * [new tag]             v3.7                     -> v3.7
 * [new tag]             v3.8                     -> v3.8
 * [new tag]             v3.9                     -> v3.9
 * [new tag]             v4.0                     -> v4.0
 * [new tag]             v4.1                     -> v4.1
 * [new tag]             v4.11.2                  -> v4.11.2
 * [new tag]             v4.13                    -> v4.13
 * [new tag]             v4.13.5                  -> v4.13.5
 * [new tag]             v4.2                     -> v4.2
 * [new tag]             v4.3                     -> v4.3
 * [new tag]             v4.3.1                   -> v4.3.1
 * [new tag]             v4.4                     -> v4.4
 * [new tag]             v4.4.1                   -> v4.4.1
 * [new tag]             v4.5.1                   -> v4.5.1
 * [new tag]             v4.6.1                   -> v4.6.1
 * [new tag]             v4.8                     -> v4.8
 * [new tag]             v4.9                     -> v4.9
 * [new tag]             v5.0.1                   -> v5.0.1
 * [new tag]             v5.0.2                   -> v5.0.2
 * [new tag]             v5.1.2                   -> v5.1.2
 * [new tag]             v5.1.3                   -> v5.1.3
 * [new tag]             v5.1.4                   -> v5.1.4
 * [new tag]             v5.10.2                  -> v5.10.2
 * [new tag]             v5.10.3                  -> v5.10.3
 * [new tag]             v5.10.4                  -> v5.10.4
 * [new tag]             v5.11.2                  -> v5.11.2
 * [new tag]             v5.11.3                  -> v5.11.3
 * [new tag]             v5.12.2                  -> v5.12.2
 * [new tag]             v5.12.3                  -> v5.12.3
 * [new tag]             v5.12.4                  -> v5.12.4
 * [new tag]             v5.12.5                  -> v5.12.5
 * [new tag]             v5.13.1                  -> v5.13.1
 * [new tag]             v5.13.2                  -> v5.13.2
 * [new tag]             v5.13.3                  -> v5.13.3
 * [new tag]             v5.13.4                  -> v5.13.4
 * [new tag]             v5.14.2                  -> v5.14.2
 * [new tag]             v5.14.3                  -> v5.14.3
 * [new tag]             v5.15.10                 -> v5.15.10
 * [new tag]             v5.16.6                  -> v5.16.6
 * [new tag]             v5.17.2                  -> v5.17.2
 * [new tag]             v5.18.3                  -> v5.18.3
 * [new tag]             v5.18.4                  -> v5.18.4
 * [new tag]             v5.2.1                   -> v5.2.1
 * [new tag]             v5.3.3                   -> v5.3.3
 * [new tag]             v5.3.4                   -> v5.3.4
 * [new tag]             v5.3.5                   -> v5.3.5
 * [new tag]             v5.3.6                   -> v5.3.6
 * [new tag]             v5.4.10                  -> v5.4.10
 * [new tag]             v5.4.5                   -> v5.4.5
 * [new tag]             v5.4.6                   -> v5.4.6
 * [new tag]             v5.4.7                   -> v5.4.7
 * [new tag]             v5.5.1                   -> v5.5.1
 * [new tag]             v5.5.2                   -> v5.5.2
 * [new tag]             v5.5.3                   -> v5.5.3
 * [new tag]             v5.5.4                   -> v5.5.4
 * [new tag]             v5.5.5                   -> v5.5.5
 * [new tag]             v5.5.6                   -> v5.5.6
 * [new tag]             v5.6.1                   -> v5.6.1
 * [new tag]             v5.6.2                   -> v5.6.2
 * [new tag]             v5.7.1                   -> v5.7.1
 * [new tag]             v5.7.2                   -> v5.7.2
 * [new tag]             v5.7.3                   -> v5.7.3
 * [new tag]             v5.7.5                   -> v5.7.5
 * [new tag]             v5.8                     -> v5.8
 * [new tag]             v5.8.6                   -> v5.8.6
 * [new tag]             v5.8.7                   -> v5.8.7
 * [new tag]             v5.8.8                   -> v5.8.8
 * [new tag]             v5.9.2                   -> v5.9.2
 * [new tag]             v6.0.1                   -> v6.0.1
 * [new tag]             v6.0.2                   -> v6.0.2
 * [new tag]             v6.1.1                   -> v6.1.1
 * [new tag]             v6.1.2                   -> v6.1.2
 * [new tag]             v6.10.1                  -> v6.10.1
 * [new tag]             v6.10.2                  -> v6.10.2
 * [new tag]             v6.11.4                  -> v6.11.4
 * [new tag]             v6.11.6                  -> v6.11.6
 * [new tag]             v6.12.6                  -> v6.12.6
 * [new tag]             v6.12.7                  -> v6.12.7
 * [new tag]             v6.13.2                  -> v6.13.2
 * [new tag]             v6.13.3                  -> v6.13.3
 * [new tag]             v6.14.5                  -> v6.14.5
 * [new tag]             v6.14.6                  -> v6.14.6
 * [new tag]             v6.15.2                  -> v6.15.2
 * [new tag]             v6.15.4                  -> v6.15.4
 * [new tag]             v6.15.5                  -> v6.15.5
 * [new tag]             v6.16.3                  -> v6.16.3
 * [new tag]             v6.16.4                  -> v6.16.4
 * [new tag]             v6.17.3                  -> v6.17.3
 * [new tag]             v6.19.3                  -> v6.19.3
 * [new tag]             v6.2.2                   -> v6.2.2
 * [new tag]             v6.2.4                   -> v6.2.4
 * [new tag]             v6.20.3                  -> v6.20.3
 * [new tag]             v6.22.1                  -> v6.22.1
 * [new tag]             v6.23.2                  -> v6.23.2
 * [new tag]             v6.23.3                  -> v6.23.3
 * [new tag]             v6.24.2                  -> v6.24.2
 * [new tag]             v6.25.1                  -> v6.25.1
 * [new tag]             v6.25.3                  -> v6.25.3
 * [new tag]             v6.26.0                  -> v6.26.0
 * [new tag]             v6.26.1                  -> v6.26.1
 * [new tag]             v6.27.3                  -> v6.27.3
 * [new tag]             v6.28.2                  -> v6.28.2
 * [new tag]             v6.29.3                  -> v6.29.3
 * [new tag]             v6.29.4                  -> v6.29.4
 * [new tag]             v6.29.5                  -> v6.29.5
 * [new tag]             v6.3.6                   -> v6.3.6
 * [new tag]             v6.4.6                   -> v6.4.6
 * [new tag]             v6.5.2                   -> v6.5.2
 * [new tag]             v6.5.3                   -> v6.5.3
 * [new tag]             v6.6.3                   -> v6.6.3
 * [new tag]             v6.6.4                   -> v6.6.4
 * [new tag]             v6.7.3                   -> v6.7.3
 * [new tag]             v6.8.1                   -> v6.8.1
 * [new tag]             v7.0.1                   -> v7.0.1
 * [new tag]             v7.0.2                   -> v7.0.2
 * [new tag]             v7.0.3                   -> v7.0.3
 * [new tag]             v7.0.4                   -> v7.0.4
 * [new tag]             v7.1.1                   -> v7.1.1
 * [new tag]             v7.1.2                   -> v7.1.2
 * [new tag]             v7.10.2                  -> v7.10.2
 * [new tag]             v7.2.0                   -> v7.2.0
 * [new tag]             v7.2.2                   -> v7.2.2
 * [new tag]             v7.3.1                   -> v7.3.1
 * [new tag]             v7.4.3                   -> v7.4.3
 * [new tag]             v7.4.4                   -> v7.4.4
 * [new tag]             v7.4.5                   -> v7.4.5
 * [new tag]             v7.5.3                   -> v7.5.3
 * [new tag]             v7.6.0                   -> v7.6.0
 * [new tag]             v7.7.2                   -> v7.7.2
 * [new tag]             v7.7.3                   -> v7.7.3
 * [new tag]             v7.7.8                   -> v7.7.8
 * [new tag]             v7.8.3                   -> v7.8.3
 * [new tag]             v7.9.2                   -> v7.9.2
 * [new tag]             v8.0.0                   -> v8.0.0
 * [new tag]             v8.1.1                   -> v8.1.1
 * [new tag]             v8.10.0                  -> v8.10.0
 * [new tag]             v8.10.2                  -> v8.10.2
 * [new tag]             v8.11.3                  -> v8.11.3
 * [new tag]             v8.3.2                   -> v8.3.2
 * [new tag]             v8.3.3                   -> v8.3.3
 * [new tag]             v8.4.4                   -> v8.4.4
 * [new tag]             v8.5.3                   -> v8.5.3
 * [new tag]             v8.5.4                   -> v8.5.4
 * [new tag]             v8.6.7                   -> v8.6.7
 * [new tag]             v8.7.3                   -> v8.7.3
 * [new tag]             v8.8.1                   -> v8.8.1
 * [new tag]             v8.9.1                   -> v8.9.1
 * [new tag]             v9.0.0                   -> v9.0.0
    Updating git submodule `https://github.com/google/snappy.git`
From https://github.com/google/snappy
 * [new ref]         6af9287fbdb913f0794d0148c6aa43b58e63c8e3 -> refs/commit/6af9287fbdb913f0794d0148c6aa43b58e63c8e3
    Updating git submodule `https://github.com/google/benchmark.git`
From https://github.com/google/benchmark
 * [new ref]         d572f4777349d43653b21d6c2fc63020ab326db2 -> refs/commit/d572f4777349d43653b21d6c2fc63020ab326db2
    Updating git submodule `https://github.com/google/googletest.git`
From https://github.com/google/googletest
 * [new ref]           b796f7d44681514f58a683a3a71ff17c94edb0c1 -> refs/commit/b796f7d44681514f58a683a3a71ff17c94edb0c1
error: failed to select a version for the requirement `axum = "^0.7"`
candidate versions found which didn't match: 0.8.6
location searched: crates.io index
required by package `axum-client-ip v0.6.1`
    ... which satisfies dependency `axum-client-ip = "^0.6.1"` of package `conduwuit_api v0.5.0-rc.8 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/api)`
    ... which satisfies path dependency `conduwuit-api` (locked to 0.5.0-rc.8) of package `conduwuit_admin v0.5.0-rc.8 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/admin)`

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package axum@0.7.9 --precise 0.8.6 Updating git repository `https://forgejo.ellis.link/continuwuation/async-channel` From https://forgejo.ellis.link/continuwuation/async-channel * [new branch] master -> origin/master * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD Updating git repository `https://forgejo.ellis.link/continuwuation/event-listener` From https://forgejo.ellis.link/continuwuation/event-listener * [new branch] master -> origin/master * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD Updating git repository `https://forgejo.ellis.link/continuwuation/hyper-util` From https://forgejo.ellis.link/continuwuation/hyper-util * [new branch] auto-builder-from -> origin/auto-builder-from * [new branch] master -> origin/master * [new branch] proxy-env -> origin/proxy-env * [new branch] proxy-tunnel -> origin/proxy-tunnel * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD * [new tag] v0.1.0 -> v0.1.0 * [new tag] v0.1.1 -> v0.1.1 * [new tag] v0.1.10 -> v0.1.10 * [new tag] v0.1.11 -> v0.1.11 * [new tag] v0.1.2 -> v0.1.2 * [new tag] v0.1.3 -> v0.1.3 * [new tag] v0.1.4 -> v0.1.4 * [new tag] v0.1.5 -> v0.1.5 * [new tag] v0.1.6 -> v0.1.6 * [new tag] v0.1.7 -> v0.1.7 * [new tag] v0.1.8 -> v0.1.8 * [new tag] v0.1.9 -> v0.1.9 Updating git repository `https://forgejo.ellis.link/continuwuation/rustyline-async` From https://forgejo.ellis.link/continuwuation/rustyline-async * [new branch] continuwuity-changes -> origin/continuwuity-changes * [new branch] legacy-changes -> origin/legacy-changes * [new branch] main -> origin/main * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD Updating crates.io index Updating git repository `https://forgejo.ellis.link/continuwuation/ruwuma` From https://forgejo.ellis.link/continuwuation/ruwuma * [new branch] conduwuit-changes -> origin/conduwuit-changes * [new branch] dash_uwu/axum-0.8 -> origin/dash_uwu/axum-0.8 * [new branch] deprecated-user-login-field -> origin/deprecated-user-login-field * [new branch] jade/eq-recipts -> origin/jade/eq-recipts * [new branch] jade/hack-join-rules -> origin/jade/hack-join-rules * [new branch] main -> origin/main * [new branch] morguldir/invalid-predecessor -> origin/morguldir/invalid-predecessor * [new branch] msc4121 -> origin/msc4121 * [new branch] nex/cwy-as-callbacks -> origin/nex/cwy-as-callbacks * [new branch] nex/feat/oidc-stuff -> origin/nex/feat/oidc-stuff * [new branch] nex/no-timeout-default -> origin/nex/no-timeout-default * [new branch] relations-request-direction -> origin/relations-request-direction * [new branch] renovate/configure -> origin/renovate/configure * [new branch] url-preview-ts -> origin/url-preview-ts * [new ref] HEAD -> origin/HEAD * [new tag] ruma-0.0.1 -> ruma-0.0.1 * [new tag] ruma-0.0.2 -> ruma-0.0.2 * [new tag] ruma-0.0.3 -> ruma-0.0.3 * [new tag] ruma-0.1.0 -> ruma-0.1.0 * [new tag] ruma-0.1.1 -> ruma-0.1.1 * [new tag] ruma-0.1.2 -> ruma-0.1.2 * [new tag] ruma-0.10.0 -> ruma-0.10.0 * [new tag] ruma-0.10.1 -> ruma-0.10.1 * [new tag] ruma-0.2.0 -> ruma-0.2.0 * [new tag] ruma-0.3.0 -> ruma-0.3.0 * [new tag] ruma-0.4.0 -> ruma-0.4.0 * [new tag] ruma-0.5.0 -> ruma-0.5.0 * [new tag] ruma-0.6.0 -> ruma-0.6.0 * [new tag] ruma-0.6.1 -> ruma-0.6.1 * [new tag] ruma-0.6.2 -> ruma-0.6.2 * [new tag] ruma-0.6.3 -> ruma-0.6.3 * [new tag] ruma-0.6.4 -> ruma-0.6.4 * [new tag] ruma-0.7.0 -> ruma-0.7.0 * [new tag] ruma-0.7.1 -> ruma-0.7.1 * [new tag] ruma-0.7.2 -> ruma-0.7.2 * [new tag] ruma-0.7.3 -> ruma-0.7.3 * [new tag] ruma-0.7.4 -> ruma-0.7.4 * [new tag] ruma-0.8.0 -> ruma-0.8.0 * [new tag] ruma-0.8.1 -> ruma-0.8.1 * [new tag] ruma-0.8.2 -> ruma-0.8.2 * [new tag] ruma-0.9.0 -> ruma-0.9.0 * [new tag] ruma-0.9.1 -> ruma-0.9.1 * [new tag] ruma-0.9.2 -> ruma-0.9.2 * [new tag] ruma-0.9.3 -> ruma-0.9.3 * [new tag] ruma-0.9.4 -> ruma-0.9.4 * [new tag] ruma-api-0.17.0 -> ruma-api-0.17.0 * [new tag] ruma-api-0.17.0-alpha.1 -> ruma-api-0.17.0-alpha.1 * [new tag] ruma-api-0.17.0-alpha.2 -> ruma-api-0.17.0-alpha.2 * [new tag] ruma-api-0.17.0-alpha.4 -> ruma-api-0.17.0-alpha.4 * [new tag] ruma-api-0.17.1 -> ruma-api-0.17.1 * [new tag] ruma-api-0.17.2 -> ruma-api-0.17.2 * [new tag] ruma-api-0.18.1 -> ruma-api-0.18.1 * [new tag] ruma-api-0.18.2 -> ruma-api-0.18.2 * [new tag] ruma-api-0.18.3 -> ruma-api-0.18.3 * [new tag] ruma-api-0.18.4 -> ruma-api-0.18.4 * [new tag] ruma-api-0.18.5 -> ruma-api-0.18.5 * [new tag] ruma-api-0.19.0 -> ruma-api-0.19.0 * [new tag] ruma-api-0.20.0 -> ruma-api-0.20.0 * [new tag] ruma-appservice-api-0.10.0 -> ruma-appservice-api-0.10.0 * [new tag] ruma-appservice-api-0.2.0 -> ruma-appservice-api-0.2.0 * [new tag] ruma-appservice-api-0.2.0-alpha.1 -> ruma-appservice-api-0.2.0-alpha.1 * [new tag] ruma-appservice-api-0.2.0-alpha.2 -> ruma-appservice-api-0.2.0-alpha.2 * [new tag] ruma-appservice-api-0.2.0-alpha.3 -> ruma-appservice-api-0.2.0-alpha.3 * [new tag] ruma-appservice-api-0.3.0 -> ruma-appservice-api-0.3.0 * [new tag] ruma-appservice-api-0.4.0 -> ruma-appservice-api-0.4.0 * [new tag] ruma-appservice-api-0.5.0 -> ruma-appservice-api-0.5.0 * [new tag] ruma-appservice-api-0.6.0 -> ruma-appservice-api-0.6.0 * [new tag] ruma-appservice-api-0.7.0 -> ruma-appservice-api-0.7.0 * [new tag] ruma-appservice-api-0.8.0 -> ruma-appservice-api-0.8.0 * [new tag] ruma-appservice-api-0.8.1 -> ruma-appservice-api-0.8.1 * [new tag] ruma-appservice-api-0.9.0 -> ruma-appservice-api-0.9.0 * [new tag] ruma-client-0.10.0 -> ruma-client-0.10.0 * [new tag] ruma-client-0.11.0 -> ruma-client-0.11.0 * [new tag] ruma-client-0.12.0 -> ruma-client-0.12.0 * [new tag] ruma-client-0.13.0 -> ruma-client-0.13.0 * [new tag] ruma-client-0.5.0 -> ruma-client-0.5.0 * [new tag] ruma-client-0.5.0-alpha.1 -> ruma-client-0.5.0-alpha.1 * [new tag] ruma-client-0.5.0-alpha.2 -> ruma-client-0.5.0-alpha.2 * [new tag] ruma-client-0.6.0 -> ruma-client-0.6.0 * [new tag] ruma-client-0.7.0 -> ruma-client-0.7.0 * [new tag] ruma-client-0.8.0 -> ruma-client-0.8.0 * [new tag] ruma-client-0.9.0 -> ruma-client-0.9.0 * [new tag] ruma-client-api-0.10.0 -> ruma-client-api-0.10.0 * [new tag] ruma-client-api-0.10.0-alpha.1 -> ruma-client-api-0.10.0-alpha.1 * [new tag] ruma-client-api-0.10.0-alpha.2 -> ruma-client-api-0.10.0-alpha.2 * [new tag] ruma-client-api-0.10.0-alpha.3 -> ruma-client-api-0.10.0-alpha.3 * [new tag] ruma-client-api-0.10.1 -> ruma-client-api-0.10.1 * [new tag] ruma-client-api-0.10.2 -> ruma-client-api-0.10.2 * [new tag] ruma-client-api-0.11.0 -> ruma-client-api-0.11.0 * [new tag] ruma-client-api-0.11.2 -> ruma-client-api-0.11.2 * [new tag] ruma-client-api-0.12.0 -> ruma-client-api-0.12.0 * [new tag] ruma-client-api-0.12.1 -> ruma-client-api-0.12.1 * [new tag] ruma-client-api-0.12.2 -> ruma-client-api-0.12.2 * [new tag] ruma-client-api-0.12.3 -> ruma-client-api-0.12.3 * [new tag] ruma-client-api-0.13.0 -> ruma-client-api-0.13.0 * [new tag] ruma-client-api-0.14.0 -> ruma-client-api-0.14.0 * [new tag] ruma-client-api-0.14.1 -> ruma-client-api-0.14.1 * [new tag] ruma-client-api-0.15.0 -> ruma-client-api-0.15.0 * [new tag] ruma-client-api-0.15.1 -> ruma-client-api-0.15.1 * [new tag] ruma-client-api-0.15.2 -> ruma-client-api-0.15.2 * [new tag] ruma-client-api-0.15.3 -> ruma-client-api-0.15.3 * [new tag] ruma-client-api-0.16.0 -> ruma-client-api-0.16.0 * [new tag] ruma-client-api-0.16.1 -> ruma-client-api-0.16.1 * [new tag] ruma-client-api-0.16.2 -> ruma-client-api-0.16.2 * [new tag] ruma-client-api-0.17.0 -> ruma-client-api-0.17.0 * [new tag] ruma-client-api-0.17.1 -> ruma-client-api-0.17.1 * [new tag] ruma-client-api-0.17.2 -> ruma-client-api-0.17.2 * [new tag] ruma-client-api-0.17.3 -> ruma-client-api-0.17.3 * [new tag] ruma-client-api-0.17.4 -> ruma-client-api-0.17.4 * [new tag] ruma-client-api-0.18.0 -> ruma-client-api-0.18.0 * [new tag] ruma-common-0.10.0 -> ruma-common-0.10.0 * [new tag] ruma-common-0.10.1 -> ruma-common-0.10.1 * [new tag] ruma-common-0.10.2 -> ruma-common-0.10.2 * [new tag] ruma-common-0.10.3 -> ruma-common-0.10.3 * [new tag] ruma-common-0.10.4 -> ruma-common-0.10.4 * [new tag] ruma-common-0.10.5 -> ruma-common-0.10.5 * [new tag] ruma-common-0.11.0 -> ruma-common-0.11.0 * [new tag] ruma-common-0.11.1 -> ruma-common-0.11.1 * [new tag] ruma-common-0.11.2 -> ruma-common-0.11.2 * [new tag] ruma-common-0.11.3 -> ruma-common-0.11.3 * [new tag] ruma-common-0.12.0 -> ruma-common-0.12.0 * [new tag] ruma-common-0.12.1 -> ruma-common-0.12.1 * [new tag] ruma-common-0.13.0 -> ruma-common-0.13.0 * [new tag] ruma-common-0.2.0 -> ruma-common-0.2.0 * [new tag] ruma-common-0.3.0 -> ruma-common-0.3.0 * [new tag] ruma-common-0.3.0-alpha.1 -> ruma-common-0.3.0-alpha.1 * [new tag] ruma-common-0.3.1 -> ruma-common-0.3.1 * [new tag] ruma-common-0.4.0 -> ruma-common-0.4.0 * [new tag] ruma-common-0.5.0 -> ruma-common-0.5.0 * [new tag] ruma-common-0.5.1 -> ruma-common-0.5.1 * [new tag] ruma-common-0.5.2 -> ruma-common-0.5.2 * [new tag] ruma-common-0.5.3 -> ruma-common-0.5.3 * [new tag] ruma-common-0.5.4 -> ruma-common-0.5.4 * [new tag] ruma-common-0.6.0 -> ruma-common-0.6.0 * [new tag] ruma-common-0.7.0 -> ruma-common-0.7.0 * [new tag] ruma-common-0.8.0 -> ruma-common-0.8.0 * [new tag] ruma-common-0.9.0 -> ruma-common-0.9.0 * [new tag] ruma-common-0.9.1 -> ruma-common-0.9.1 * [new tag] ruma-common-0.9.2 -> ruma-common-0.9.2 * [new tag] ruma-common-0.9.3 -> ruma-common-0.9.3 * [new tag] ruma-events-0.22.0 -> ruma-events-0.22.0 * [new tag] ruma-events-0.22.0-alpha.1 -> ruma-events-0.22.0-alpha.1 * [new tag] ruma-events-0.22.0-alpha.2 -> ruma-events-0.22.0-alpha.2 * [new tag] ruma-events-0.22.0-alpha.3 -> ruma-events-0.22.0-alpha.3 * [new tag] ruma-events-0.22.1 -> ruma-events-0.22.1 * [new tag] ruma-events-0.22.2 -> ruma-events-0.22.2 * [new tag] ruma-events-0.23.0 -> ruma-events-0.23.0 * [new tag] ruma-events-0.23.1 -> ruma-events-0.23.1 * [new tag] ruma-events-0.23.2 -> ruma-events-0.23.2 * [new tag] ruma-events-0.23.3 -> ruma-events-0.23.3 * [new tag] ruma-events-0.24.1 -> ruma-events-0.24.1 * [new tag] ruma-events-0.24.2 -> ruma-events-0.24.2 * [new tag] ruma-events-0.24.3 -> ruma-events-0.24.3 * [new tag] ruma-events-0.24.4 -> ruma-events-0.24.4 * [new tag] ruma-events-0.24.5 -> ruma-events-0.24.5 * [new tag] ruma-events-0.24.6 -> ruma-events-0.24.6 * [new tag] ruma-events-0.25.0 -> ruma-events-0.25.0 * [new tag] ruma-events-0.26.0 -> ruma-events-0.26.0 * [new tag] ruma-events-0.27.0 -> ruma-events-0.27.0 * [new tag] ruma-events-0.27.1 -> ruma-events-0.27.1 * [new tag] ruma-events-0.27.10 -> ruma-events-0.27.10 * [new tag] ruma-events-0.27.11 -> ruma-events-0.27.11 * [new tag] ruma-events-0.27.2 -> ruma-events-0.27.2 * [new tag] ruma-events-0.27.3 -> ruma-events-0.27.3 * [new tag] ruma-events-0.27.4 -> ruma-events-0.27.4 * [new tag] ruma-events-0.27.5 -> ruma-events-0.27.5 * [new tag] ruma-events-0.27.6 -> ruma-events-0.27.6 * [new tag] ruma-events-0.27.7 -> ruma-events-0.27.7 * [new tag] ruma-events-0.27.8 -> ruma-events-0.27.8 * [new tag] ruma-events-0.27.9 -> ruma-events-0.27.9 * [new tag] ruma-events-0.28.0 -> ruma-events-0.28.0 * [new tag] ruma-events-0.28.1 -> ruma-events-0.28.1 * [new tag] ruma-federation-api-0.0.3 -> ruma-federation-api-0.0.3 * [new tag] ruma-federation-api-0.1.0 -> ruma-federation-api-0.1.0 * [new tag] ruma-federation-api-0.1.0-alpha.1 -> ruma-federation-api-0.1.0-alpha.1 * [new tag] ruma-federation-api-0.1.0-alpha.2 -> ruma-federation-api-0.1.0-alpha.2 * [new tag] ruma-federation-api-0.2.0 -> ruma-federation-api-0.2.0 * [new tag] ruma-federation-api-0.3.0 -> ruma-federation-api-0.3.0 * [new tag] ruma-federation-api-0.3.1 -> ruma-federation-api-0.3.1 * [new tag] ruma-federation-api-0.4.0 -> ruma-federation-api-0.4.0 * [new tag] ruma-federation-api-0.5.0 -> ruma-federation-api-0.5.0 * [new tag] ruma-federation-api-0.6.0 -> ruma-federation-api-0.6.0 * [new tag] ruma-federation-api-0.7.0 -> ruma-federation-api-0.7.0 * [new tag] ruma-federation-api-0.7.1 -> ruma-federation-api-0.7.1 * [new tag] ruma-federation-api-0.8.0 -> ruma-federation-api-0.8.0 * [new tag] ruma-federation-api-0.9.0 -> ruma-federation-api-0.9.0 * [new tag] ruma-html-0.1.0 -> ruma-html-0.1.0 * [new tag] ruma-html-0.2.0 -> ruma-html-0.2.0 * [new tag] ruma-identifiers-0.17.0 -> ruma-identifiers-0.17.0 * [new tag] ruma-identifiers-0.17.2 -> ruma-identifiers-0.17.2 * [new tag] ruma-identifiers-0.18.0 -> ruma-identifiers-0.18.0 * [new tag] ruma-identifiers-0.18.0-alpha.1 -> ruma-identifiers-0.18.0-alpha.1 * [new tag] ruma-identifiers-0.18.1 -> ruma-identifiers-0.18.1 * [new tag] ruma-identifiers-0.19.0 -> ruma-identifiers-0.19.0 * [new tag] ruma-identifiers-0.19.1 -> ruma-identifiers-0.19.1 * [new tag] ruma-identifiers-0.19.2 -> ruma-identifiers-0.19.2 * [new tag] ruma-identifiers-0.19.3 -> ruma-identifiers-0.19.3 * [new tag] ruma-identifiers-0.19.4 -> ruma-identifiers-0.19.4 * [new tag] ruma-identifiers-0.20.0 -> ruma-identifiers-0.20.0 * [new tag] ruma-identifiers-0.21.0 -> ruma-identifiers-0.21.0 * [new tag] ruma-identifiers-0.22.0 -> ruma-identifiers-0.22.0 * [new tag] ruma-identity-service-api-0.0.1 -> ruma-identity-service-api-0.0.1 * [new tag] ruma-identity-service-api-0.1.0 -> ruma-identity-service-api-0.1.0 * [new tag] ruma-identity-service-api-0.1.0-alpha.1 -> ruma-identity-service-api-0.1.0-alpha.1 * [new tag] ruma-identity-service-api-0.2.0 -> ruma-identity-service-api-0.2.0 * [new tag] ruma-identity-service-api-0.3.0 -> ruma-identity-service-api-0.3.0 * [new tag] ruma-identity-service-api-0.4.0 -> ruma-identity-service-api-0.4.0 * [new tag] ruma-identity-service-api-0.5.0 -> ruma-identity-service-api-0.5.0 * [new tag] ruma-identity-service-api-0.6.0 -> ruma-identity-service-api-0.6.0 * [new tag] ruma-identity-service-api-0.7.0 -> ruma-identity-service-api-0.7.0 * [new tag] ruma-identity-service-api-0.7.1 -> ruma-identity-service-api-0.7.1 * [new tag] ruma-identity-service-api-0.8.0 -> ruma-identity-service-api-0.8.0 * [new tag] ruma-identity-service-api-0.9.0 -> ruma-identity-service-api-0.9.0 * [new tag] ruma-push-gateway-api-0.0.1 -> ruma-push-gateway-api-0.0.1 * [new tag] ruma-push-gateway-api-0.1.0 -> ruma-push-gateway-api-0.1.0 * [new tag] ruma-push-gateway-api-0.1.0-alpha.1 -> ruma-push-gateway-api-0.1.0-alpha.1 * [new tag] ruma-push-gateway-api-0.2.0 -> ruma-push-gateway-api-0.2.0 * [new tag] ruma-push-gateway-api-0.3.0 -> ruma-push-gateway-api-0.3.0 * [new tag] ruma-push-gateway-api-0.4.0 -> ruma-push-gateway-api-0.4.0 * [new tag] ruma-push-gateway-api-0.5.0 -> ruma-push-gateway-api-0.5.0 * [new tag] ruma-push-gateway-api-0.6.0 -> ruma-push-gateway-api-0.6.0 * [new tag] ruma-push-gateway-api-0.7.0 -> ruma-push-gateway-api-0.7.0 * [new tag] ruma-push-gateway-api-0.7.1 -> ruma-push-gateway-api-0.7.1 * [new tag] ruma-push-gateway-api-0.8.0 -> ruma-push-gateway-api-0.8.0 * [new tag] ruma-push-gateway-api-0.9.0 -> ruma-push-gateway-api-0.9.0 * [new tag] ruma-serde-0.2.3 -> ruma-serde-0.2.3 * [new tag] ruma-serde-0.3.0 -> ruma-serde-0.3.0 * [new tag] ruma-serde-0.3.1 -> ruma-serde-0.3.1 * [new tag] ruma-serde-0.4.0 -> ruma-serde-0.4.0 * [new tag] ruma-serde-0.4.1 -> ruma-serde-0.4.1 * [new tag] ruma-serde-0.4.2 -> ruma-serde-0.4.2 * [new tag] ruma-serde-0.5.0 -> ruma-serde-0.5.0 * [new tag] ruma-serde-0.6.0 -> ruma-serde-0.6.0 * [new tag] ruma-server-util-0.1.0 -> ruma-server-util-0.1.0 * [new tag] ruma-server-util-0.1.1 -> ruma-server-util-0.1.1 * [new tag] ruma-server-util-0.2.0 -> ruma-server-util-0.2.0 * [new tag] ruma-server-util-0.3.0 -> ruma-server-util-0.3.0 * [new tag] ruma-signatures-0.10.0 -> ruma-signatures-0.10.0 * [new tag] ruma-signatures-0.11.0 -> ruma-signatures-0.11.0 * [new tag] ruma-signatures-0.12.0 -> ruma-signatures-0.12.0 * [new tag] ruma-signatures-0.13.0 -> ruma-signatures-0.13.0 * [new tag] ruma-signatures-0.13.1 -> ruma-signatures-0.13.1 * [new tag] ruma-signatures-0.14.0 -> ruma-signatures-0.14.0 * [new tag] ruma-signatures-0.15.0 -> ruma-signatures-0.15.0 * [new tag] ruma-signatures-0.6.0 -> ruma-signatures-0.6.0 * [new tag] ruma-signatures-0.6.0-alpha.1 -> ruma-signatures-0.6.0-alpha.1 * [new tag] ruma-signatures-0.7.0 -> ruma-signatures-0.7.0 * [new tag] ruma-signatures-0.7.1 -> ruma-signatures-0.7.1 * [new tag] ruma-signatures-0.7.2 -> ruma-signatures-0.7.2 * [new tag] ruma-signatures-0.8.0 -> ruma-signatures-0.8.0 * [new tag] ruma-signatures-0.9.0 -> ruma-signatures-0.9.0 * [new tag] ruma-state-res-0.1.0 -> ruma-state-res-0.1.0 * [new tag] ruma-state-res-0.10.0 -> ruma-state-res-0.10.0 * [new tag] ruma-state-res-0.11.0 -> ruma-state-res-0.11.0 * [new tag] ruma-state-res-0.2.0 -> ruma-state-res-0.2.0 * [new tag] ruma-state-res-0.3.0 -> ruma-state-res-0.3.0 * [new tag] ruma-state-res-0.4.0 -> ruma-state-res-0.4.0 * [new tag] ruma-state-res-0.4.1 -> ruma-state-res-0.4.1 * [new tag] ruma-state-res-0.5.0 -> ruma-state-res-0.5.0 * [new tag] ruma-state-res-0.6.0 -> ruma-state-res-0.6.0 * [new tag] ruma-state-res-0.7.0 -> ruma-state-res-0.7.0 * [new tag] ruma-state-res-0.8.0 -> ruma-state-res-0.8.0 * [new tag] ruma-state-res-0.9.0 -> ruma-state-res-0.9.0 * [new tag] ruma-state-res-0.9.1 -> ruma-state-res-0.9.1 Updating git repository `https://forgejo.ellis.link/continuwuation/jemallocator` From https://forgejo.ellis.link/continuwuation/jemallocator * [new branch] avoid-atexit -> origin/avoid-atexit * [new branch] disable-stats -> origin/disable-stats * [new branch] fixxx -> origin/fixxx * [new branch] ga -> origin/ga * [new branch] gh-pages -> origin/gh-pages * [new branch] git_feature -> origin/git_feature * [new branch] gnzlbg-patch-1 -> origin/gnzlbg-patch-1 * [new branch] main -> origin/main * [new branch] master -> origin/master * [new branch] min_align -> origin/min_align * [new branch] origin-jemallocator -> origin/origin-jemallocator * [new branch] pub0.3.0 -> origin/pub0.3.0 * [new branch] readme_version_number -> origin/readme_version_number * [new branch] renovate/configure -> origin/renovate/configure * [new branch] tikv-main -> origin/tikv-main * [new branch] tikv-master -> origin/tikv-master * [new ref] HEAD -> origin/HEAD * [new tag] 0.1.1 -> 0.1.1 * [new tag] 0.1.2 -> 0.1.2 * [new tag] 0.1.3 -> 0.1.3 * [new tag] 0.1.4 -> 0.1.4 * [new tag] 0.1.6 -> 0.1.6 * [new tag] 0.1.7 -> 0.1.7 * [new tag] 0.3.0 -> 0.3.0 * [new tag] 0.4.0 -> 0.4.0 * [new tag] 0.4.1 -> 0.4.1 * [new tag] 0.4.3 -> 0.4.3 * [new tag] 0.5.0 -> 0.5.0 * [new tag] 0.5.4 -> 0.5.4 * [new tag] jemalloc-sys-0.1.1 -> jemalloc-sys-0.1.1 * [new tag] jemalloc-sys-0.1.2 -> jemalloc-sys-0.1.2 * [new tag] jemalloc-sys-0.1.3 -> jemalloc-sys-0.1.3 * [new tag] jemalloc-sys-0.1.4 -> jemalloc-sys-0.1.4 * [new tag] jemalloc-sys-0.1.5 -> jemalloc-sys-0.1.5 * [new tag] jemalloc-sys-0.1.7 -> jemalloc-sys-0.1.7 * [new tag] tikv-jemalloc-sys-0.4.2 -> tikv-jemalloc-sys-0.4.2 * [new tag] tikv-jemalloc-sys-0.5.1 -> tikv-jemalloc-sys-0.5.1 * [new tag] tikv-jemalloc-sys-0.5.2 -> tikv-jemalloc-sys-0.5.2 * [new tag] tikv-jemalloc-sys-0.5.3 -> tikv-jemalloc-sys-0.5.3 Updating git submodule `https://github.com/tikv/jemalloc` From https://github.com/tikv/jemalloc * [new ref] e13ca993e8ccb9ba9847cc330696e02839f328f7 -> refs/commit/e13ca993e8ccb9ba9847cc330696e02839f328f7 Updating git repository `https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1` From https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1 * [new branch] folly-coroutines -> origin/folly-coroutines * [new branch] master -> origin/master * [new branch] renovate/configure -> origin/renovate/configure * [new branch] rust-rocksdb-upstream-master -> origin/rust-rocksdb-upstream-master * [new branch] snappy-1.2.1 -> origin/snappy-1.2.1 * [new branch] strawberry/bump-jemalloc -> origin/strawberry/bump-jemalloc * [new branch] strawberry/freebsd-system-jemalloc -> origin/strawberry/freebsd-system-jemalloc * [new branch] strawberry/remove-gtest -> origin/strawberry/remove-gtest * [new ref] HEAD -> origin/HEAD * [new tag] continuwuity-v0.5.0-rc.6 -> continuwuity-v0.5.0-rc.6 * [new tag] v0.5.0-rc.7 -> v0.5.0-rc.7 Updating git submodule `https://forgejo.ellis.link/continuwuation/rocksdb.git` From https://forgejo.ellis.link/continuwuation/rocksdb * [new branch] 10.4.fb -> origin/10.4.fb * [new branch] 10.5.fb -> origin/10.5.fb * [new branch] 2.2.fb.branch -> origin/2.2.fb.branch * [new branch] 2.3.fb.branch -> origin/2.3.fb.branch * [new branch] 2.4.fb.branch -> origin/2.4.fb.branch * [new branch] 2.5.fb.branch -> origin/2.5.fb.branch * [new branch] 2.6.fb.branch -> origin/2.6.fb.branch * [new branch] 2.7 -> origin/2.7 * [new branch] 2.7.fb.branch -> origin/2.7.fb.branch * [new branch] 2.8.1.fb -> origin/2.8.1.fb * [new branch] 2.8.fb -> origin/2.8.fb * [new branch] 2.8.fb.trunk -> origin/2.8.fb.trunk * [new branch] 3.0.fb -> origin/3.0.fb * [new branch] 3.0.fb.branch -> origin/3.0.fb.branch * [new branch] 3.1.fb -> origin/3.1.fb * [new branch] 3.10.fb -> origin/3.10.fb * [new branch] 3.11.fb -> origin/3.11.fb * [new branch] 3.12.fb -> origin/3.12.fb * [new branch] 3.13.fb -> origin/3.13.fb * [new branch] 3.2.fb -> origin/3.2.fb * [new branch] 3.3.fb -> origin/3.3.fb * [new branch] 3.4.fb -> origin/3.4.fb * [new branch] 3.5.fb -> origin/3.5.fb * [new branch] 3.6.fb -> origin/3.6.fb * [new branch] 3.7.fb -> origin/3.7.fb * [new branch] 3.8.fb -> origin/3.8.fb * [new branch] 3.9.fb -> origin/3.9.fb * [new branch] 4.0.fb -> origin/4.0.fb * [new branch] 4.1.fb -> origin/4.1.fb * [new branch] 4.10.fb -> origin/4.10.fb * [new branch] 4.11.fb -> origin/4.11.fb * [new branch] 4.12.fb -> origin/4.12.fb * [new branch] 4.13.fb -> origin/4.13.fb * [new branch] 4.2.fb -> origin/4.2.fb * [new branch] 4.3.fb -> origin/4.3.fb * [new branch] 4.4.fb -> origin/4.4.fb * [new branch] 4.5.fb -> origin/4.5.fb * [new branch] 4.6.fb -> origin/4.6.fb * [new branch] 4.7.fb -> origin/4.7.fb * [new branch] 4.8.fb -> origin/4.8.fb * [new branch] 4.9.fb -> origin/4.9.fb * [new branch] 5.0.fb -> origin/5.0.fb * [new branch] 5.1.fb -> origin/5.1.fb * [new branch] 5.10.fb -> origin/5.10.fb * [new branch] 5.11.fb -> origin/5.11.fb * [new branch] 5.12.fb -> origin/5.12.fb * [new branch] 5.13.fb -> origin/5.13.fb * [new branch] 5.13.fb.myrocks -> origin/5.13.fb.myrocks * [new branch] 5.14.fb -> origin/5.14.fb * [new branch] 5.14.fb.myrocks -> origin/5.14.fb.myrocks * [new branch] 5.15.fb -> origin/5.15.fb * [new branch] 5.16.fb -> origin/5.16.fb * [new branch] 5.17.fb -> origin/5.17.fb * [new branch] 5.17.fb.myrocks -> origin/5.17.fb.myrocks * [new branch] 5.18.fb -> origin/5.18.fb * [new branch] 5.2.fb -> origin/5.2.fb * [new branch] 5.3.fb -> origin/5.3.fb * [new branch] 5.4.fb -> origin/5.4.fb * [new branch] 5.5.fb -> origin/5.5.fb * [new branch] 5.6.fb -> origin/5.6.fb * [new branch] 5.7.fb -> origin/5.7.fb * [new branch] 5.7.fb.myrocks -> origin/5.7.fb.myrocks * [new branch] 5.8.3 -> origin/5.8.3 * [new branch] 5.8.fb -> origin/5.8.fb * [new branch] 5.9.fb -> origin/5.9.fb * [new branch] 5.9.fb.myrocks -> origin/5.9.fb.myrocks * [new branch] 6.0.fb -> origin/6.0.fb * [new branch] 6.0.fb.myrocks -> origin/6.0.fb.myrocks * [new branch] 6.1.fb -> origin/6.1.fb * [new branch] 6.1.fb.myrocks -> origin/6.1.fb.myrocks * [new branch] 6.1.fb.prod201905 -> origin/6.1.fb.prod201905 * [new branch] 6.10.fb -> origin/6.10.fb * [new branch] 6.11.fb -> origin/6.11.fb * [new branch] 6.12.fb -> origin/6.12.fb * [new branch] 6.13.fb -> origin/6.13.fb * [new branch] 6.13.fb.laser -> origin/6.13.fb.laser * [new branch] 6.14.fb -> origin/6.14.fb * [new branch] 6.14.fb.laser -> origin/6.14.fb.laser * [new branch] 6.15.fb -> origin/6.15.fb * [new branch] 6.16.fb -> origin/6.16.fb * [new branch] 6.17.fb -> origin/6.17.fb * [new branch] 6.17.fb.laser -> origin/6.17.fb.laser * [new branch] 6.18.fb -> origin/6.18.fb * [new branch] 6.19.fb -> origin/6.19.fb * [new branch] 6.2.fb -> origin/6.2.fb * [new branch] 6.20.fb -> origin/6.20.fb * [new branch] 6.21.fb -> origin/6.21.fb * [new branch] 6.22-history.md-fixup -> origin/6.22-history.md-fixup * [new branch] 6.22.fb -> origin/6.22.fb * [new branch] 6.23.fb -> origin/6.23.fb * [new branch] 6.24.fb -> origin/6.24.fb * [new branch] 6.25.fb -> origin/6.25.fb * [new branch] 6.26.fb -> origin/6.26.fb * [new branch] 6.27.fb -> origin/6.27.fb * [new branch] 6.28.fb -> origin/6.28.fb * [new branch] 6.29.fb -> origin/6.29.fb * [new branch] 6.3.fb -> origin/6.3.fb * [new branch] 6.3.fb.myrocks -> origin/6.3.fb.myrocks * [new branch] 6.3.fb.myrocks2 -> origin/6.3.fb.myrocks2 * [new branch] 6.3fb -> origin/6.3fb * [new branch] 6.4.fb -> origin/6.4.fb * [new branch] 6.5.fb -> origin/6.5.fb * [new branch] 6.6.fb -> origin/6.6.fb * [new branch] 6.7.fb -> origin/6.7.fb * [new branch] 6.8.fb -> origin/6.8.fb * [new branch] 6.9.fb -> origin/6.9.fb * [new branch] 7.0.fb -> origin/7.0.fb * [new branch] 7.1.fb -> origin/7.1.fb * [new branch] 7.10.fb -> origin/7.10.fb * [new branch] 7.2.fb -> origin/7.2.fb * [new branch] 7.3.fb -> origin/7.3.fb * [new branch] 7.4.fb -> origin/7.4.fb * [new branch] 7.5.fb -> origin/7.5.fb * [new branch] 7.6.fb -> origin/7.6.fb * [new branch] 7.7.fb -> origin/7.7.fb * [new branch] 7.8.fb -> origin/7.8.fb * [new branch] 7.9.fb -> origin/7.9.fb * [new branch] 8.0.fb -> origin/8.0.fb * [new branch] 8.1.fb -> origin/8.1.fb * [new branch] 8.10.fb -> origin/8.10.fb * [new branch] 8.11.2_zippydb -> origin/8.11.2_zippydb * [new branch] 8.11.fb -> origin/8.11.fb * [new branch] 8.11.fb_zippydb -> origin/8.11.fb_zippydb * [new branch] 8.2.fb -> origin/8.2.fb * [new branch] 8.3.fb -> origin/8.3.fb * [new branch] 8.4.fb -> origin/8.4.fb * [new branch] 8.5.fb -> origin/8.5.fb * [new branch] 8.6.fb -> origin/8.6.fb * [new branch] 8.7.fb -> origin/8.7.fb * [new branch] 8.8.fb -> origin/8.8.fb * [new branch] 8.9.fb -> origin/8.9.fb * [new branch] 9.0.fb -> origin/9.0.fb * [new branch] 9.1.fb -> origin/9.1.fb * [new branch] adaptive -> origin/adaptive * [new branch] ajkr-patch-1 -> origin/ajkr-patch-1 * [new branch] ajkr-patch-2 -> origin/ajkr-patch-2 * [new branch] blob_shadow -> origin/blob_shadow * [new branch] bottom-pri-level -> origin/bottom-pri-level * [new branch] bugfix-build-detect -> origin/bugfix-build-detect * [new branch] checksum_readahead_mmap_fix -> origin/checksum_readahead_mmap_fix * [new branch] draft-myrocks-and-fbcode-8.0.fb -> origin/draft-myrocks-and-fbcode-8.0.fb * [new branch] feature/debug-rocksdbjavastatic -> origin/feature/debug-rocksdbjavastatic * [new branch] feature/travis-arm64 -> origin/feature/travis-arm64 * [new branch] fix-release-notes -> origin/fix-release-notes * [new branch] fix-win2022-build -> origin/fix-win2022-build * [new branch] fix-write-batch-comment -> origin/fix-write-batch-comment * [new branch] format_compatible_4 -> origin/format_compatible_4 * [new branch] getmergeops -> origin/getmergeops * [new branch] gh-pages-old -> origin/gh-pages-old * [new branch] history-update -> origin/history-update * [new branch] hotfix/lambda-capture -> origin/hotfix/lambda-capture * [new branch] improve-support -> origin/improve-support * [new branch] jijiew-patch-1 -> origin/jijiew-patch-1 * [new branch] katherinez-patch-1 -> origin/katherinez-patch-1 * [new branch] katherinez-patch-2 -> origin/katherinez-patch-2 * [new branch] main -> origin/main * [new branch] master -> origin/master * [new branch] mdcallag_benchmark_oct22 -> origin/mdcallag_benchmark_oct22 * [new branch] nvm_cache_proto -> origin/nvm_cache_proto * [new branch] pr-sanity-check-as-GHAction -> origin/pr-sanity-check-as-GHAction * [new branch] pr/11267 -> origin/pr/11267 * [new branch] pr/6062 -> origin/pr/6062 * [new branch] ramvadiv-patch-1 -> origin/ramvadiv-patch-1 * [new branch] release_fix -> origin/release_fix * [new branch] renovate/configure -> origin/renovate/configure * [new branch] revert-10606-7.6.1 -> origin/revert-10606-7.6.1 * [new branch] ribbon_bloom_hybrid -> origin/ribbon_bloom_hybrid * [new branch] scaffold -> origin/scaffold * [new branch] siying-patch-1 -> origin/siying-patch-1 * [new branch] siying-patch-10 -> origin/siying-patch-10 * [new branch] siying-patch-2 -> origin/siying-patch-2 * [new branch] siying-patch-3 -> origin/siying-patch-3 * [new branch] siying-patch-4 -> origin/siying-patch-4 * [new branch] siying-patch-5 -> origin/siying-patch-5 * [new branch] siying-patch-6 -> origin/siying-patch-6 * [new branch] siying-patch-7 -> origin/siying-patch-7 * [new branch] siying-patch-8 -> origin/siying-patch-8 * [new branch] skip_memtable_flush -> origin/skip_memtable_flush * [new branch] tags/v9.8.4 -> origin/tags/v9.8.4 * [new branch] testing_ppc_build -> origin/testing_ppc_build * [new branch] tests -> origin/tests * [new branch] unschedule_issue_test_base -> origin/unschedule_issue_test_base * [new branch] unused-var -> origin/unused-var * [new branch] v6.6.4 -> origin/v6.6.4 * [new branch] v9.1.1 -> origin/v9.1.1 * [new branch] v9.10.0 -> origin/v9.10.0 * [new branch] v9.11.1 -> origin/v9.11.1 * [new branch] v9.2.1 -> origin/v9.2.1 * [new branch] v9.3.1 -> origin/v9.3.1 * [new branch] v9.4.0 -> origin/v9.4.0 * [new branch] v9.5.2 -> origin/v9.5.2 * [new branch] v9.6.1 -> origin/v9.6.1 * [new branch] v9.7.2 -> origin/v9.7.2 * [new branch] v9.7.3 -> origin/v9.7.3 * [new branch] v9.7.4 -> origin/v9.7.4 * [new branch] v9.8.4 -> origin/v9.8.4 * [new branch] v9.9.3 -> origin/v9.9.3 * [new branch] xxhash_merge_base -> origin/xxhash_merge_base * [new branch] yiwu_stackable -> origin/yiwu_stackable * [new branch] yuslepukhin -> origin/yuslepukhin * [new ref] HEAD -> origin/HEAD * [new tag] 1.5.7.fb -> 1.5.7.fb * [new tag] 1.5.8.1.fb -> 1.5.8.1.fb * [new tag] 1.5.8.2.fb -> 1.5.8.2.fb * [new tag] 1.5.8.fb -> 1.5.8.fb * [new tag] 1.5.9.1.fb -> 1.5.9.1.fb * [new tag] 1.5.9.2.fb -> 1.5.9.2.fb * [new tag] 1.5.9.fb -> 1.5.9.fb * [new tag] 2.0.fb -> 2.0.fb * [new tag] 2.1.fb -> 2.1.fb * [new tag] 2.2.fb -> 2.2.fb * [new tag] 2.3.fb -> 2.3.fb * [new tag] 2.4.fb -> 2.4.fb * [new tag] 2.5.fb -> 2.5.fb * [new tag] 2.6.fb -> 2.6.fb * [new tag] 2.7.fb -> 2.7.fb * [new tag] 2.8.fb -> 2.8.fb * [new tag] 3.0.fb -> 3.0.fb * [new tag] blob_st_lvl-pre -> blob_st_lvl-pre * [new tag] continuwuity-v0.5.0-rc.6 -> continuwuity-v0.5.0-rc.6 * [new tag] do-not-use-me2 -> do-not-use-me2 * [new tag] rocksdb-3.1 -> rocksdb-3.1 * [new tag] rocksdb-3.10.1 -> rocksdb-3.10.1 * [new tag] rocksdb-3.10.2 -> rocksdb-3.10.2 * [new tag] rocksdb-3.11 -> rocksdb-3.11 * [new tag] rocksdb-3.11.1 -> rocksdb-3.11.1 * [new tag] rocksdb-3.11.2 -> rocksdb-3.11.2 * [new tag] rocksdb-3.12 -> rocksdb-3.12 * [new tag] rocksdb-3.12.1 -> rocksdb-3.12.1 * [new tag] rocksdb-3.13 -> rocksdb-3.13 * [new tag] rocksdb-3.13.1 -> rocksdb-3.13.1 * [new tag] rocksdb-3.2 -> rocksdb-3.2 * [new tag] rocksdb-3.3 -> rocksdb-3.3 * [new tag] rocksdb-3.4 -> rocksdb-3.4 * [new tag] rocksdb-3.5 -> rocksdb-3.5 * [new tag] rocksdb-3.5.1 -> rocksdb-3.5.1 * [new tag] rocksdb-3.6.1 -> rocksdb-3.6.1 * [new tag] rocksdb-3.6.2 -> rocksdb-3.6.2 * [new tag] rocksdb-3.7 -> rocksdb-3.7 * [new tag] rocksdb-3.8 -> rocksdb-3.8 * [new tag] rocksdb-3.9 -> rocksdb-3.9 * [new tag] rocksdb-3.9.1 -> rocksdb-3.9.1 * [new tag] rocksdb-4.1 -> rocksdb-4.1 * [new tag] rocksdb-4.11.2 -> rocksdb-4.11.2 * [new tag] rocksdb-4.13 -> rocksdb-4.13 * [new tag] rocksdb-4.13.5 -> rocksdb-4.13.5 * [new tag] rocksdb-4.2 -> rocksdb-4.2 * [new tag] rocksdb-4.3 -> rocksdb-4.3 * [new tag] rocksdb-4.3.1 -> rocksdb-4.3.1 * [new tag] rocksdb-4.4 -> rocksdb-4.4 * [new tag] rocksdb-4.4.1 -> rocksdb-4.4.1 * [new tag] rocksdb-4.5.1 -> rocksdb-4.5.1 * [new tag] rocksdb-4.6.1 -> rocksdb-4.6.1 * [new tag] rocksdb-4.8 -> rocksdb-4.8 * [new tag] rocksdb-4.9 -> rocksdb-4.9 * [new tag] rocksdb-5.0.1 -> rocksdb-5.0.1 * [new tag] rocksdb-5.0.2 -> rocksdb-5.0.2 * [new tag] rocksdb-5.1.2 -> rocksdb-5.1.2 * [new tag] rocksdb-5.1.3 -> rocksdb-5.1.3 * [new tag] rocksdb-5.1.4 -> rocksdb-5.1.4 * [new tag] rocksdb-5.10.2 -> rocksdb-5.10.2 * [new tag] rocksdb-5.10.3 -> rocksdb-5.10.3 * [new tag] rocksdb-5.10.4 -> rocksdb-5.10.4 * [new tag] rocksdb-5.11.2 -> rocksdb-5.11.2 * [new tag] rocksdb-5.11.3 -> rocksdb-5.11.3 * [new tag] rocksdb-5.14.3 -> rocksdb-5.14.3 * [new tag] rocksdb-5.2.1 -> rocksdb-5.2.1 * [new tag] rocksdb-5.3.3 -> rocksdb-5.3.3 * [new tag] rocksdb-5.3.4 -> rocksdb-5.3.4 * [new tag] rocksdb-5.3.5 -> rocksdb-5.3.5 * [new tag] rocksdb-5.3.6 -> rocksdb-5.3.6 * [new tag] rocksdb-5.4.10 -> rocksdb-5.4.10 * [new tag] rocksdb-5.4.5 -> rocksdb-5.4.5 * [new tag] rocksdb-5.4.6 -> rocksdb-5.4.6 * [new tag] rocksdb-5.4.7 -> rocksdb-5.4.7 * [new tag] rocksdb-5.5.2 -> rocksdb-5.5.2 * [new tag] rocksdb-5.5.3 -> rocksdb-5.5.3 * [new tag] rocksdb-5.5.4 -> rocksdb-5.5.4 * [new tag] rocksdb-5.5.5 -> rocksdb-5.5.5 * [new tag] rocksdb-5.5.6 -> rocksdb-5.5.6 * [new tag] rocksdb-5.6.1 -> rocksdb-5.6.1 * [new tag] rocksdb-5.6.2 -> rocksdb-5.6.2 * [new tag] rocksdb-5.7.1 -> rocksdb-5.7.1 * [new tag] rocksdb-5.7.2 -> rocksdb-5.7.2 * [new tag] rocksdb-5.7.3 -> rocksdb-5.7.3 * [new tag] rocksdb-5.7.5 -> rocksdb-5.7.5 * [new tag] rocksdb-5.8 -> rocksdb-5.8 * [new tag] rocksdb-5.8.6 -> rocksdb-5.8.6 * [new tag] rocksdb-5.8.7 -> rocksdb-5.8.7 * [new tag] rocksdb-5.8.8 -> rocksdb-5.8.8 * [new tag] rocksdb-5.9.2 -> rocksdb-5.9.2 * [new tag] v1.5.7 -> v1.5.7 * [new tag] v1.5.8 -> v1.5.8 * [new tag] v1.5.8.1 -> v1.5.8.1 * [new tag] v1.5.8.2 -> v1.5.8.2 * [new tag] v1.5.9.1 -> v1.5.9.1 * [new tag] v2.0 -> v2.0 * [new tag] v2.1 -> v2.1 * [new tag] v2.2 -> v2.2 * [new tag] v2.3 -> v2.3 * [new tag] v2.4 -> v2.4 * [new tag] v2.5 -> v2.5 * [new tag] v2.6 -> v2.6 * [new tag] v2.7 -> v2.7 * [new tag] v2.8 -> v2.8 * [new tag] v3.0 -> v3.0 * [new tag] v3.1 -> v3.1 * [new tag] v3.10 -> v3.10 * [new tag] v3.11 -> v3.11 * [new tag] v3.12 -> v3.12 * [new tag] v3.12.1 -> v3.12.1 * [new tag] v3.13 -> v3.13 * [new tag] v3.13.1 -> v3.13.1 * [new tag] v3.2 -> v3.2 * [new tag] v3.3 -> v3.3 * [new tag] v3.4 -> v3.4 * [new tag] v3.5 -> v3.5 * [new tag] v3.6.1 -> v3.6.1 * [new tag] v3.7 -> v3.7 * [new tag] v3.8 -> v3.8 * [new tag] v3.9 -> v3.9 * [new tag] v4.0 -> v4.0 * [new tag] v4.1 -> v4.1 * [new tag] v4.11.2 -> v4.11.2 * [new tag] v4.13 -> v4.13 * [new tag] v4.13.5 -> v4.13.5 * [new tag] v4.2 -> v4.2 * [new tag] v4.3 -> v4.3 * [new tag] v4.3.1 -> v4.3.1 * [new tag] v4.4 -> v4.4 * [new tag] v4.4.1 -> v4.4.1 * [new tag] v4.5.1 -> v4.5.1 * [new tag] v4.6.1 -> v4.6.1 * [new tag] v4.8 -> v4.8 * [new tag] v4.9 -> v4.9 * [new tag] v5.0.1 -> v5.0.1 * [new tag] v5.0.2 -> v5.0.2 * [new tag] v5.1.2 -> v5.1.2 * [new tag] v5.1.3 -> v5.1.3 * [new tag] v5.1.4 -> v5.1.4 * [new tag] v5.10.2 -> v5.10.2 * [new tag] v5.10.3 -> v5.10.3 * [new tag] v5.10.4 -> v5.10.4 * [new tag] v5.11.2 -> v5.11.2 * [new tag] v5.11.3 -> v5.11.3 * [new tag] v5.12.2 -> v5.12.2 * [new tag] v5.12.3 -> v5.12.3 * [new tag] v5.12.4 -> v5.12.4 * [new tag] v5.12.5 -> v5.12.5 * [new tag] v5.13.1 -> v5.13.1 * [new tag] v5.13.2 -> v5.13.2 * [new tag] v5.13.3 -> v5.13.3 * [new tag] v5.13.4 -> v5.13.4 * [new tag] v5.14.2 -> v5.14.2 * [new tag] v5.14.3 -> v5.14.3 * [new tag] v5.15.10 -> v5.15.10 * [new tag] v5.16.6 -> v5.16.6 * [new tag] v5.17.2 -> v5.17.2 * [new tag] v5.18.3 -> v5.18.3 * [new tag] v5.18.4 -> v5.18.4 * [new tag] v5.2.1 -> v5.2.1 * [new tag] v5.3.3 -> v5.3.3 * [new tag] v5.3.4 -> v5.3.4 * [new tag] v5.3.5 -> v5.3.5 * [new tag] v5.3.6 -> v5.3.6 * [new tag] v5.4.10 -> v5.4.10 * [new tag] v5.4.5 -> v5.4.5 * [new tag] v5.4.6 -> v5.4.6 * [new tag] v5.4.7 -> v5.4.7 * [new tag] v5.5.1 -> v5.5.1 * [new tag] v5.5.2 -> v5.5.2 * [new tag] v5.5.3 -> v5.5.3 * [new tag] v5.5.4 -> v5.5.4 * [new tag] v5.5.5 -> v5.5.5 * [new tag] v5.5.6 -> v5.5.6 * [new tag] v5.6.1 -> v5.6.1 * [new tag] v5.6.2 -> v5.6.2 * [new tag] v5.7.1 -> v5.7.1 * [new tag] v5.7.2 -> v5.7.2 * [new tag] v5.7.3 -> v5.7.3 * [new tag] v5.7.5 -> v5.7.5 * [new tag] v5.8 -> v5.8 * [new tag] v5.8.6 -> v5.8.6 * [new tag] v5.8.7 -> v5.8.7 * [new tag] v5.8.8 -> v5.8.8 * [new tag] v5.9.2 -> v5.9.2 * [new tag] v6.0.1 -> v6.0.1 * [new tag] v6.0.2 -> v6.0.2 * [new tag] v6.1.1 -> v6.1.1 * [new tag] v6.1.2 -> v6.1.2 * [new tag] v6.10.1 -> v6.10.1 * [new tag] v6.10.2 -> v6.10.2 * [new tag] v6.11.4 -> v6.11.4 * [new tag] v6.11.6 -> v6.11.6 * [new tag] v6.12.6 -> v6.12.6 * [new tag] v6.12.7 -> v6.12.7 * [new tag] v6.13.2 -> v6.13.2 * [new tag] v6.13.3 -> v6.13.3 * [new tag] v6.14.5 -> v6.14.5 * [new tag] v6.14.6 -> v6.14.6 * [new tag] v6.15.2 -> v6.15.2 * [new tag] v6.15.4 -> v6.15.4 * [new tag] v6.15.5 -> v6.15.5 * [new tag] v6.16.3 -> v6.16.3 * [new tag] v6.16.4 -> v6.16.4 * [new tag] v6.17.3 -> v6.17.3 * [new tag] v6.19.3 -> v6.19.3 * [new tag] v6.2.2 -> v6.2.2 * [new tag] v6.2.4 -> v6.2.4 * [new tag] v6.20.3 -> v6.20.3 * [new tag] v6.22.1 -> v6.22.1 * [new tag] v6.23.2 -> v6.23.2 * [new tag] v6.23.3 -> v6.23.3 * [new tag] v6.24.2 -> v6.24.2 * [new tag] v6.25.1 -> v6.25.1 * [new tag] v6.25.3 -> v6.25.3 * [new tag] v6.26.0 -> v6.26.0 * [new tag] v6.26.1 -> v6.26.1 * [new tag] v6.27.3 -> v6.27.3 * [new tag] v6.28.2 -> v6.28.2 * [new tag] v6.29.3 -> v6.29.3 * [new tag] v6.29.4 -> v6.29.4 * [new tag] v6.29.5 -> v6.29.5 * [new tag] v6.3.6 -> v6.3.6 * [new tag] v6.4.6 -> v6.4.6 * [new tag] v6.5.2 -> v6.5.2 * [new tag] v6.5.3 -> v6.5.3 * [new tag] v6.6.3 -> v6.6.3 * [new tag] v6.6.4 -> v6.6.4 * [new tag] v6.7.3 -> v6.7.3 * [new tag] v6.8.1 -> v6.8.1 * [new tag] v7.0.1 -> v7.0.1 * [new tag] v7.0.2 -> v7.0.2 * [new tag] v7.0.3 -> v7.0.3 * [new tag] v7.0.4 -> v7.0.4 * [new tag] v7.1.1 -> v7.1.1 * [new tag] v7.1.2 -> v7.1.2 * [new tag] v7.10.2 -> v7.10.2 * [new tag] v7.2.0 -> v7.2.0 * [new tag] v7.2.2 -> v7.2.2 * [new tag] v7.3.1 -> v7.3.1 * [new tag] v7.4.3 -> v7.4.3 * [new tag] v7.4.4 -> v7.4.4 * [new tag] v7.4.5 -> v7.4.5 * [new tag] v7.5.3 -> v7.5.3 * [new tag] v7.6.0 -> v7.6.0 * [new tag] v7.7.2 -> v7.7.2 * [new tag] v7.7.3 -> v7.7.3 * [new tag] v7.7.8 -> v7.7.8 * [new tag] v7.8.3 -> v7.8.3 * [new tag] v7.9.2 -> v7.9.2 * [new tag] v8.0.0 -> v8.0.0 * [new tag] v8.1.1 -> v8.1.1 * [new tag] v8.10.0 -> v8.10.0 * [new tag] v8.10.2 -> v8.10.2 * [new tag] v8.11.3 -> v8.11.3 * [new tag] v8.3.2 -> v8.3.2 * [new tag] v8.3.3 -> v8.3.3 * [new tag] v8.4.4 -> v8.4.4 * [new tag] v8.5.3 -> v8.5.3 * [new tag] v8.5.4 -> v8.5.4 * [new tag] v8.6.7 -> v8.6.7 * [new tag] v8.7.3 -> v8.7.3 * [new tag] v8.8.1 -> v8.8.1 * [new tag] v8.9.1 -> v8.9.1 * [new tag] v9.0.0 -> v9.0.0 Updating git submodule `https://github.com/google/snappy.git` From https://github.com/google/snappy * [new ref] 6af9287fbdb913f0794d0148c6aa43b58e63c8e3 -> refs/commit/6af9287fbdb913f0794d0148c6aa43b58e63c8e3 Updating git submodule `https://github.com/google/benchmark.git` From https://github.com/google/benchmark * [new ref] d572f4777349d43653b21d6c2fc63020ab326db2 -> refs/commit/d572f4777349d43653b21d6c2fc63020ab326db2 Updating git submodule `https://github.com/google/googletest.git` From https://github.com/google/googletest * [new ref] b796f7d44681514f58a683a3a71ff17c94edb0c1 -> refs/commit/b796f7d44681514f58a683a3a71ff17c94edb0c1 error: failed to select a version for the requirement `axum = "^0.7"` candidate versions found which didn't match: 0.8.6 location searched: crates.io index required by package `axum-client-ip v0.6.1` ... which satisfies dependency `axum-client-ip = "^0.6.1"` of package `conduwuit_api v0.5.0-rc.8 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/api)` ... which satisfies path dependency `conduwuit-api` (locked to 0.5.0-rc.8) of package `conduwuit_admin v0.5.0-rc.8 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/admin)` ```
renovate force-pushed renovate/axum-monorepo from bbc5995a5c
Some checks failed
renovate/artifacts Artifact file update failure
Release Docker Image / define-variables (push) Successful in 2s
Checks / Prek / Pre-commit & Formatting (push) Successful in 15s
Checks / Rust / Format (push) Successful in 59s
Documentation / Build and Deploy Documentation (pull_request) Successful in 59s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 21s
Checks / Rust / Clippy (push) Failing after 1m53s
Checks / Rust / Cargo Test (push) Failing after 1m48s
Release Docker Image / merge (push) Has been cancelled
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Has been cancelled
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Has been cancelled
to 568cad928a
Some checks failed
renovate/artifacts Artifact file update failure
Release Docker Image / define-variables (push) Successful in 3s
Checks / Prek / Pre-commit & Formatting (push) Successful in 19s
Checks / Rust / Format (push) Successful in 45s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 20s
Documentation / Build and Deploy Documentation (pull_request) Successful in 38s
Checks / Rust / Clippy (push) Failing after 2m0s
Checks / Rust / Cargo Test (push) Failing after 1m44s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Failing after 8m33s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Failing after 8m55s
Release Docker Image / merge (push) Has been skipped
2025-08-28 17:19:21 +00:00
Compare
renovate force-pushed renovate/axum-monorepo from 568cad928a
Some checks failed
renovate/artifacts Artifact file update failure
Release Docker Image / define-variables (push) Successful in 3s
Checks / Prek / Pre-commit & Formatting (push) Successful in 19s
Checks / Rust / Format (push) Successful in 45s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 20s
Documentation / Build and Deploy Documentation (pull_request) Successful in 38s
Checks / Rust / Clippy (push) Failing after 2m0s
Checks / Rust / Cargo Test (push) Failing after 1m44s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Failing after 8m33s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Failing after 8m55s
Release Docker Image / merge (push) Has been skipped
to 0ad8c3d1e8
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 30s
Release Docker Image / define-variables (pull_request) Successful in 2s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 44s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m35s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (pull_request) Failing after 59s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (pull_request) Failing after 1m1s
Release Docker Image / merge (pull_request) Has been skipped
2025-09-10 16:16:21 +00:00
Compare
renovate force-pushed renovate/axum-monorepo from 0ad8c3d1e8
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 30s
Release Docker Image / define-variables (pull_request) Successful in 2s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 44s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m35s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (pull_request) Failing after 59s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (pull_request) Failing after 1m1s
Release Docker Image / merge (pull_request) Has been skipped
to 18c7d7b2e5
Some checks failed
renovate/artifacts Artifact file update failure
Release Docker Image / define-variables (pull_request) Successful in 19s
Documentation / Build and Deploy Documentation (pull_request) Successful in 47s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 46s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 9m1s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (pull_request) Successful in 2m40s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (pull_request) Successful in 4m27s
Release Docker Image / merge (pull_request) Successful in 9s
2025-09-10 17:06:37 +00:00
Compare
Owner
https://forgejo.ellis.link/continuwuation/ruwuma/src/branch/dash_uwu/axum-0.8
renovate force-pushed renovate/axum-monorepo from 18c7d7b2e5
Some checks failed
renovate/artifacts Artifact file update failure
Release Docker Image / define-variables (pull_request) Successful in 19s
Documentation / Build and Deploy Documentation (pull_request) Successful in 47s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 46s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 9m1s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (pull_request) Successful in 2m40s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (pull_request) Successful in 4m27s
Release Docker Image / merge (pull_request) Successful in 9s
to a7b61da235
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 29s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 53s
Release Docker Image / Setup Variables (pull_request) Successful in 2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 8m15s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m4s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m46s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 8s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 1m21s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m19s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 10s
2025-09-12 13:29:44 +00:00
Compare
renovate force-pushed renovate/axum-monorepo from a7b61da235
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 29s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 53s
Release Docker Image / Setup Variables (pull_request) Successful in 2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 8m15s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m4s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m46s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 8s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 1m21s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m19s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 10s
to 137cd86e9f
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 46s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m47s
Release Docker Image / Build linux-amd64 (release) (pull_request) Has been cancelled
Release Docker Image / Build linux-arm64 (release) (pull_request) Has been cancelled
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Has been cancelled
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Has been cancelled
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Has been cancelled
Release Docker Image / Create Max-Perf Manifest (pull_request) Has been cancelled
Update flake hashes / update-flake-hashes (pull_request) Successful in 2m25s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 5m56s
2025-09-23 03:52:59 +00:00
Compare
renovate force-pushed renovate/axum-monorepo from 137cd86e9f
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 46s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m47s
Release Docker Image / Build linux-amd64 (release) (pull_request) Has been cancelled
Release Docker Image / Build linux-arm64 (release) (pull_request) Has been cancelled
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Has been cancelled
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Has been cancelled
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Has been cancelled
Release Docker Image / Create Max-Perf Manifest (pull_request) Has been cancelled
Update flake hashes / update-flake-hashes (pull_request) Successful in 2m25s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 5m56s
to 7f57fc5457
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 42s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m37s
Update flake hashes / update-flake-hashes (pull_request) Failing after 16s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 2m53s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 3m2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 3m59s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 21s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 2m50s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 3m24s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 15s
2025-09-29 05:03:30 +00:00
Compare
renovate force-pushed renovate/axum-monorepo from 7f57fc5457
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 42s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m37s
Update flake hashes / update-flake-hashes (pull_request) Failing after 16s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 2m53s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 3m2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 3m59s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 21s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 2m50s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 3m24s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 15s
to d0638a2b3a
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 43s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m43s
Update flake hashes / update-flake-hashes (pull_request) Failing after 10s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m23s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 2m21s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 2m59s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 17s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m53s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 2m2s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 13s
2025-10-01 05:03:37 +00:00
Compare
renovate force-pushed renovate/axum-monorepo from d0638a2b3a
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 43s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m43s
Update flake hashes / update-flake-hashes (pull_request) Failing after 10s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m23s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 2m21s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 2m59s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 17s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m53s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 2m2s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 13s
to 35dc45987f
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m22s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m2s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 3m39s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 3m56s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m4s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 12m16s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 14s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 1m30s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m24s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 25s
2025-10-15 19:04:08 +00:00
Compare
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m22s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m2s
Required
Details
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 3m39s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 3m56s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m4s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 12m16s
Required
Details
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 14s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 1m30s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m24s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 25s
This pull request is blocked because it's outdated.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/axum-monorepo:renovate/axum-monorepo
git switch renovate/axum-monorepo
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Depends on
#1120 chore: Migrate to axum 0.8
continuwuation/continuwuity
Reference
continuwuation/continuwuity!932
No description provided.