Skip to content

Commit b04bb28

Browse files
Renovate BotGusted
authored andcommitted
Update module github.com/blevesearch/bleve/v2 to v2.5.0 (forgejo) (go-gitea#7468)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/blevesearch/bleve/v2](https://github.com/blevesearch/bleve) | require | minor | `v2.4.4` -> `v2.5.0` | --- ### Release Notes <details> <summary>blevesearch/bleve (github.com/blevesearch/bleve/v2)</summary> ### [`v2.5.0`](https://github.com/blevesearch/bleve/releases/tag/v2.5.0) [Compare Source](blevesearch/bleve@v2.4.4...v2.5.0) ##### Bug Fixes - Exact hits to score higher than fuzzy hits, with blevesearch/bleve#2056 - Fix boosting during hybrid search that involves text + nearest neighbor, with blevesearch/bleve#2127 - Addressed bug in IP field handling while highlighting, with blevesearch/bleve#2142 - Graceful error handling within registry, with blevesearch/bleve#2151 - `http/` package (meant for demo purposes) removed from repository to remove vulnerability - [CVE-2022-31022](GHSA-9w9f-6mg8-jp7w), relocated to within https://github.com/blevesearch/bleve-explorer - Geo radius queries will now advertise distances (within sort values) in readable format, with blevesearch/bleve#2137 ##### Improvements - Vector search requires `faiss` dynamic library to be built from [blevesearch/faiss@352484e](https://github.com/blevesearch/faiss/tree/352484e0fc9d1f8f46737841efe5f26e0f383f71) which is a modified version of [v1.10.0](https://github.com/facebookresearch/faiss/releases/tag/v1.10.0) - Support for **BM25 scoring**, see: [scoring.md](https://github.com/blevesearch/bleve/blob/v2.5.0/docs/scoring.md#bm25) - Support for **synonyms' search**, see: [synonyms.md](https://github.com/blevesearch/bleve/blob/v2.5.0/docs/synonyms.md) - **Significant performance improvements in pre-filtered vector search**, with blevesearch/bleve#2169 + dependent changes - `auto` fuzziness detection with blevesearch/bleve#2060 - Ability to affect ingestion/drain rate by tuning persister workers with blevesearch/bleve#2100 - Additional config in merge policy for improved merger behavior, with blevesearch/bleve#2134 - Geo improvements: footprint reduction for polygons, better validation and graceful error handling, with blevesearch/bleve#2162 + blevesearch/bleve#2158 + blevesearch/bleve#2165 - Upgrade to RoaringBitmap/roaring@v2.4.5, etcd.io/bbolt@v1.4.0 - More metrics ##### Milestone - [v2.5.0](https://github.com/blevesearch/bleve/milestone/24) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - "* 0-3 * * *" (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMjIuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIyMi4xIiwidGFyZ2V0QnJhbmNoIjoiZm9yZ2VqbyIsImxhYmVscyI6WyJkZXBlbmRlbmN5LXVwZ3JhZGUiLCJ0ZXN0L25vdC1uZWVkZWQiXX0=--> Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7468 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Reviewed-by: Shiny Nematoda <snematoda@noreply.codeberg.org> Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
1 parent cb4ef44 commit b04bb28

File tree

7 files changed

+55
-57
lines changed

7 files changed

+55
-57
lines changed

assets/go-licenses.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ require (
2525
github.com/SaveTheRbtz/zstd-seekable-format-go/pkg v0.7.2
2626
github.com/alecthomas/chroma/v2 v2.16.0
2727
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
28-
github.com/blevesearch/bleve/v2 v2.4.4
28+
github.com/blevesearch/bleve/v2 v2.5.0
2929
github.com/buildkite/terminal-to-html/v3 v3.16.8
3030
github.com/caddyserver/certmagic v0.22.2
3131
github.com/chi-middleware/proxy v1.1.1
@@ -134,30 +134,30 @@ require (
134134
github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.5.0 // indirect
135135
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 // indirect
136136
github.com/Microsoft/go-winio v0.6.2 // indirect
137-
github.com/RoaringBitmap/roaring v1.9.3 // indirect
137+
github.com/RoaringBitmap/roaring/v2 v2.4.5 // indirect
138138
github.com/andybalholm/brotli v1.1.1 // indirect
139139
github.com/andybalholm/cascadia v1.3.3 // indirect
140140
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
141141
github.com/aymerick/douceur v0.2.0 // indirect
142142
github.com/beorn7/perks v1.0.1 // indirect
143-
github.com/bits-and-blooms/bitset v1.13.0 // indirect
144-
github.com/blevesearch/bleve_index_api v1.1.12 // indirect
143+
github.com/bits-and-blooms/bitset v1.22.0 // indirect
144+
github.com/blevesearch/bleve_index_api v1.2.7 // indirect
145145
github.com/blevesearch/geo v0.1.20 // indirect
146-
github.com/blevesearch/go-faiss v1.0.24 // indirect
146+
github.com/blevesearch/go-faiss v1.0.25 // indirect
147147
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
148148
github.com/blevesearch/gtreap v0.1.1 // indirect
149149
github.com/blevesearch/mmap-go v1.0.4 // indirect
150-
github.com/blevesearch/scorch_segment_api/v2 v2.2.16 // indirect
150+
github.com/blevesearch/scorch_segment_api/v2 v2.3.9 // indirect
151151
github.com/blevesearch/segment v0.9.1 // indirect
152152
github.com/blevesearch/snowballstem v0.9.0 // indirect
153153
github.com/blevesearch/upsidedown_store_api v1.0.2 // indirect
154-
github.com/blevesearch/vellum v1.0.10 // indirect
155-
github.com/blevesearch/zapx/v11 v11.3.10 // indirect
156-
github.com/blevesearch/zapx/v12 v12.3.10 // indirect
157-
github.com/blevesearch/zapx/v13 v13.3.10 // indirect
158-
github.com/blevesearch/zapx/v14 v14.3.10 // indirect
159-
github.com/blevesearch/zapx/v15 v15.3.16 // indirect
160-
github.com/blevesearch/zapx/v16 v16.1.9-0.20241217210638-a0519e7caf3b // indirect
154+
github.com/blevesearch/vellum v1.1.0 // indirect
155+
github.com/blevesearch/zapx/v11 v11.4.1 // indirect
156+
github.com/blevesearch/zapx/v12 v12.4.1 // indirect
157+
github.com/blevesearch/zapx/v13 v13.4.1 // indirect
158+
github.com/blevesearch/zapx/v14 v14.4.1 // indirect
159+
github.com/blevesearch/zapx/v15 v15.4.1 // indirect
160+
github.com/blevesearch/zapx/v16 v16.2.2 // indirect
161161
github.com/boombuler/barcode v1.0.1 // indirect
162162
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874 // indirect
163163
github.com/caddyserver/zerossl v0.1.3 // indirect
@@ -253,7 +253,7 @@ require (
253253
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
254254
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
255255
github.com/zeebo/blake3 v0.2.4 // indirect
256-
go.etcd.io/bbolt v1.3.9 // indirect
256+
go.etcd.io/bbolt v1.4.0 // indirect
257257
go.opencensus.io v0.24.0 // indirect
258258
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
259259
go.opentelemetry.io/contrib/detectors/gcp v1.34.0 // indirect

0 commit comments

Comments
 (0)