-
Notifications
You must be signed in to change notification settings - Fork 94
Remove in the next version non-exitant experimental feature #638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
meili-bors
merged 1 commit into
meilisearch:bump-meilisearch-v1.13
from
CommanderStorm:remove-set_vector_store
Feb 5, 2025
Merged
Remove in the next version non-exitant experimental feature #638
meili-bors
merged 1 commit into
meilisearch:bump-meilisearch-v1.13
from
CommanderStorm:remove-set_vector_store
Feb 5, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CommanderStorm
commented
Jan 24, 2025
@@ -29,7 +29,7 @@ pub fn generate_tenant_token( | |||
return Err(Error::InvalidUuid4Version); | |||
} | |||
|
|||
if expires_at.map_or(false, |expires_at| OffsetDateTime::now_utc() > expires_at) { | |||
if expires_at.is_some_and(|expires_at| OffsetDateTime::now_utc() > expires_at) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
irevoire
approved these changes
Feb 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfecto, thanks for the contribution @CommanderStorm 👍
bors merge
Build succeeded: |
926749f
into
meilisearch:bump-meilisearch-v1.13
7 checks passed
meili-bors bot
added a commit
that referenced
this pull request
Feb 18, 2025
645: Update version for the next release (v0.28) r=Strift a=meili-bot _This PR is auto-generated._ The automated script updates the version of meilisearch-rust to a new version: "v0.28" 👇 CHANGELOG ## ✨ New - [AI-powered search](https://www.meilisearch.com/docs/learn/ai_powered_search/getting_started_with_ai_search) is now stable `@/Strift` ## 🚀 Enhancements * Remove in the next version non-existent experimental feature (#638) `@/CommanderStorm` * Add support for language settings and search parameter (#620) `@/necocen` * Support reverse param in get_tasks (#633) `@/ellnix` * Add `indices` to `MatchRange` (#632) `@/LukasKalbertodt` * Changes related to the next Meilisearch release (v1.13) (#637) ## ⚙️ Maintenance/misc * Use resolver = "2" (#623) `@/dureuill` * Fix linting errors (#630) `@/Strift` * Fix broken links (#636) `@/ellnix` * Fix separator token code samples (#640) `@/ellnix` * Make doc-comments consistently be doc-comments (#639) `@/CommanderStorm` Thanks again to `@/CommanderStorm,` `@/LukasKalbertodt,` `@/Strift,` `@/dureuill,` `@/ellnix,` and `@n/ecocen!` 🎉 Co-authored-by: meili-bot <[email protected]> Co-authored-by: Laurent Cazanove <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Pull Request
Related issue
related to #637
What does this PR do?
PR checklist
Please check if your PR fulfills the following requirements:
Thank you so much for contributing to Meilisearch!