From 65e67edd98d44fba46e1c8d02666506f17aabd5f Mon Sep 17 00:00:00 2001 From: Rodrigo Barbosa Date: Thu, 3 Sep 2026 08:33:56 -0300 Subject: [PATCH 1/2] Fix project search membership filter type --- roboflow/core/project.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roboflow/core/project.py b/roboflow/core/project.py index a5bf990f..dae10928 100644 --- a/roboflow/core/project.py +++ b/roboflow/core/project.py @@ -672,7 +672,7 @@ def search( limit: int = 100, tag: Optional[str] = None, class_name: Optional[str] = None, - in_dataset: Optional[str] = None, + in_dataset: Optional[bool] = None, batch: bool = False, batch_id: Optional[str] = None, fields: Optional[List[str]] = None, @@ -690,7 +690,7 @@ def search( limit (int): limit of results tag (str): tag that an image must have class_name (str): class name that an image must have - in_dataset (str): dataset that an image must be in + in_dataset (bool): whether an image must be in this project's dataset batch (bool): whether the image must be in a batch batch_id (str): batch id that an image must be in annotation_job (bool): whether the image must be in an annotation job @@ -773,7 +773,7 @@ def search_all( limit: int = 100, tag: Optional[str] = None, class_name: Optional[str] = None, - in_dataset: Optional[str] = None, + in_dataset: Optional[bool] = None, batch: bool = False, batch_id: Optional[str] = None, fields: Optional[List[str]] = None, @@ -791,7 +791,7 @@ def search_all( limit (int): limit of results tag (str): tag that an image must have class_name (str): class name that an image must have - in_dataset (str): dataset that an image must be in + in_dataset (bool): whether an image must be in this project's dataset batch (bool): whether the image must be in a batch batch_id (str): batch id that an image must be in annotation_job (bool): whether the image must be in an annotation job From 5a01a70c969d6a5323c7019bd533dd048d13237c Mon Sep 17 00:00:00 2001 From: Rodrigo Barbosa Date: Thu, 3 Sep 2026 08:51:11 -0300 Subject: [PATCH 2/2] Bump SDK version to 1.4.3 --- roboflow/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roboflow/__init__.py b/roboflow/__init__.py index 9a0bb9c3..857d79f6 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -21,7 +21,7 @@ CLIPModel = None # type: ignore[assignment,misc] GazeModel = None # type: ignore[assignment,misc] -__version__ = "1.4.2" +__version__ = "1.4.3" def check_key(api_key, model, notebook, num_retries=0):