Fix has_redisearch await and add py.typed marker#771
Merged
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
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.
Fixes #531, #503, and closes #654, #689, #690.
Changes
Fix
has_redisearchmissing await (Coroutine 'has_redisearch' was never awaited #531) - Added missingawaitwhen callinghas_redis_json()insidehas_redisearch(). This was causing "coroutine was never awaited" warnings.Add
py.typedmarker (Provide types in a mypy compatible format #503) - Added PEP 561 marker file so mypy recognizes the package as typed. Users no longer need to addignore_missing_imports = truefor redis-om.Update migration guide - Added Python 3.10+ and Pydantic v2 requirements to the 0.x to 1.0 migration guide.
Add 1.0 release notes - Created comprehensive release notes documenting all breaking changes, new features, and bug fixes.
Update spellcheck wordlist - Added technical terms used in documentation.
Issues Closed