Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
24a2db9
Create extension
Oct 22, 2025
f5b4378
Update src/migrate/azext_migrate/__init__.py
saifaldin14 Oct 22, 2025
67bb359
Fix import issues
Oct 22, 2025
70c525b
Merge branch 'main' of https://github.com/saifaldin14/azure-cli-exten…
Oct 22, 2025
c3021fb
Update src/migrate/setup.py
saifaldin14 Oct 22, 2025
f6e2dd8
Small
Oct 22, 2025
0174a38
Merge branch 'main' of https://github.com/saifaldin14/azure-cli-exten…
Oct 22, 2025
ae26651
Small lint
Oct 22, 2025
09ff801
Small
Oct 22, 2025
749bd43
disable lint for this check
Oct 22, 2025
8002b06
Add json
Oct 22, 2025
be276db
Fix licesnse issue
Oct 22, 2025
8da3466
fix small
Oct 22, 2025
d9fa098
Small
Oct 22, 2025
68f0d46
Get rid of unused variables
Oct 22, 2025
f916208
Add service name and code owner
Oct 23, 2025
9ad08a3
Merge branch 'main' of https://github.com/saifaldin14/azure-cli-exten…
Oct 23, 2025
8ae69d2
New version
Oct 23, 2025
532cbb3
Style
Oct 23, 2025
f216aa3
Small
Oct 23, 2025
77d8eb0
Update
Oct 23, 2025
f7558d6
Follow standard
Oct 23, 2025
ea8d636
Add suggestions
Oct 23, 2025
7117986
Small
Oct 23, 2025
143028f
Not preview
Oct 23, 2025
242fb99
Add flag to become experimental
Oct 23, 2025
4dae020
Merge branch 'Azure:main' into main
saifaldin14 Oct 23, 2025
6a1f184
Update history
Oct 23, 2025
4178016
Merge branch 'main' of https://github.com/saifaldin14/azure-cli-exten…
Oct 23, 2025
8874d5e
Fix
Oct 23, 2025
38b0de2
small
Oct 23, 2025
0f7acb7
Create get job and remove replication commands
Oct 24, 2025
6cd9f31
Revert "Create get job and remove replication commands"
Oct 28, 2025
ce78b73
Merge branch 'Azure:main' into main
saifaldin14 Oct 28, 2025
047528f
Update version
Oct 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/migrate/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ Release History
+++++++++++++++
* New version.

2.0.1b1
+++++++++++++++
* Switch to experimental version.
Comment on lines +14 to +16
Copy link

Copilot AI Jan 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version entry "2.0.1b1" should be placed at the top of the Release History section, not at the bottom. In HISTORY.rst files, versions are listed in reverse chronological order with the newest version first. Since "2.0.1b1" is the most recent version, it should appear above "2.0.0" in the file.

Copilot uses AI. Check for mistakes.
3 changes: 2 additions & 1 deletion src/migrate/azext_migrate/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"azext.minCliCoreVersion": "2.75.0"
"azext.minCliCoreVersion": "2.75.0",
"azext.isPreview": true
}
2 changes: 1 addition & 1 deletion src/migrate/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from setuptools import setup, find_packages

VERSION = "2.0.0"
VERSION = "2.0.1b1"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down
Loading