Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 19 additions & 44 deletions quickwit/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quickwit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ username = "0.2"
# We cannot upgrade to utoipa 5.0+ due to significant breaking changes:
# 1. The `OpenApi` struct structure changed (fields are private), breaking our manual merging logic in openapi.rs
# in `quickwit-serve`. This code is fundamentally incompatible with version 5.x.
utoipa = { version = "4.2", features = ["time", "ulid"] }
utoipa = { version = "5.5", features = ["time", "ulid"] }

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Migrate the custom ToSchema implementation before bumping

When quickwit-doc-mapper is compiled, #[quickwit_macros::serde_multikey] still generates impl<'__s> utoipa::ToSchema<'__s> with the utoipa 4 tuple-returning schema() signature (quickwit-macros/src/lib.rs:111-119). Utoipa 5 removes that lifetime parameter and returns the schema directly, so selecting 5.5 here makes those generated implementations fail to compile and blocks the workspace; update the macro and other v5-incompatible API usage before this bump, or retain v4. The repository specifically requires cargo check after editing Cargo.toml.

AGENTS.md reference: AGENTS.md:L121-L121

Useful? React with 👍 / 👎.

unicode-segmentation = "1.13"
uuid = { version = "1.23", features = ["v4", "serde"] }
vrl = { version = "0.33", default-features = false, features = [
Expand Down
Loading