Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 5, 2026

Updated Microsoft.NET.Test.Sdk from 17.12.0 to 18.0.1.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

18.0.1

What's Changed

Fixing an issue with loading covrun64.dll on systems that have .NET 10 SDK installed: https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/10.0/code-coverage-dynamic-native-instrumentation

Internal changes

Full Changelog: microsoft/vstest@v18.0.0...v18.0.1

18.0.0

What's Changed

Internal fixes and updates

17.14.1

What's Changed

Full Changelog: microsoft/vstest@v17.14.0...v17.14.1

17.14.0

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes

Internal version updates and fixes

New Contributors

17.14.0-preview-25107-01

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes

Internal version updates and fixes

Will probably revert before release:

New Contributors

Full Changelog: microsoft/vstest@v17.13.0...v17.14.0-preview-25107-01

17.13.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.12.0...v17.13.0

Commits viewable in compare view.

Updated MSTest from 3.6.4 to 3.8.0.

Updated MSTest from 3.6.4 to 4.0.2.

Release notes

Sourced from MSTest's releases.

4.0.2

See the release notes here

4.0.1

See the release notes here

4.0.0

What is new?

Assert.That

MSTest v4 adds a new type of assertion, that allows you to write any expression, and it will inspect the result to give you more information on failure. Providing a very flexible way to assert complicated expressions. Here a simple example:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        var animal = "Tiger";
        var zoo = new Zoo();
        Assert.That(() => zoo.GetAnimal() == animal);
    }
}

public class Zoo
{
    public string GetAnimal()
    {
        return "Giraffe";
    }
}
Assert.That(() => zoo.GetAnimal() == animal) failed.
Details:
    animal = "Tiger"     
    zoo.GetAnimal() = "Giraffe"

CallerArgumentExpression

CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        string animal = null;
        Assert.AreEqual("Giraffe", animal);
    }
}
 ... (truncated)

## 4.0.0-preview.25372.6

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in #​1285 and #​5762

## 4.0.0-preview.25358.7

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in https://github.com/microsoft/testfx/issues/1285 and https://github.com/microsoft/testfx/issues/5762

## 3.11.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)

## 3.11.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)

## 3.10.5

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)


## 3.10.4

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)


## 3.10.3

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)


## 3.10.2

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)


## 3.10.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)


## 3.10.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)


## 3.9.3

## What's Changed

* Simpler fix for dotnet test when using retry by @​Youssef1313 in #​5732. Note that this PR targets rel/3.9 branch. For 3.10, we did a different fix: https://github.com/microsoft/testfx/pull/5717

See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.3
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.3

**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.2...v3.9.3

## 3.9.2

## What's Changed

* Fix MSTEST0042 (duplicate data row) false positive with Zero/NegativeZero by @​Youssef1313 in #​5684
* Allow framework authors to use TestCase.FullyQualifiedName as the TestNodeUid by @​Youssef1313 in #​5658
* Ensure TestMethodAttribute.Execute is run on the correct execution context by @​Youssef1313 in #​5688
* Avoid loading System.Threading.Tasks.Extensions when not needed by @​Youssef1313 in #​5694
* Fix UseAsync property in TestMethodAttribute derived classes to use type checks by @​Youssef1313 and @​Copilot in #​5708
* Fix UnitTestRunner leaking some test class instances by @​Youssef1313 in #​5715

See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.2
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.2

**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.1...v3.9.2

## 3.9.1

## What's Changed
* Make ConditionBaseAttribute.Mode public by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5597
* Add missing overload for Assert.Throws by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5620
* Fix System.MissingMethodException for KeyValuePair Deconstruction by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5635
* Run the whole ExecuteInternal logic under the right execution context by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5646
* VSTestBridge: Handle TestPropertyAttributes.Trait instead of special casing specific properties by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5648

See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.1
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.1

**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.0...v3.9.1

## 3.9.0

In this release we focused a lot on providing fixes for MSTest and Microsoft.Testing.Platform. The most notable new features and fixes are:

## MSTest

* Allow async test methods for UITestMethod on UWP and WinUI by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5297
* Add analyzer for duplicate data row by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5144
* Fix ClassCleanup not called when the first test in class is ignored by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5070
* Fix writing warnings outside of appdomain by @​nohwnd in https://github.com/microsoft/testfx/pull/5371

## Microsoft.Testing.Platform

* Add (alpha) Azure DevOps extension to report errors by @​nohwnd in https://github.com/microsoft/testfx/pull/5260
* Kill testhost if writing hang dump fails by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5538

We've also improved the `dotnet test` experience in dotnet SDK, especially around Retry plugin experience, and started dogfooding the experience in our own repository. Please check out how to enable the new `dotnet test` experience for Microsoft.Testing.Platform in net10 by [following this link](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-with-dotnet-test#microsofttestingplatform-mtp-mode-of-dotnet-test), and help us dogfood it.

## New Contributors
* @​stan-sz made their first contribution in https://github.com/microsoft/testfx/pull/5214
* @​YoshiRulz made their first contribution in https://github.com/microsoft/testfx/pull/5281
* @​bjornhellander made their first contribution in https://github.com/microsoft/testfx/pull/5300



See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.0
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.0

**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.8.3...v3.9.0

## 3.9.0-preview.25167.10



## 3.8.3

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.3)


## 3.8.2

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.2)


## 3.8.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.1)


## 3.8.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.0)

## Announcements

- This release adds new Assert APIs related to throwing exceptions, collections, and strings. Refer to the changelog for more information.
- This release adds support for generic test methods.
- This release adds few new analyzers.
- We added [`MSTestAnalysisMode`](https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/overview#mstestanalysismode). We encourage you to set this property to at least `Recommended`.
- This release adds `RetryAttribute`
- [Microsoft.Testing.Extensions.TrxReport](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport) and [Microsoft.Testing.Extensions.CodeCoverage](https://www.nuget.org/packages/Microsoft.Testing.Extensions.CodeCoverage) are now a dependency of MSTest metapackage

## 3.7.3

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.3)

## 3.7.2

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.2)

## 3.7.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.1)

## 3.7.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.0)

## Announcements

[MSTest.Analyzers](https://www.nuget.org/packages/MSTest.Analyzers) is now a transitive dependency of [MSTest.TestFramework](https://www.nuget.org/packages/MSTest.TestFramework) and thus no longer needs to be manually installed.

Note: The only rules enabled by default as warnings, which could potentially cause build errors when updating MSTest, have been carefully selected and thoroughly validated. These rules specifically address real runtime issues related to the usage of MSTest, ensuring that no purely stylistic or low-impact analyzers are enforced by default.

Commits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.6.4...v4.0.2).
</details>

