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: feast-dev/feast
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: release-3.2
Choose a base ref
...
head repository: feast-dev/feast
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 10 commits
  • 56 files changed
  • 9 contributors

Commits on Jan 6, 2026

  1. fix(redis): Preserve millisecond timestamp precision for Redis online…

    … store (#5807)
    
    * Update redis.py
    
    Add millisecond-precision timestamp support to Redis online store
    
    Signed-off-by: Jatin Kumar <jatink.5251@gmail.com>
    
    * Update redis.py
    
    sub-second precision when returning timestamps to client
    
    Signed-off-by: Jatin Kumar <jatink.5251@gmail.com>
    
    * Update redis.py
    
    fix(redis): preserve millisecond timestamp precision
    
    Signed-off-by: Jatin Kumar <jatink.5251@gmail.com>
    
    * Update redis.py
    
    fix: Remove whitespace on blank lines (W293)
    
    Signed-off-by: Jatin Kumar <jatink.5251@gmail.com>
    
    ---------
    
    Signed-off-by: Jatin Kumar <jatink.5251@gmail.com>
    jatin5251 authored Jan 6, 2026
    Configuration menu
    Copy the full SHA
    9e3f213 View commit details
    Browse the repository at this point in the history
  2. feat: Add GCS registry store in Go feature server (#5818)

    Signed-off-by: samuelkim7 <samuel.kim@goflink.com>
    samuelkim7 authored Jan 6, 2026
    Configuration menu
    Copy the full SHA
    1dc2be5 View commit details
    Browse the repository at this point in the history
  3. chore: Refactor some unit tests into integration tests (#5820)

    * chore: Refactor some unit tests into integration tests
    
    Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
    
    * chore: Refactor some unit tests into integration tests
    
    Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
    
    * rename TestConfig
    
    Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
    
    * rename TestConfig
    
    Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
    
    * add integration flag
    
    Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
    
    * update paths
    
    Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
    
    * update paths
    
    Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
    
    ---------
    
    Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
    franciscojavierarceo authored Jan 6, 2026
    Configuration menu
    Copy the full SHA
    bbba34c View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2026

  1. test: Remove e2e_rhoai package tests

    Signed-off-by: Srihari <svenkata@redhat.com>
    Srihari1192 authored and ntkathole committed Jan 7, 2026
    Configuration menu
    Copy the full SHA
    b8d7562 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2026

  1. Configuration menu
    Copy the full SHA
    11122ce View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2026

  1. chore(deps): Bump urllib3 from 2.6.2 to 2.6.3 in /sdk/python/requirem…

    …ents (#5822)
    
    chore(deps): Bump urllib3 in /sdk/python/requirements
    
    Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.6.2 to 2.6.3.
    - [Release notes](https://github.com/urllib3/urllib3/releases)
    - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
    - [Commits](urllib3/urllib3@2.6.2...2.6.3)
    
    ---
    updated-dependencies:
    - dependency-name: urllib3
      dependency-version: 2.6.3
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 12, 2026
    Configuration menu
    Copy the full SHA
    6e401d9 View commit details
    Browse the repository at this point in the history
  2. chore(deps): Bump golang.org/x/crypto from 0.43.0 to 0.45.0 (#5819)

    Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.43.0 to 0.45.0.
    - [Commits](golang/crypto@v0.43.0...v0.45.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/crypto
      dependency-version: 0.45.0
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 12, 2026
    Configuration menu
    Copy the full SHA
    ef3dc05 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2026

  1. fix: Update model_validator to use instance method signature (Pydanti…

    …c v2.12 deprecation) (#5825)
    
    fix: update model_validator to use instance method signature
    
    Pydantic v2.12 deprecated using @model_validator(mode='after') with a
    classmethod-style signature (cls, values). This change updates the
    _validate_credentials method to use the correct instance method signature
    (self), which:
    
    - Eliminates the deprecation warning
    - Uses direct attribute access (self.username) instead of dict access
    - Returns self instead of values
    
    This is a non-breaking change that maintains the same validation logic
    while conforming to Pydantic v2.12+ best practices.
    
    Fixes deprecation warning:
    'Using @model_validator with mode="after" on a classmethod is deprecated'
    
    Signed-off-by: WhiteLotusLA <calvin.devereaux@gmail.com>
    WhiteLotusLA authored Jan 13, 2026
    Configuration menu
    Copy the full SHA
    3c10b6e View commit details
    Browse the repository at this point in the history
  2. fix: Search API to return all matching tags in matched_tags field (#5843

    )
    
    * fix: Search API to return all matching tags in matched_tags field
    
    Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
    
    * Added unit tests to check if multiple tags are returned if they are matching the query
    
    Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
    
    ---------
    
    Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
    aniketpalu authored Jan 13, 2026
    Configuration menu
    Copy the full SHA
    de37f66 View commit details
    Browse the repository at this point in the history
  3. fix: Denial by default to all resources when no permissions set (#5663)

    * Denial by default to all resources when no permissions set
    
    Signed-off-by: jyejare <jyejare@redhat.com>
    
    filter only for named patterns
    No matching permissions are handled
    
    * Tests are updated to match the new behavior
    
    Signed-off-by: jyejare <jyejare@redhat.com>
    
    ---------
    
    Signed-off-by: jyejare <jyejare@redhat.com>
    jyejare authored Jan 13, 2026
    Configuration menu
    Copy the full SHA
    1524f1c View commit details
    Browse the repository at this point in the history
Loading