From 0c260ee242263ba31f32a5f282da417b9357cf68 Mon Sep 17 00:00:00 2001 From: Aditya Nambiar Date: Wed, 6 Nov 2024 12:21:49 -0800 Subject: [PATCH] query_offline: Use thunder by default (#599) --- fennel/CHANGELOG.md | 3 +++ fennel/client/client.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/fennel/CHANGELOG.md b/fennel/CHANGELOG.md index 807536e2..9bfdbdce 100644 --- a/fennel/CHANGELOG.md +++ b/fennel/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [1.5.48] - 2024-11-06 +- Use v2 by default in query_offline + ## [1.5.47] - 2024-10-31 - Add support for certificate based authentication for HTTP sink diff --git a/fennel/client/client.py b/fennel/client/client.py index 9ee9d217..a3de088a 100644 --- a/fennel/client/client.py +++ b/fennel/client/client.py @@ -461,7 +461,7 @@ def query_offline( input_s3: Optional[S3Connector] = None, output_s3: Optional[S3Connector] = None, feature_to_column_map: Optional[Dict[Feature, str]] = None, - use_v2: bool = False, + use_v2: bool = True, ) -> Dict[str, Any]: """Extract point in time correct values of output features. diff --git a/pyproject.toml b/pyproject.toml index 90a1ca48..a355b927 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fennel-ai" -version = "1.5.47" +version = "1.5.48" description = "The modern realtime feature engineering platform" authors = ["Fennel AI "] packages = [{ include = "fennel" }]