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
@@ -69,6 +69,10 @@ Function Get-AttributeSpecificMessage
69
69
{
70
70
[CmdletBinding()]
71
71
Param (
72
+
[Parameter()]
73
+
[string]
74
+
$ModuleName,
75
+
72
76
[Parameter()]
73
77
[System.Object]
74
78
$attribute
@@ -89,7 +93,7 @@ Function Get-AttributeSpecificMessage
89
93
{
90
94
$Message="- $Message"
91
95
}
92
-
$Message+="`n- This change is expected to take effect from version: $($attribute.DeprecateByVersion) and Az version: $($attribute.DeprecateByAzVersion)"
96
+
$Message+="`n- This change is expected to take effect from $ModuleNameversion: $($attribute.DeprecateByVersion) and Az version: $($attribute.DeprecateByAzVersion)"
93
97
Return$Message
94
98
}
95
99
@@ -98,6 +102,10 @@ Function Find-ParameterBreakingChange
98
102
{
99
103
[CmdletBinding()]
100
104
Param (
105
+
[Parameter()]
106
+
[string]
107
+
$ModuleName,
108
+
101
109
[Parameter()]
102
110
[System.Management.Automation.ParameterMetadata]
103
111
$ParameterInfo
@@ -107,7 +115,7 @@ Function Find-ParameterBreakingChange
107
115
{
108
116
If (Test-TypeIsGenericBreakingChangeWithVersionAttribute$attribute.TypeId)
0 commit comments