Skip to content

Releases: OctopusDeploy/OctopusDSC

v4.0.1002

21 Jan 06:09
24b448e
Compare
Choose a tag to compare
[Bug fix] Prevent exposing API key secret in stdout logging (#270)

* remove Write-Verbose line

* use masking function in commands

* simplify masking function

v4.0.977

18 Jan 09:10
8f27221
Compare
Choose a tag to compare
Workaround mitchellh/vagrant-aws#566 (#272)

v4.0.957

21 Dec 03:05
f8f5a6e
Compare
Choose a tag to compare
Remove metrics command (#266)

This was removed in Octopus 2020.5.0. See https://github.com/OctopusDeploy/OctopusDeploy/pull/5996.

v4.0.934

22 Sep 05:44
025bbe1
Compare
Choose a tag to compare
Ensure that we use correct types in return from Get-TargetResource (#…

…261)

* Ensure that we use correct types in return from Get-TargetResource
* Only test password part of PSCredential for MasterKey

Fixes #258

v4.0.932

02 Jul 20:44
025bbe1
Compare
Choose a tag to compare
Ensure that we use correct types in return from Get-TargetResource (#…

…261)

* Ensure that we use correct types in return from Get-TargetResource
* Only test password part of PSCredential for MasterKey

Fixes #258

v4.0.929

26 Jun 04:45
1d588ba
Compare
Choose a tag to compare
Ensure Get-TargetResource returns all DSC properties (#259)

The MasterKey field was missing and it was causing the service to restart.

Fixes https://github.com/OctopusDeploy/OctopusDSC/issues/258

v4.0.924

25 Jun 01:34
cbb6610
Compare
Choose a tag to compare
Upgrade tests to use Pester 5 syntax (#260)

Also cleanup PSScriptAnalyzer errors as new version 1.19.0 installed on the build agents flagged more errors

v4.0.917

23 Jun 23:23
a8edb8f
Compare
Choose a tag to compare
Update serverspec to get better network port closed test (#256)

Now we have better "is port not listening" test in serverspec with https://github.com/mizzy/specinfra/pull/716, we can uncomment some tests that weren't working so well due to ports on windows staying in a TIME_WAIT state.

v4.0.903

30 Apr 23:21
a8edb8f
Compare
Choose a tag to compare
Update serverspec to get better network port closed test (#256)

Now we have better "is port not listening" test in serverspec with https://github.com/mizzy/specinfra/pull/716, we can uncomment some tests that weren't working so well due to ports on windows staying in a TIME_WAIT state.

v4.0.900

18 Apr 01:36
807dbac
Compare
Choose a tag to compare
Fix up worker pool handling (#255)

We were treating workers as deployment targets, and trying to retrieve them from the /api/machines endpoint. They actually live under the /api/workers endpoint.
This also forces the Get-WorkerPoolMembership function to return an array, in an attempt to fix #245.

Maybe fixes #245