Skip to content
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

Round out --use scenario (add "use" sub-command, add local file, add .bacpac / .mdf & .ldf / compressed file support) #319

Draft
wants to merge 41 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
0e6223f
Round out --use scenario
stuartpa Apr 6, 2023
f0b9f3b
Adding unit test coverage
stuartpa Apr 6, 2023
0a8ac1c
Saving changes
stuartpa Apr 26, 2023
964fcb8
Saving changes
stuartpa Apr 27, 2023
8579e37
Saving changes
stuartpa Apr 28, 2023
44d82f0
Saving changes
stuartpa Apr 28, 2023
a47d898
Saving changes
stuartpa May 3, 2023
a6b0d83
Saving changes
stuartpa May 3, 2023
abff8b6
Saving changes
stuartpa May 5, 2023
e70df94
Merge branch 'main' into stuartpa/sqlcmd-urls
stuartpa May 22, 2023
99a9267
Merge main
stuartpa May 31, 2023
4b895c1
Skip test to get signed build
stuartpa Jun 7, 2023
888a487
Enable build for Linux
stuartpa Jun 7, 2023
1ce062a
Create destFolder for local file
stuartpa Jun 8, 2023
cdd40f2
Add support Azure Storage SAS URLs)
stuartpa Jun 8, 2023
8b8ef64
Add-ons initial
stuartpa Dec 23, 2023
9e745c0
Saving changes
stuartpa Dec 24, 2023
a1ca145
Merge conflicts
stuartpa Dec 26, 2023
7cf2691
Merged add-ons
stuartpa Dec 26, 2023
ec08c06
Merged add-ons
stuartpa Dec 26, 2023
1b5a4c3
Add-on fleet-manager
stuartpa Dec 29, 2023
7c78a44
Add-on fleet-manager
stuartpa Dec 29, 2023
d42b514
sqlcmd create --use https://*.git working
stuartpa Jan 10, 2024
9209cad
sqlcmd deploy
stuartpa Feb 1, 2024
5233a42
Added .sqlcmd/sqlcmd.yaml support
stuartpa Feb 7, 2024
d9b0993
Added .sqlcmd/sqlcmd.yaml support
stuartpa Feb 7, 2024
7525053
Add azd as a tool
stuartpa Feb 10, 2024
9282eaa
adding mac support
stuartpa Feb 11, 2024
12c2f73
Tested Mac support
Feb 12, 2024
cb34e92
Merge branch 'stuartpa/sqlcmd-urls' of https://github.com/microsoft/g…
Feb 12, 2024
e95442a
Mac support
stuartpa Feb 12, 2024
7c4472f
Fix Mac issue
Feb 12, 2024
e1a6bdb
Remove customer go-sqlcmddb
stuartpa Feb 13, 2024
d4a205e
Remove customer go-sqlcmddb
stuartpa Feb 13, 2024
7ffd5e9
Add linux stubs
stuartpa Feb 14, 2024
f26a522
Add linux stubs
stuartpa Feb 14, 2024
91584e4
Fix panic when ads not installed
stuartpa Feb 22, 2024
d6531a1
Upgrade to go 1.20 required
stuartpa Feb 22, 2024
b708505
Upgrade to go 1.20 required
stuartpa Feb 22, 2024
17093e9
Fix issue with keyvault not being excluded on non windows os
stuartpa Feb 22, 2024
2cc4c97
Remove TEMP output if azd init not run
stuartpa Feb 22, 2024
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
1 change: 1 addition & 0 deletions cmd/modern/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ func (c *Root) SubCommands() []cmdparser.Command {
cmdparser.New[*root.Start](dependencies),
cmdparser.New[*root.Stop](dependencies),
cmdparser.New[*root.Uninstall](dependencies),
cmdparser.New[*root.Use](dependencies),
}

// BUG(stuartpa): - Add Linux support
Expand Down
Loading