From 631fa62428dc18bec3ff3cdb5030d86ef194aa3c Mon Sep 17 00:00:00 2001 From: Niko Maroulis Date: Sat, 13 Jun 2026 11:53:27 -0400 Subject: [PATCH] Update tantivy 0.26.0 -> 0.26.1 Patch release with aggregation memory/perf fixes; no breaking API changes. Verified: release build compiles clean, full suite passes (236 tests). --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- native/muninn/Cargo.lock | 6 +++--- native/muninn/Cargo.toml | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2630ba0..7d837da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.5.5] - 2026-06-13 + +### Changed +- Updated Tantivy from 0.26.0 to 0.26.1 (crates.io) + - Aggregation memory accounting fix: composite/parent-bucket collectors now measure only the active bucket instead of summing across all buckets + - Minor aggregation performance improvements (inlining) + - No public API changes + ## [0.5.4] - 2026-04-11 ### Changed diff --git a/README.md b/README.md index 58904ab..b1af7e9 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Add `muninn` to your `mix.exs`: ```elixir def deps do [ - {:muninn, "~> 0.4.0"} + {:muninn, "~> 0.5.5"} ] end ``` diff --git a/native/muninn/Cargo.lock b/native/muninn/Cargo.lock index a476af6..206f1a0 100644 --- a/native/muninn/Cargo.lock +++ b/native/muninn/Cargo.lock @@ -507,7 +507,7 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "muninn" -version = "0.5.3" +version = "0.5.4" dependencies = [ "regex", "rustler", @@ -844,9 +844,9 @@ dependencies = [ [[package]] name = "tantivy" -version = "0.26.0" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "778da245841522199d512d19511b041425d8cff3a8f262b4e1516fceb050289a" +checksum = "edde6a10743fff00a4e1a8c9ef020bf5f3cbad301b7d2d39f2b07f123c4eac07" dependencies = [ "aho-corasick", "arc-swap", diff --git a/native/muninn/Cargo.toml b/native/muninn/Cargo.toml index 576dec1..ad23534 100644 --- a/native/muninn/Cargo.toml +++ b/native/muninn/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] rustler = "0.37.0" -tantivy = "0.26.0" +tantivy = "0.26.1" regex = "1.11" serde_json = "1"