Skip to content

v0.65.0

Latest

Choose a tag to compare

@franciscojavierarceo franciscojavierarceo released this 20 Jul 13:28

0.65.0 (2026-07-20)

Bug Fixes

  • add debug logging for FIPS mode detection fallback (6c1b24e)
  • Build embedded UI from local source (#6525) (3500349)
  • Bump decommissioned Snowflake Python UDF runtime from 3.9 to 3.10 (#6606) (#6608) (10341e4)
  • configure FIPS-compliant gRPC cipher suites for offline server (6bc80a2)
  • Correct Flink PyArrow dependency constraints (#6604) (70a9751)
  • Fix ValueError in signal handling for Trino worker threads (#6428) (506d919)
  • Fixed monitoring page issues (7946018)
  • Make pytest config compatible with newer pytest (#5779) (a57ea33)
  • Replace comma with space in DynamoDB-incompatible label tag value (51e3a16)
  • Resolve UI build warnings (#6529) (abe92af)
  • Unblock nightly UI build (#6570) (f296d4b)
  • Use LONGBLOB for SQL registry proto columns on MySQL (#6566) (7e4beb2)

Features

  • Add click-to-zoom lightbox for blog post images (#6575) (1cb23fd)
  • Add dark mode support to website and blog (#6589) (7358fb8)
  • Add OnlineStore for Aerospike (#6532) (9cd35e1)
  • Add OpenLineage Consumer to Feast - receive, store, and visualize cross-producer lineage (#6549) (a834126)
  • Add registry list feature views by updated since (#6092) (#6093) (006c606)
  • Add ScyllaDB online store with vector search (#6508) (1669661)
  • Added compute and jobs UI (ba2c05c)
  • Added Iceberg REST Catalog data source support (e0a8573)
  • Bring Your Own Spark - SparkApplication (#6550) (dcd496f)
  • cassandra: Add multi-DC support via per-datacenter execution profiles (#6434) (0de9196)
  • Enhanced data source creation as a visual catalog with type-specific forms (#6557) (d6acbba)
  • Enhanced datasets UI functionality (de11152)
  • Implement RegistryServer.Proto RPC with RBAC-filtered response (#6558) (#6552) (0d02614)
  • New zoned timestamp feature type (#6536) (#6537) (eb042f0)
  • operator: Auto-create RBAC for spark_application batch engine (#6597) (f487b37)
  • operator: integrate cluster TLS profile for OCP 5.0 compliance (43263a6)
  • Permissions CRUD UI and OIDC auth integration in UI (6511da1)
  • Retrieve historical features from BigQuery without entity_df (#6569) (cd5f6bb), closes #6558 #6552
  • spark: SparkSource query+path and pre-computed offline read for BatchFeatureView (#6440) (4dc8757)

BREAKING CHANGES

  • total_timeout_ms is renamed to batch_total_timeout_ms. Config files using the old name must be updated. No default value change.

Docs updated (reference + perf-tuning guide) with a short explainer on the per-attempt vs total deadline distinction. Two new unit tests pin the policy wiring: socket_timeout_ms propagates to all three scopes, and is omitted (not injected as None) when unset.

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • refactor(aerospike): use MAP_KEY_ORDERED, KEY_DIGEST, and instance-scoped client

Cheap-win cleanups flagged in review, all touching the same small patch of write-path and lifecycle code.

  • Map CDTs are now created with MAP_KEY_ORDERED. map_get_by_key / map_remove_by_key on an ordered map are O(log N) in the map size instead of O(N); matters on reads of wide feature views and on the update() background scan (which walks every record in the project's set).

  • Writes drop POLICY_KEY_SEND and rely on the client default (POLICY_KEY_DIGEST). The serialized entity key is no longer stored alongside each record, saving per-record storage the read path never consumes (batch_operate preserves request order; results are paired back by zip in online_read).

  • _client moves from a class attribute to an instance attribute (set in init). Previously two AerospikeOnlineStore instances could share the cached client through class state until one wrote self._client. With the instance attribute the state is always per-instance from construction.

  • Drop MongoDB references from class docstrings and comments (they referred to how the storage layout was derived rather than documenting current behavior). Also rewrite the _build_batch_writes docstring to describe the policies applied on the write path.

Unit test assertions for the write-path record are updated: bw.policy is now None (client default applies) and map ops carry map_policy={'map_order': MAP_KEY_ORDERED}. All three docker-backed integration tests still pass end-to-end (cross-FV upsert, update() background scan, full feature-store round-trip), so the read/write shape survives the ordering and policy changes against a real server.

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • feat(aerospike): add per-FV namespace/set overrides and prewriting hook

Adds three configuration knobs to AerospikeOnlineStoreConfig:

  • namespace_overrides: pin individual feature views to a different
    Aerospike namespace (e.g. RAM-only vs. SSD-backed) without splitting
    the project across stores.
  • set_overrides: place a feature view in its own set so admin ops on
    it (truncate, scan-based deletes during feast apply) do not touch
    records of other views.
  • prewriting_hook: import-string-resolved callable invoked once per
    online_write_batch with the rows about to be written, returning the
    rows that actually go on the wire. Resolved and cached on first use;
    returning [] short-circuits the wire call.

Read, write, update and teardown paths all honour the per-FV ns/set
resolution. update() groups dropped feature views by their resolved
(ns, set) pair and issues one background scan per group. teardown()
truncates every unique (ns, set) pair the project may have written to,
including the store-level default.

Adds 22 unit tests for the new behaviour and updates 3 existing call
sites of _build_batch_writes for the new namespace= parameter. Adds a
sample hook module under examples/online_store/aerospike_overrides_and_hooks/
and corresponding sections in docs/reference/online-stores/aerospike.md.

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • test: update aerospike image tag

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • chore: sync README template and secrets baseline after master merge

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • chore: fix secrets baseline line number for v1 operator types

Adding aerospike to the feast-operator enum shifted the allowlisted
SecretRef entry in api/v1/featurestore_types.go by one line.

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • docs: update aerospike docs

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • fix(aerospike): wire batch max_retries and fix empty projection handling

Copilot review feedback on PR #6532:

  • Add max_retries to the batch client policy (batch_operate/batch_write path)
  • Treat empty projected feature maps as present FV slots (is not None)
  • Return {} from _normalize_projected_features([]) instead of None
  • Fix projection unit test mock/assertions
  • Correct prewriting_hook config docstring

Co-authored-by: Copilot Autofix powered by AI 175728472+Copilot@users.noreply.github.com
Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • style(aerospike): format online_read docs assignment for ruff

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • chore: update pixi.lock for aerospike optional extra

Regenerate the v6 lockfile with Pixi v0.63.1 after adding the aerospike extra to pyproject.toml.

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com

  • fix(aerospike): add client init lock and batch chunking

Guard lazy client creation with a lock to avoid connection leaks under concurrent first use, and chunk batch reads/writes by batch_max_records so large materializations stay under Aerospike server batch limits.

Signed-off-by: Valentyn Kahamlyk valentin.kagamlyk@gmail.com