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
Copy file name to clipboardExpand all lines: src/ResourceManager/Profile/ChangeLog.md
+17-2Lines changed: 17 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,22 @@
20
20
## Current Release
21
21
22
22
## Version 3.4.0
23
-
23
+
* Start-Job Support for AzureRm cmdlets.
24
+
* All AzureRmCmdlets add -AzureRmContext parameter, which can accept a context (output of a Context cmdlet).
25
+
- Common pattern for jobs with context persistence DISABLED: ```Start-Job {param ($context) New-AzureRmVM -AzureRmContext $context [... other parameters]} -ArgumentList (Get-AzureRmContext)```
26
+
- Common pattern for jobs with context persistence ENABLED:```Start-Job {New-AzureRmVM [... other parameters]}```
27
+
* Persist login information across sessions, new cmdlets:
28
+
- Enable-AzureRmContextAutosave - Enable login persistence across sessions.
29
+
- Disable-AzureRmContextAutosave - Disable login persistence across sessions.
30
+
* Manage context information, new cmdets
31
+
- Select-AzureRmContext - Select the active named context.
32
+
- Rename-AzureRmContext - Rename an exsiting context for easy reference.
33
+
- Remove-AzureRmContext - Remove an existing context.
34
+
- Remove-AzureRmAccount - Remove all credentials, subscriptions, and tenants associated with an account.
35
+
* Manage context information, cmdlet changes:
36
+
- Added Scope = (Process | CurrentUser) to all cmdlets that change credentials
37
+
- Get-AzureRmContext - Added ListAvailable parameter to list all saved contexts
38
+
24
39
## Version 3.3.1
25
40
26
41
## Version 3.3.0
@@ -71,4 +86,4 @@
71
86
## Version 2.3.0
72
87
* Add-AzureRmAccount
73
88
- Add position for Credential parameter so the following command is allowed: Add-AzureRmAccount (Get-Credential)
74
-
- Updated parameter sets so the SubscriptionId and SubscriptionName are mutually exclusive
89
+
- Updated parameter sets so the SubscriptionId and SubscriptionName are mutually exclusive
0 commit comments