Updated [Skyline.DataMiner.Core.AppPackageInstaller](https://github.com/SkylineCommunications/Skyline.DataMiner.Core.AppPackages) from 2.0.5 to 3.1.1.

<details>
<summary>Release notes</summary>

_Sourced from [Skyline.DataMiner.Core.AppPackageInstaller's releases](https://github.com/SkylineCommunications/Skyline.DataMiner.Core.AppPackages/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/SkylineCommunications/Skyline.DataMiner.Core.AppPackages/commits).
</details>

Updated [Skyline.DataMiner.Dev.Automation](https://skyline.be/) from 10.4.0 to 10.5.8.1.

Updated [Skyline.DataMiner.Sdk](https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk) from 1.0.3 to 2.3.0.

<details>
<summary>Release notes</summary>

_Sourced from [Skyline.DataMiner.Sdk's releases](https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/releases)._

## 2.3.0

## What's Changed
* Manually bump NuGet versions by @​MichielOda in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/51
* DmTest - Add config file + support powershell module files + Publish by @​MichielOda in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/67
* Bump the skyline-dataminer-cicd group with 1 update by @​dependabot[bot] in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/73


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.2.0...2.3.0

## 2.2.0

## What's Changed
* Bump the skyline-dataminer-cicd group with 2 updates by @​dependabot[bot] in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/50
* [Suggestion] Add a clean step that removes the files generated in the DataMinerBuild folder by @​ArneMaes0 in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/49

## New Contributors
* @​ArneMaes0 made their first contribution in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/49

**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.1.2...2.2.0

## 2.1.2

## What's Changed
* Bump the microsoft-extensions-configuration group with 2 updates by @​dependabot[bot] in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/47
* Bump the skyline-dataminer-cicd group with 3 updates by @​dependabot[bot] in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/48


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.1.1...2.1.2

## 2.1.1

## What's Changed
* Bump the microsoft-extensions-configuration group with 2 updates by @​dependabot[bot] in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/45
* DmTest Package - Use custom installscript (like dmapp) by @​MichielOda in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/46


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.1.0...2.1.1

## 2.1.0

**Basic Support for `.dmtest` Packages and Test Projects**

This release introduces initial support for creating `.dmtest` packages and projects of the type *Test Package*.

The feature is designed to be used alongside **QAOps**, which is currently in internal release. QAOps is a DataMiner platform that enables:

* Running regression test batteries on DataMiner Release Candidates as part of Skyline’s Quality Gate.
* Executing tests on one or more DaaS servers.

⚠️ *Note:* This release does \**not yet include support for publishing to the Catalog.*

This functionality is currently undergoing internal trials.

## What's Changed
* Dmtest by @​janstaelensskyline in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/44


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.0.2...2.1.0

## 2.1.0-alpha2

For debugging purposes. Uses all internet-accessible pre-release nugets.

**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.0.2...2.1.0-alpha2

## 2.1.0-alpha1

This is for testing purposes.
It allows TestPackage as a project type.

## What's Changed
* Bump the skyline-dataminer-cicd group with 3 updates by @​dependabot[bot] in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/39
* Automatic notices by @​janstaelensskyline in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/41


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.0.1...2.1.0-alpha1

## 2.0.2

## What's Changed
* Bump the skyline-dataminer-cicd group with 3 updates by @​dependabot[bot] in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/39
* Automatic notices by @​janstaelensskyline in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/41
* * Allow companionfiles within webpages/public. 

**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.0.1...2.0.2

## Important
* Despite being added again in this release, the folder Webpages/Public in CompanionFiles does not sync across clusters until DataMiner Version 10.5.10

## 2.0.1

## What's Changed
* Bump the microsoft-extensions-configuration group with 2 updates by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/35
* Bump the skyline-dataminer-cicd group with 3 updates by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/36
* Add warning on invalid MinimumRequiredDmVersion tag value by @​MichielOda in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/37


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/2.0.0...2.0.1

## 2.0.0

## 🔐 CompanionFiles Directory Restrictions

Starting from this version, **CompanionFiles are restricted to a predefined set of approved directories**.

### ✅ Actions Required

If you're maintaining a package that places CompanionFiles outside the allowed directories, please update it to:

* Move files into an approved directory (listed below), **or**
* Use `SetupContent` if the files are only required during installation.

### ❓ Why This Change?

* **Cluster Sync Compatibility**: Only approved directories are guaranteed to sync correctly across a cluster.
* **Security Hardening**: This prevents `.dmapp` packages from unintentionally or maliciously modifying sensitive credential or ownership data.

---

## 📂 Allowed Directories for CompanionFiles

You may safely place CompanionFiles in any of the following directories:

* `Aggregation`
* `Applications` *(Low-Code Apps)*
* `AssetManager/Configs`
* `AssetManager/Cache`
* `AssetManager/MediationConfigs`
* `BPA`
* `Connectivity`
* `Correlation`
* `Dashboards`
* `DeployerTokens`
* `Documents`
* `Generic Interface`
* `Icons`
* `Maps`
* `Protocols`
* `ProtocolFunctionManager`
* `ProtocolScripts`
* `Scripts`
* `Services`
* `Shared Items`
* `Sounds`
* `Tools/SLLogCollector/LogConfigs`
* `Users`
* `Views`
* `WebPages/Annotations/DMS Images`
* `WebPages/Annotations/Views`
* `WebPages/Dashboards/db`

 ... (truncated)

## 2.0.0-test1

# ⚠️ Pre-Release Notice: For QA and Testing Only

**This is a pre-release build intended for internal QA and testing purposes.**
The **stable release is scheduled for 07/07/2025**. Please report any issues discovered during testing.

---

## 🔐 CompanionFiles Directory Restrictions

Starting from this version, **CompanionFiles are restricted to a predefined set of approved directories**.

### ✅ Actions Required

If you're maintaining a package that places CompanionFiles outside the allowed directories, please update it to:

* Move files into an approved directory (listed below), **or**
* Use `SetupContent` if the files are only required during installation.

### ❓ Why This Change?

* **Cluster Sync Compatibility**: Only approved directories are guaranteed to sync correctly across a cluster.
* **Security Hardening**: This prevents `.dmapp` packages from unintentionally or maliciously modifying sensitive credential or ownership data.

---

## 📂 Allowed Directories for CompanionFiles

You may safely place CompanionFiles in any of the following directories:

* `Aggregation`
* `Applications` *(Low-Code Apps)*
* `AssetManager/Configs`
* `AssetManager/Cache`
* `AssetManager/MediationConfigs`
* `BPA`
* `Connectivity`
* `Correlation`
* `Dashboards`
* `DeployerTokens`
* `Documents`
* `Generic Interface`
* `Icons`
* `Maps`
* `Protocols`
* `ProtocolFunctionManager`
* `ProtocolScripts`
* `Scripts`
* `Services`
* `Shared Items`
* `Sounds`
 ... (truncated)

## 1.1.3

## What's Changed
* Bump the microsoft-extensions-configuration group with 2 updates by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/26
* Bump the skyline-dataminer-cicd group with 5 updates by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/30
* Bump the skyline-dataminer-core group with 1 update by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/31


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/1.1.2...1.1.3

## 1.1.2

## What's Changed
* Fix retrieval of organization key by @​MichielOda in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/23


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/1.1.1...1.1.2

## 1.1.1

## What's Changed
* Bump Microsoft.Extensions.Configuration.EnvironmentVariables from 9.0.2 to 9.0.3 by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/14
* Bump Skyline.DataMiner.CICD.DMApp.Common from 2.0.16 to 2.1.0 by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/18
* Bump Microsoft.Extensions.Configuration.UserSecrets from 9.0.2 to 9.0.3 by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/16
* Bump Skyline.DataMiner.CICD.FileSystem from 1.1.0 to 1.2.0 by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/20
* Bump Skyline.DataMiner.Core.ArtifactDownloader from 2.1.0 to 2.1.1 by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/21
* Bump Skyline.DataMiner.Core.AppPackageCreator from 2.1.0 to 2.1.1 by @​dependabot in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/22


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/1.1.0...1.1.1

## 1.1.0

## Release Notes – **Skyline.DataMiner.Sdk v1.1.0**  

### **New Features & Enhancements**  

- **Catalog Integration Support**  
  The SDK now supports fetching artifacts directly from the **DataMiner Catalog** using `CatalogReferences.xml`. Users can reference catalog items by GUID and specify version constraints, ensuring seamless integration of external components.  

- **Support for dmprotocol Packages**  
  The SDK now allows handling **dmprotocol** packages within application packages, enabling streamlined inclusion of protocol-related components in automation workflows.  

> **Note:** These enhancements only apply to projects with `<DataMinerType>Package</DataMinerType>`, ensuring targeted improvements for package-based solutions.  

These updates provide greater flexibility and automation in managing dependencies, simplifying the development and deployment of DataMiner packages.

## What's Changed
* Support Catalog references by @​MichielOda in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/8


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/1.0.4...1.1.0

## 1.0.4

## What's Changed
* Allow A.B.C.D-text as version for packages by @​MichielOda in https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/pull/12


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/1.0.3...1.0.4

Commits viewable in [compare view](https://github.com/SkylineCommunications/Skyline.DataMiner.Sdk/compare/1.0.3...2.3.0).
</details>

Updated [Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit) from 7.0.6 to 10.5.8.1.

<details>
<summary>Release notes</summary>

_Sourced from [Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit's releases](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/releases)._

## 10.5.8.1

# DropDown.FilterChanged
This release adds support for lazy loading DropDown options when filtering. This is especially useful if you have a huge amount of items in a DropDown. This feature introduces the [DropDown.FilterChanged](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/b950a806d8f40fcf1239d4586c443cd41bcebdb6/InteractiveAutomationToolkit/Components/DropDownBase.cs#L129) event. Entering a filter value in a DropDown triggers it and provides you with the entered filter, which in turn can be used to dynamically alter the list of options. See [LazyLoadDropDown](https://github.com/SkylineCommunications/SLC-AS-Example_InteractiveAutomationScriptToolkit/tree/main/IAS_LazyLoadDropDown_1) for an example on how to use it.

> **_NOTE:_** this feature only works in a web environment and requires the use of the updated WebUiComponents (V2). From DM 10.4.0 this can be enforced by adding " useNewIASInputComponents=true" to the URL query. From DM 10.5.12, you can define this on a per script basis by setting IEngine.WebUIVersion to WebUIVersion.V2. From 10.6.1 onwards, the new components will become the default and no additional actions are required.

## 10.5.8.1-prerelease.3

Removed changes related to supporting pipes in DropDowns.

## 10.5.8.1-prerelease.2



## 10.5.8.1-prerelease.1

Add support for the DropDown.FilterChanged event. This triggers when a user enters a filter for a DropDown and can be used to lazy load the available options.

## 10.5.5.5-prerelease.2



## 10.5.5.5-prerelease.1

Fix issue where pipe '|' characters would cause issues if they would be used as part of a display value in DropDown, RadioButtonList and CheckBoxLists.

## 10.5.5.4

Fixes a bug where a NullReference exception was thrown if no ILogger was provided to Dialog.Show in case that Dialog contained a button.

## 10.5.5.4-prerelease.1

Fixed bug where NullReference exception was thrown if no ILogger was provided to Dialog.Show in case that Dialog contained a button.

## 10.5.5.3

Fixed issue where wrong previous value was passed to OnChange event of Numeric.

## 10.5.5.3-prerelease.1

Downgrade Microsoft.Extensions.Logging to 7.0.0.

## 10.5.5.2

## What's Changed
* Add parameterless constructor to TreeView component by @​Copilot in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/46
* Add generic TreeView<T> control to support custom metadata on tree items by @​Copilot in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/44
* Add generic TreeView<T> control by @​TomW-Skyline in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/50
* Fixed issue where initial user interaction would trigger all Numeric OnChange events regardless whether their value changed or not.

## New Contributors
* @​Copilot made their first contribution in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/46

**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/compare/10.5.5.1...10.5.5.2

## 10.5.5.2-prerelease.6



## 10.5.5.2-prerelease.5



## 10.5.5.2-prerelease.4



## 10.5.5.2-prerelease.3



## 10.5.5.2-prerelease.2

Add ability to pass an [ILogger](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.ilogger?view=net-9.0-pp).

## 10.5.5.2-prerelease.1

## What's Changed
* Add parameterless constructor to TreeView component by @​Copilot in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/46
* Add generic TreeView<T> control by @​TomW-Skyline in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/50

## New Contributors
* @​Copilot made their first contribution in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/46

**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/compare/10.5.5.1...10.5.5.2-prerelease.1

## 10.5.5.1

- Script abort popups are from this version on hidden by default. This behaviour can be overridden by setting the Dialog.ShowScriptAbortPopup property to true.

## 10.5.5.1-prerelease.1

- Script abort popups are from this version on hidden by default. This behaviour can be overridden by setting the Dialog.ShowScriptAbortPopup property to true.

## 10.5.4.6

Fixed issue where wrong previous value was passed to OnChange event of Numeric.

## 10.5.4.5

* Fixed issue introduced in [10.5.4.4](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/releases/tag/10.5.4.4) where the initial user interaction would trigger all Numeric OnChange events regardless whether their value changed or not.

## 10.5.4.4

- Fixed issue where Numeric would not report changes if Decimals weren't correctly configured.

## 10.5.4.3

- Sets default Mimimum value for [Time ](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/10.5.4.X/InteractiveAutomationToolkit/Components/Time.cs)widget
- Sets default Minimum and Maximum values for [TimePicker ](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/10.5.4.X/InteractiveAutomationToolkit/Components/TimePicker.cs)widget

## 10.5.4.2

## What's Changed
* Disable interactivity when not needed by @​JensVandewalle in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/35
* Added IIsReadOnlyWidget interface by @​JensVandewalle in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/36

## New Contributors
* @​JensVandewalle made their first contribution in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/35

**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/compare/10.5.4.1...10.5.4.2

## 10.5.4.2-prerelease.5

## What's Changed
* Disable interactivity when not needed - Fix by @​JensVandewalle in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/38


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/compare/10.5.4.2-prerelease.4...10.5.4.2-prerelease.5

## 10.5.4.2-prerelease.4

## What's Changed
* Disable interactivity when not needed - Fix by @​JensVandewalle in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/37


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/compare/10.5.4.2-prerelease.3...10.5.4.2-prerelease.4

## 10.5.4.2-prerelease.3

## What's Changed
* Added IIsReadOnlyWidget interface by @​JensVandewalle in https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/pull/36


**Full Changelog**: https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/compare/10.5.4.2-prerelease.1...10.5.4.2-prerelease.3

## 10.5.4.2-prerelease.2



## 10.5.4.2-prerelease.1



## 10.5.4.1

- DropDown filter is now enabled by default
- Adds [DateTimePicker.ClientDateTime](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/f119e73c1bd95a712fad13b507fa7d32dec5a25b/InteractiveAutomationToolkit/Components/DateTimePicker.cs#L137)
- Adds [DateTimePicker.ClientTimeZoneInfo](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/f119e73c1bd95a712fad13b507fa7d32dec5a25b/InteractiveAutomationToolkit/Components/DateTimePicker.cs#L143)
- Adds [Calendar.ClientDateTime](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/f119e73c1bd95a712fad13b507fa7d32dec5a25b/InteractiveAutomationToolkit/Components/Calendar.cs#L129)
- Adds [Calender.ClientTimeZoneInfo](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/f119e73c1bd95a712fad13b507fa7d32dec5a25b/InteractiveAutomationToolkit/Components/Calendar.cs#L135)
- Adds [TimeZoneDateTimePicker Section](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/10.5.4.X/InteractiveAutomationToolkit/Sections/TimeZoneDateTimePicker.cs)
- Deprecates [DateTimePicker.TimeFormat](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/f119e73c1bd95a712fad13b507fa7d32dec5a25b/InteractiveAutomationToolkit/Components/DateTimePicker.cs#L305)
- Deprecates [DateTimePicker.CustomTimeFormat](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/f119e73c1bd95a712fad13b507fa7d32dec5a25b/InteractiveAutomationToolkit/Components/DateTimePicker.cs#L323)

## 10.5.4.1-prerelease.4



## 10.5.4.1-prerelease.3



## 10.5.4.1-prerelease.2



## 10.5.4.1-prerelease.1



## 10.0.8

* Fixed issue introduced in [10.0.7](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/releases/tag/10.0.7) where the initial user interaction would trigger all Numeric OnChange events regardless whether their value changed or not.

## 10.0.7

- Fixed issue where Numeric would not report changes if Decimals weren't correctly configured.

## 10.0.6

Adds [YesNoDialog](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/10.0.X/InteractiveAutomationToolkit/Dialogs/YesNoDialog.cs) and [OkCancelDialog](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/10.0.X/InteractiveAutomationToolkit/Dialogs/OkCancelDialog.cs). 

## 10.0.5

Fixes the following issue: [EnumRadioButtonList.SetUptions doesn't use provided Function to convert values To Strings](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/issues/27)

## 10.0.4

This release introduces the following new features.

# [EnumDropDown](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/EnumDropDown.cs)

An extension of DropDown<T> that allows developers to easily create drop downs for which the options are defined by an Enum.

# [EnumRadioButtonList](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/EnumRadioButtonList.cs)

A type of RadioButtonList<T> that allows developers to easily create radio button lists for which the options are defined by an Enum.

This release completes the following request: [Easy Generic Interactive Widgets for Enums](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/issues/20)

## 10.0.4-prerelease.2



## 10.0.4-prerelease.1

Add try catch around Engine.ShowUI to include more info in the exception if this call would fail.

## 10.0.3

This release introduces the following new feature.

# [IValidationWidget](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Interfaces/IValidationWidget.cs)

Defines the ValidationState and ValidationText properties. All widgets supporting visual validation now inherit this interface. This is useful in cases where you want to access all validation supporting widgets in a dialog. For example: `Dialog.Widgets.OfType<IValidationWidget>()`. 

## 10.0.2

Updated NuGet package description.

## 10.0.1

This major version is compatible with DataMiner 10.4.12 and up. It introduces the following new features.
# [Support for SkipAbortConfirmation](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/issues/18)
Closing an interactive script using the X button in the top right (either from Web or Cube) causes a confirmation popup to be displayed. This popup asks the user to confirm whether they want to close the script or not. In previous DataMiner versions this popup was always shown. From 10.4.12 onwards, this behavior can be overridden. Using the toolkit you can define it on two levels.
- [Dialog.ShowScriptAbortPopup](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/77988139c57f2833f75eca422ee612eb2f82f7d5/InteractiveAutomationToolkit/Dialogs/Dialog.cs#L251) allows this behavior to be defined based on the current displayed Dialog. By default the confirmation popup is displayed.
- [InterActiveController.ScriptAbortPopupBehavior ](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/77988139c57f2833f75eca422ee612eb2f82f7d5/InteractiveAutomationToolkit/InteractiveController.cs#L55) allows this behavior to be defined on a script level. Setting this value to [HideAlways](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/77988139c57f2833f75eca422ee612eb2f82f7d5/InteractiveAutomationToolkit/ScriptAbortPopupBehavior.cs#L6) or [ShowAlways](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/77988139c57f2833f75eca422ee612eb2f82f7d5/InteractiveAutomationToolkit/ScriptAbortPopupBehavior.cs#L7) overrides the settings defined on the Dialogs displayed by this controller. By default this value is set to OnDialogLevel, causing the popup to be shown based on the Dialog.ShowScriptAbortPopup value.

# [Hyperlink](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Hyperlink.cs)
A button that, upon clicking it, takes the user to an external webpage. Implemented on [request](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/issues/19). Supports LinkClicked event, which is triggered whenever the Hyperlink is clicked.
# Generic Interactive Widgets
The following widgets are generic implementations of their regular counterparts. Instead of providing a list of strings as options for the widgets, you can now either provide a list of objects or a list of [Options](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Option.cs). An option links a displayed string with an object. If you don't provide Options, but instead a list of objects, the ToString() implementation of those objects is used to represent them visually in the widget. The main reason for these generic interactive widgets is to stop developers from having to keep track of which displayed option is linked to what object.
- [Generic CheckBoxList](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/GenericCheckBoxList.cs)
- [Generic DropDown](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/GenericDropDown.cs)
- [Generic RadioButtonList](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/GenericRadioButtonList.cs)

## 10.0.1-prerelease.3

Fixes an issue with InterActiveController.ScriptAbortPopupBehavior.

## 10.0.1-prerelease.2

Adds support for SkipAbortConfirmation through:
- Dialog.ShowScriptAbortPopup
- InterActiveController.ScriptAbortPopupBehavior

Hyperlink widget

Generic Interactive Widgets
- Generic DropDown
- Generic RadioButtonList
- Generic CheckBoxList

## 10.0.1-prerelease.1

Adds support for SkipAbortConfirmation feature. This allows developers to hide the confirmation message displayed when a user aborts the script.

## 9.0.11

Fixed issue where wrong previous value was passed to OnChange event of Numeric.

## 9.0.10

* Fixed issue intoduced in [9.0.9](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/releases/tag/9.0.9) where the initial user interaction would trigger all Numeric OnChange events regardless whether their value changed or not.

## 9.0.9

- Fixed issue where Numeric would not report changes if Decimals weren't correctly configured.

## 9.0.8

Fixes the following issue: [EnumRadioButtonList.SetUptions doesn't use provided Function to convert values To Strings](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/issues/27)

## 9.0.7

This release introduces the following new features.

# [EnumDropDown](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/EnumDropDown.cs)

An extension of DropDown<T> that allows developers to easily create drop downs for which the options are defined by an Enum.

# [EnumRadioButtonList](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/EnumRadioButtonList.cs)

A type of RadioButtonList<T> that allows developers to easily create radio button lists for which the options are defined by an Enum.

This release completes the following request: [Easy Generic Interactive Widgets for Enums](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/issues/20)

## 9.0.7-prerelease.5



## 9.0.7-prerelease.4

Better exception handling when calling Engine.ShowUI.

## 9.0.7-prerelease.3

Add try catch around Engine.ShowUI to include more info in the exception if this call would fail.

## 9.0.7-prerelease.2

Removes unnecesary setting of (Generic)DropDown.previous and DropDown.Selected fields.

## 9.0.7-prerelease.1

Attempt to automatically fix issue where DM is not detecting a script as being interactive without having to explicitly add //Engine.ShowUI();

## 9.0.6

Adds support for an empty Option<T>.

## 9.0.5

This release introduces the following new feature.

# [IValidationWidget](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Interfaces/IValidationWidget.cs)

Defines the ValidationState and ValidationText properties. All widgets supporting visual validation now inherit this interface. This is useful in cases where you want to access all validation supporting widgets in a dialog. For example: `Dialog.Widgets.OfType<IValidationWidget>()`. 

## 9.0.4

This release introduces the following new features.
# [Hyperlink](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Hyperlink.cs)
A button that, upon clicking it, takes the user to an external webpage. Implemented on [request](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/issues/19). Supports LinkClicked event, which is triggered whenever the Hyperlink is clicked.
# Generic Interactive Widgets
The following widgets are generic implementations of their regular counterparts. Instead of providing a list of strings as options for the widgets, you can now either provide a list of objects or a list of [Options](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Option.cs). An option links a displayed string with an object. If you don't provide Options, but instead a list of objects, the ToString() implementation of those objects is used to represent them visually in the widget. The main reason for these generic interactive widgets is to stop developers from having to keep track of which displayed option is linked to what object.
- [Generic CheckBoxList](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/GenericCheckBoxList.cs)
- [Generic DropDown](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/GenericDropDown.cs)
- [Generic RadioButtonList](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/blob/9.0.X/InteractiveAutomationToolkit/Components/Generics/GenericRadioButtonList.cs)

## 9.0.3

- DateTimePicker reuses existing DateTime in case a null string value is retrieved from the UI.

## 9.0.2

- Introduces InteractiveController.Hide() and Dialog.Hide() methods. These can be used to hide the UI while continuing to run the automation script in the background.
- Makes InteractiveController.Run() obsolete, you can now always use InteractiveController.ShowDialog().

## 9.0.2-prerelease.3

Jump out of Run loop when calling InteractiveController.Hide(). This is to make sure that the current dialog isn't being shown after it was hidden.

## 9.0.2-prerelease.2

Made InterActiveController.Run obsolete. You can now always use the ShowDialog method and don't need to check whether the controller is running in your code. 

## 9.0.2-prerelease.1

Linked release note: [RN39451](https://intranet.skyline.be/DataMiner/Lists/Release%20Notes/DispForm.aspx?ID=39451)

## 9.0.1

Adds Widget.DebugTag property. This property allows users to define data-cy attributes on HTML elements which in turn can be used for easier UI testing.

## 9.0.1-prerelease.1

Add Widget.DebugTag property. This property is used to define data-cy attributes on HTML elements for easier UI testing.

## 8.0.7

Fixed issue where wrong previous value was passed to OnChange event of Numeric.

## 8.0.6

* Fixed issue introduced in [8.0.5](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/releases/tag/8.0.5) where the initial user interaction would trigger all Numeric OnChange events regardless whether their value changed or not.

## 8.0.5

- Fixed issue where Numeric would not report changes if Decimals weren't correctly configured.

## 8.0.4

Fixed issue where options in CheckBoxList were changed back to previous state after handling OnChange event.

## 8.0.3

Default Label constructor now initializes Label.Text with empty string instead of "Label".

## 8.0.2

Add Style property to CollapseButton widget.

## 8.0.1

- Adds support for ReadOnly mode to the following interactive widgets
	- Calender
	- CheckBox
	- CheckBoxList
	- DateTimePicker
	- DropDown
	- Numeric
	- RadioButtonList
	- TextBox
	- Time
	- TimePicker
	- TreeView
- Adds stop functionality to InteractiveController

## 7.0.8

Fixed issue where wrong previous value was passed to OnChange event of Numeric.

## 7.0.7

* Fixed issue introduced in [7.0.6](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/releases/tag/7.0.6) where the initial user interaction would trigger all Numeric OnChange events regardless whether their value changed or not.

Commits viewable in [compare view](https://github.com/SkylineCommunications/Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit/compare/7.0.6...10.5.8.1).
</details>

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps Microsoft.NET.Test.Sdk from 17.12.0 to 18.0.1
Bumps MSTest to 3.8.0, 4.0.2
Bumps Skyline.DataMiner.Core.AppPackageInstaller from 2.0.5 to 3.1.1
Bumps Skyline.DataMiner.Dev.Automation from 10.4.0 to 10.5.8.1
Bumps Skyline.DataMiner.Sdk from 1.0.3 to 2.3.0
Bumps Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit from 7.0.6 to 10.5.8.1

---
updated-dependencies:
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Dev.Automation
  dependency-version: 10.5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit
  dependency-version: 10.5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: MSTest
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: MSTest
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Dev.Automation
  dependency-version: 10.5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit
  dependency-version: 10.5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: MSTest
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: MSTest
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Core.AppPackageInstaller
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Skyline.DataMiner.Sdk
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Jan 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant