You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
While working with @sheldonhull in the PowerShell Slack on using VaporShell, they ran into a couple issues:
Large templates would break when exporting to JSON, specifically in Windows PowerShell where Export-VaporShell pipes into a private function named Format-Json that cleans up white-space resulting from ConvertTo-Json in Windows PowerShell (PowerShell Core does not have this issue).
Templates containing special characters (<,>, etc) such as imported UserData can break due to conversion of those characters to their unicode counterparts.
Working on resolving by either using Newtonsoft.Json to handle serialization to JSON or adding extra guards and cleanup using native PowerShell.
The text was updated successfully, but these errors were encountered:
## 2.7.0 - 2019-03-08
* [Issue #48](#48)
* Fixed: Export-VaporShell was having various failures due to the Format-Json private function called during JSON conversion.
* Miscellaneous
* Brought Resource Type and Property Type functions up to current spec sheet.
* Added: Watch and Force parameters to New-VSStack and New-VSChangeSet to watch and/or force stack creation.
* Added: Watch parameter to Remove-VSStack and Invoke-VSChangeSetExecution to watch stack events.
* Updated: Watch-Stack to handle multiple stack watching at once.
## 2.7.2
* [Issue #48](#48)
* Fixed: New-VaporMetadata now allows colons : in the LogicalId.
* Miscellaneous
* Brought Resource Type and Property Type functions up to current spec sheet.
* Removed automatic inclusion of AWSTemplateFormatVersion from templates created with Initialize-VaporShell.
* Set Description parameter as Position
While working with @sheldonhull in the PowerShell Slack on using VaporShell, they ran into a couple issues:
Export-VaporShell
pipes into a private function namedFormat-Json
that cleans up white-space resulting fromConvertTo-Json
in Windows PowerShell (PowerShell Core does not have this issue).<
,>
, etc) such as imported UserData can break due to conversion of those characters to their unicode counterparts.Working on resolving by either using Newtonsoft.Json to handle serialization to JSON or adding extra guards and cleanup using native PowerShell.
The text was updated successfully, but these errors were encountered: