Releases: webmd-health-services/BuildMasterAutomation
Releases · webmd-health-services/BuildMasterAutomation
0.8.0
- Added support for BuildMaster 6.1.17. Fixed an issue where environments created with
New-BMEnvironment
are disabled/inactive in that version. - Added
Inactive
switch toNew-BMEnvironment
to create inactive/disabled environments. The default is to create active/enabled environments.
0.7.1
0.7.0
- Created
Get-BMServerRole
,New-BMServerRole
, andRemove-BMServerRole
functions for managing server roles. - Created
Get-BMServer
,New-BMServer
, andRemove-BMServer
functions for managing servers. - Created
Get-BMEnvironment
,New-BMEnvironment
,Disable-BMEnvironment
, andEnable-BMEnvironment
functions for managing environments. - Created
Get-BMVariable
,Remove-BMVariable
, andSet-BMVariable
functions for managing variables.
0.6.0
- Created
Get-BMDeployment
function to retrieve deployment information for release packages.
0.5.0
This relese contains breaking changes. Please read the release notes carefully for upgrade instructions.
- Created
Stop-BMRelease
function for canceling releases. - Fixed: module functions don't respect calling scope preferences (e.g. VerbosePreference, ErrorActionPreference, etc.).
- Added
Force
switch toPublish-BMReleasePackage
to force BuildMaster to deploy a package when it normally wouldn't. - Changed the default HTTP method on
Invoke-BMRestMethod
andInvoke-BMNativeApiMethod
fromPOST
toGET
. Update all your usages of these functions to add an explicit-Method Post
parameter. - Fixed:
Import-BuildMasterAutomation.ps1
script fails to remove exiting BuildMasterAutomation modules before re-importing whenWhatIfPreference
istrue
. - Added
WhatIf
support toInvoke-BMRestMethod
andInvoke-BMNativeApiMethod
. - Fixed:
Invoke-BMNativeApiMethod
fails when making HTTP GET requests.