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: docs/how-to-update-az-module-spec.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ Have the following installed on your system:
53
53
54
54
1. Update the Az PowerShell module version listed in documentation, function help, function
55
55
parameter validation, and unit tests. The easiest way to do this is to perform a search to find
56
-
and replace the old version. For example, search for '5.2.0' and replace with '5.6.0'.
56
+
and replace the previous version. The previous version can be found under `\powershell-module\Az.Tools.Migration\Resources\ModuleSpecs\Az`. For example, search for '5.2.0' and replace with '5.6.0'. Please do not replace all because some files containing previous version, such as changelog, should not be replaced.
57
57
58
58
1. Remove the old module spec files from module resources:
@@ -74,4 +74,6 @@ Have the following installed on your system:
74
74
75
75
Restart PowerShell if test is changed and module needs to be imported again.
76
76
77
+
1. Add new version and release notes to `powershell-module/ChangeLog.md` and `powershell-module/Az.Tools.Migration/Az.Tools.Migration.psd1`. It is usually patch release because no API changes
78
+
77
79
1. Submit a pull request to commit the new changes.
Copy file name to clipboardexpand all lines: powershell-module/Az.Tools.Migration/Functions/Public/Invoke-AzUpgradeModulePlan.ps1
+2-2
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ function Invoke-AzUpgradeModulePlan
23
23
The following example invokes the upgrade plan for a PowerShell module named "myModule" and saves the updated file contents into new files (leaving original files unmodified).
24
24
25
25
# step 1: generate a plan and save it to a variable.
0 commit comments