Version Information
New Features
TSM-7202 Ability to Specify Time Zone in Reporting Functions Call
When calling a reporting function in Excel, such as TSM_ReadTimeSeriesValues
, it is now possible to add a time zone as the last parameter. Things like daylight savings time transition periods of that time zone will then be considered when loading the time series data.
Note that when specifying a time zone, the From
and To
parameters - which were previously always considered to be local time - will now also be considered to be in that time zone.
For example when the local machine is in CEST and no time zone is specified while passing 25.07.2025
as the From
parameter, data would be read starting at 2025-07-24T22:00:00Z
. In contrast, specifying UTC
as the time zone, would read data starting at 2025-07-25T00:00:00Z
.
TSM-7485 WebTSM Services: Improved Error Handling When Retrieving User Data
During transient issues with the authentication service, the details reported were insufficient to allow pinpointing the root cause of failed requests. Additional error handling has been added to allow faster problem diagnosis in the future.
TSM-7274 WebTSM Services: Delete Quotations for Specific Time Series
By issuing a DELETE
request against the /repositories/{repository}/timeseries/quotation
endpoint, it was possible to clean an entire repository of old quotations. This release now adds the ability to clean quotations of individual time series:
The new endpoint:
DELETE /repositories/{repository}/timeseries/{timeseries}/quotations
allows deleting quotations older than a specific date for an individual time series.The new endpoint
DELETE /repositories/{repository}/timeseriescollections/quotations
allows the above operation to be performed on multiple time series in a single request.
For details please consult the OpenAPI specification file.
Fixed Bugs
TSM-7406 Issue With Licenses That Were Issued for Multiple Product Versions
When a HAKOM.License
file was issued using wildcards in the <ProductVersion>
field, there was an issue if only the patch number was wild, i.e. 3.10.6.*
.
This has been fixed. For reference here is a table with a few example of what versions can be run given the <ProductVersion>
value in the HAKOM.License.
<ProductVersion> | Versions that can be used |
---|---|
3.* | Any 3.x release, including minor versions (3.10.6, 3.11, etc.) and patches (3.10.6.3, 3.11.1.2, etc.) |
3.10 | Any 3.10.x and 3.10.x.x release, i.e. 3.10.6.1, 3.10.7.0, etc. |
3.10.* | same as above |
3.10.6 | Any patch available for version 3.10.6, i.e. 3.10.6.0, 3.10.6.1, 3.10.6.2, etc. |
3.10.6.* | same as above |
TSM-6929 TSM App: Unclear Error Message When Updating Time Series Data Without Prior Log-In
When time series data is accessed from an HTTP connection (i.e. the PowerTSM cloud-hosted service), the user must sign in before reading or writing data. Unfortunately, the error message presented to the user in such a case did not make this clear. This has been fixed, and the user is now prompted to sign in with the connections used by the time series data template.
TSM-6709 TSM App: VBA Makro Cannot Login With Api-Keys
When using the functionality provided by HAKOM.TSM.App.COM.tlb to create VBA macros, the methods previously threw an exception if a connection to a WebTSM Service was used. The functions in HAKOM.TSM.App.COM.tlb now support connections to WebTSM Services, provided that an API key is configured.