Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AlboCode/redis-om-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: redis/redis-om-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Dec 10, 2025

  1. Fix Pydantic 2.12+ compatibility for custom FieldInfo with Annotated …

    …types (redis#727)
    
    Fix Pydantic 2.12+ compatibility for custom FieldInfo with Annotated types
    
    Pydantic 2.12+ converts custom FieldInfo subclasses to plain PydanticFieldInfo
    for fields using Annotated types with metadata (like Coordinates). This caused
    custom attributes like index, sortable, etc. to be lost.
    
    Fix: Capture original FieldInfo objects before Pydantic processes them and
    restore them when Pydantic has converted them to plain PydanticFieldInfo.
    
    * Exclude mypy on PyPy to avoid librt build failure
    
    mypy 1.19+ depends on librt which only has CPython wheels.
    When Poetry tries to install on PyPy, it falls back to building
    from source, which fails because librt uses CPython-specific C APIs.
    abrookins authored Dec 10, 2025
    Configuration menu
    Copy the full SHA
    65d3bcf View commit details
    Browse the repository at this point in the history
Loading