fix(deps): update all non-major dependencies #1727
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
12.1.0
->12.2.0
12.1.0
->12.2.0
v1.11.3
->v1.12.0
5.2.0
->5.3.0
0.10.0
->0.11.0
Release Notes
vueuse/vueuse (@vueuse/core)
v12.2.0
Compare Source
🚀 Features
symmetric
option - by @wangliangxin, wangliangxin3 and @antfu in https://github.com/vueuse/vueuse/issues/4146 (46fdc)autoConnect
option to align withuseWebSocket
- by @ferferga and @antfu in https://github.com/vueuse/vueuse/issues/4204 (230f8)🐞 Bug Fixes
View changes on GitHub
meilisearch/meilisearch (getmeili/meilisearch)
v1.12.0
: 🦗Compare Source
Meilisearch v1.12 introduces significant indexing speed improvements, almost halving the time required to index large datasets. This release also introduces new settings to customize and potentially further increase indexing speed.
🧰 All official Meilisearch integrations (including SDKs, clients, and other tools) are compatible with this Meilisearch release. Integration deployment happens between 4 to 48 hours after a new version becomes available.
Some SDKs might not include all new features. Consult the project repository for detailed information. Is a feature you need missing from your chosen SDK? Create an issue letting us know you need it, or, for open-source karma points, open a PR implementing it (we'll love you for that ❤️).
New features and updates 🔥
Improve indexing speed
Indexing time is improved across the board!
The new indexer also makes task cancellation faster.
Done by @dureuill, @ManyTheFish, and @Kerollmops in #4900.
New index settings: use
facetSearch
andprefixSearch
to improve indexing speedv1.12 introduces two new index settings:
facetSearch
andprefixSearch
.Both settings allow you to skip parts of the indexing process. This leads to significant improvements to indexing speed, but may negatively impact search experience in some use cases.
Done by @ManyTheFish in #5091
facetSearch
Use this setting to toggle facet search:
The default value for
facetSearch
istrue
. When set tofalse
, this setting disables facet search for all filterable attributes in an index.prefixSearch
Use this setting to configure the ability to search a word by prefix on an index:
prefixSearch
accepts one of the following values:"indexingTime"
: enables prefix processing during indexing. This is the default Meilisearch behavior"disabled"
: deactivates prefix search completelyDisabling prefix search means the query
he
will no longer match the wordhello
. This may significantly impact search result relevancy, but speeds up the indexing process.New API route:
/batches
The new
/batches
endpoint allow you to query information about task batches.GET
/batches
returns a list of batch objects:curl -X GET 'http://localhost:7700/batches'
This endpoint accepts the same parameters as
GET
/tasks
route, allowing you to narrow down which batches you want to see. Parameters used withGET
/batches
apply to the tasks, not the batches themselves. For example,GET /batches?uid=0
returns batches containing tasks with ataskUid
of0
, not batches with abatchUid
of0
.You may also query
GET
/batches/:uid
to retrieve information about a single batch object:curl -X GET 'http://localhost:7700/batches/BATCH_UID'
/batches/:uid
does not accept any parameters.Batch objects contain the following fields:
Additionally, task objects now include a new field,
batchUid
. Use this field together with/batches/:uid
to retrieve data on a specific batch.Done by @irevoire in #5060, #5070, #5080
Other improvements
GET
/tasks
:reverse
. Ifreverse
is set totrue
, tasks will be returned in reversed order, from oldest to newest tasks. Done by @irevoire in #5048showMatchesPosition
set totrue
give a single location for the whole phrase @flevi29 in #4928indices
field to_matchesPosition
specifying which array elements contain the matches by @LukasKalbertodt in #5005vectorStore
change: field distribution no longer contains_vectors
. Its value used to be incorrect, and there is no current use case for the fixed, most likely empty, value. Done as part of #4900Fixes 🐞
attributesToSearchOn
in #5062 by @ManyTheFishMisc
delete_index.rs
by @DerTimonius in #4963create_index.rs
by @DerTimonius in #4962get_documents.rs
by @PedroTurik in #5025formatted.rs
by @PedroTurik in #5043❤️ Thanks again to our external contributors:
juhaku/utoipa (utoipa)
v5.3.0
Compare Source
What's New 💎 🆕 🎉
Thanks to the remarkable community members of their hard work and hours spend on changes to the utoipa. This release would not have been possible without you 🎉
aa0d27f
) Update next release versions (#1250) @juhakua0bfe11
) Use a re-exported serde_json dependency in macros (#1243) @Sufflope2671aec
) Add default to Example string fields (#1218) @Feiryn7cf06e6
) Fix diverging axum route and openapi spec (#1199) @boemjayb5a0b11
) Update schema generics compose (#1202) @juhaku44ded6b
) Fix typo (#1194) @dpytayloFull change log
ismail9k/vue3-carousel (vue3-carousel)
v0.11.0
Compare Source
Configuration
📅 Schedule: Branch creation - "before 5am every weekday,every weekend" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.