-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V5 Development Tracker #357
Labels
Comments
FYI - we released |
FYI - We released |
FYI - We released |
2 tasks
This was referenced Mar 20, 2025
ResourceRecordSet object always has a
weight
property even when Weighted Routing is not enabled
#344
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
V5 Development Tracker
This issue is for tracking the changes being made for V5 of the AWS Tools for PowerShell. Development of V5 is happening in the
v5-development
branch in this repository. V5 is an evolutionary major version change with minimal breaking changes so existing code can upgrade to V5 with low effort.Breaking changes
Installing AWSPowerShell Preview Modules
Installing AWS Tools Preview Modules
Import AWS Tools for PowerShell Modules
Please note that you are required to import AWS.Tools.Common by invoking Import-Module -Name AWS.Tools.Common before importing any other AWS.Tools service modules. Normally, AWS.Tools.Common is automatically imported when importing a service module but there is a PowerShellGet bug preventing preview modules from specifying other preview modules as RequiredModules.
5.0.0-preview001
5.0.0-preview002
5.0.0-preview003
Enhanced
Start-SSMSession
cmdlet with interactive session capabilities via Session Manager plugin, and added a new DisablePluginInvocation parameter for legacy behavior support. This behavior now aligns with the AWS CLI behavior.Start-SSMSession -Target 'i-1234567890abcdef0' -DisablePluginInvocation
S3 cmdlets
Copy-S3Object
,Get-S3Object
,Get-S3ObjectV2
,Read-S3Object
,Remove-S3Object
,Set-S3ACL
andWrite-S3Object
remove leading spaces, forward(/) and backslashes() from theKey
andKeyPrefix
parameter. This behavior is changed in V5 to not clean the keys by default. To enable legacy behavior, useEnableLegacyKeyCleaning
parameter.Write-S3Object -BucketName 'my-bucket' -Key 'my/path/file.txt' -File 'local/file.txt' -EnableLegacyKeyCleaning
Updated credential resolution mechanism by removing resolution logic from PowerShell. PowerShell SDK relies on .NET SDK for credential resolution. This change inherits several mechanisms that .NET SDK supports. e.g support for
AWS_PROFILE
environment variable.Deprecated and removed obsolete components:
Invoke-LMFunctionAsync
cmdletGet-EC2ImageByName
cmdletCalculateContentMD5Header
parameter fromWrite-S3Object
Added comprehensive
DryRun
parameter support across many EC2 APIs, removing previous exclusions.New-EC2Instance -ImageId 'ami-12345678' -InstanceType 't2.micro' -DryRun $true
Modified
Get-CWAlarm
output to return both Metric and Composite CloudWatch alarms by default, and fixedAlarmType
parameter behavior to filter alarms.Get-CWAlarm -AlarmType 'CompositeAlarm'
Removed dependency from
LitJson
library, replaced withSystem.Text.Json
.AWS Tools for PowerShell now use AWS .NET SDK 4.0.0.0 and leverage its new features and improvements. For more details checkout
The text was updated successfully, but these errors were encountered: