From dd1c14cfc930eabf72046cd67278b8bc06e16635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Rom=C3=A1n?= Date: Wed, 26 Aug 2026 04:25:26 +0000 Subject: [PATCH 1/2] chore(release): prepare for 8.3.9 --- README.md | 4 ++-- src/system/__version__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a1a53d3..f52a1f6 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ Libraries for Java 32.0.1-jre API. For more information, see documentation here: This package includes supporting Inductive Automation's classes and interfaces. For more information, see documentation here: -. +. #### org.apache @@ -133,7 +133,7 @@ This package includes supporting classes and interfaces from Mongo Java driver This package includes supporting classes and interfaces from the Inductive Automation's `org.json` package, see documentation here: - + #### org.python diff --git a/src/system/__version__.py b/src/system/__version__.py index f8db81e..e614939 100644 --- a/src/system/__version__.py +++ b/src/system/__version__.py @@ -1,4 +1,4 @@ """Package information.""" -__version__ = "8.3.8" -__build__ = "2026071409" +__version__ = "8.3.9" +__build__ = "2026082511" From e9b0657e7c31f2dfcbf1823d3ad938115538bbf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Rom=C3=A1n?= Date: Wed, 26 Aug 2026 08:59:24 -0700 Subject: [PATCH 2/2] refactor(system): remove parameters from historian functions - browse: remove snapshotTime - queryAggregatedPoints: fillPoints, includeBounds and excludeObservations - queryRawPoints: includeBounds and excludeObservations See: https://docs.inductiveautomation.com/docs/8.3/new-in-this-version#new-in-839 --- src/system/historian/__init__.py | 19 ------------------- stubs/stubs/system/historian/__init__.pyi | 5 ----- 2 files changed, 24 deletions(-) diff --git a/src/system/historian/__init__.py b/src/system/historian/__init__.py index 6960464..4e189ae 100644 --- a/src/system/historian/__init__.py +++ b/src/system/historian/__init__.py @@ -62,12 +62,9 @@ def queryAggregatedPoints( startTime=None, # type: Optional[Date] endTime=None, # type: Optional[Date] aggregates=None, # type: Optional[List[Union[str, unicode]]] - fillModes=None, # type: Optional[List[Union[str, unicode]]] columnNames=None, # type: Optional[List[Union[str, unicode]]] returnFormat="Wide", # type: str returnSize=1, # type: int - includeBounds=False, # type: bool - excludeObservations=False, # type: bool ): # type: (...) -> BasicDataset """Queries aggregated data points for the specified historian. @@ -79,15 +76,10 @@ def queryAggregatedPoints( endTime: An end time to query aggregated data points for. aggregates: A list of aggregate functions to apply to the query. Optional. - fillModes: A list of fill modes to apply to the query. Optional. columnNames: A list of alias column names for the returned dataset. Optional. returnFormat: The desired return format for the query. Optional. returnSize: The number maximum of results to return. Optional. - includeBounds: Whether to include the bounds in the query - results. Optional. - excludeObservations: Whether to exclude observed aggregated data - points in the query results. Optional. Returns: A dataset representing the aggregated points for the specified @@ -98,12 +90,9 @@ def queryAggregatedPoints( startTime, endTime, aggregates, - fillModes, columnNames, returnFormat, returnSize, - includeBounds, - excludeObservations, ) return BasicDataset() @@ -161,8 +150,6 @@ def queryRawPoints( columnNames=None, # type: Optional[List[Union[str, unicode]]] returnFormat="Wide", # type: str returnSize=-1, # type: int - includeBounds=False, # type: bool - excludeObservations=False, # type: bool ): # type: (...) -> BasicDataset """Queries raw data points for the specified Historian. @@ -176,10 +163,6 @@ def queryRawPoints( dataset. Optional. returnFormat: The desired return format for the query. Optional. returnSize: The maximum number of results to return. Optional. - includeBounds: Whether to include the bounds in the query - results. Optional. - excludeObservations: Whether to exclude observed raw data points - in the query results. Optional. Returns: A dataset representing the raw data points for the specified @@ -192,8 +175,6 @@ def queryRawPoints( columnNames, returnFormat, returnSize, - includeBounds, - excludeObservations, ) return BasicDataset() diff --git a/stubs/stubs/system/historian/__init__.pyi b/stubs/stubs/system/historian/__init__.pyi index 500c296..862f79d 100644 --- a/stubs/stubs/system/historian/__init__.pyi +++ b/stubs/stubs/system/historian/__init__.pyi @@ -14,12 +14,9 @@ def queryAggregatedPoints( startTime: Optional[Date] = ..., endTime: Optional[Date] = ..., aggregates: Optional[List[Union[str, unicode]]] = ..., - fillModes: Optional[List[Union[str, unicode]]] = ..., columnNames: Optional[List[Union[str, unicode]]] = ..., returnFormat: str = ..., returnSize: int = ..., - includeBounds: bool = ..., - excludeObservations: bool = ..., ) -> BasicDataset: ... def queryAnnotations( paths: List[Union[str, unicode]], @@ -39,8 +36,6 @@ def queryRawPoints( columnNames: Optional[List[Union[str, unicode]]] = ..., returnFormat: str = ..., returnSize: int = ..., - includeBounds: bool = ..., - excludeObservations: bool = ..., ) -> BasicDataset: ... def storeAnnotations(*args: Any, **kwargs: Any) -> List[BasicQualifiedValue]: ... def storeDataPoints(*args: Any, **kwargs: Any) -> List[BasicQualifiedValue]: ...