Skip to content

DataStar Release: 1.7.3.1

Release Date: 5th May 2020

ClickOnce 1.7.3.1 MSI Installer 1.7.3.1 Chocolatey

Please note DataStar.CmdLine is also available via the Azure Dev Ops Marketplace packaged as a VSIX file. This can be installed into Azure Dev Ops or Team Foundation to provide access to a packaged task or alternatively unzipped to extract the DataStar.CmdLine binaries.


Dependencies

This release depends on Microsoft's .NET Framework 4.7.2 - this should be installed prior to upgrading. You can find the .NET Framework 4.7.2 by following these links:

Features

FEATURE 123 - The deployment history table definition has been enhanced to include the date and time when the deployment completes. This is change is backwardly compatible as DataStar will check the table definitions in order to determine whether the new columns are supported in the environment to which it is connected .

Note: when adding the "END_TIME" column you must also rename the "DATE_STAMP" column to "START_TIME".

Migration

To migrate an existing table definition please use the following scripts:

sp_rename 'ADS_DEPLOYMENT_HISTORY.DATE_STAMP', 'START_TIME', 'COLUMN';

ALTER TABLE [ADS_DEPLOYMENT_HISTORY]
add [END_TIME] [datetime] NULL

Resolved Issues

  • None