-
Notifications
You must be signed in to change notification settings - Fork 4.1k
GA Az.DataMigration #28598
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
GA Az.DataMigration #28598
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -81,6 +81,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.0'; }, | |||||
@{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.19.4'; }, | ||||||
@{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.1.0'; }, | ||||||
@{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.5.0'; }, | ||||||
@{ModuleName = 'Az.DataMigration'; RequiredVersion = '0.15.0'; }, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. RequiredVersion is set to 0.15.0 while MinimalVersion.csv declares Az.DataMigration at 1.0.0 and the ChangeLog announces GA. This will cause the Az rollup to pull a pre-GA version. Update RequiredVersion to '1.0.0' to align with the GA promotion.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
@{ModuleName = 'Az.DataProtection'; RequiredVersion = '2.7.0'; }, | ||||||
@{ModuleName = 'Az.DataShare'; RequiredVersion = '1.1.1'; }, | ||||||
@{ModuleName = 'Az.DataTransfer'; RequiredVersion = '1.0.0'; }, | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
"Module","Minimal Version" | ||
"Az.StorageDiscovery","1.0.0" | ||
"Az.StorageDiscovery","1.0.0" | ||
"Az.DataMigration","1.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ChangeLog entries under Upcoming Release should use past tense per repository guidelines. Suggested revision: "* Made module Az.DataMigration generally available." or "* Module Az.DataMigration reached general availability."
Copilot uses AI. Check for mistakes.