Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions cli/azd/extensions/azure.ai.agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 0.1.24-preview (Unreleased)

### Breaking Changes

- Removed `-e` shorthand for `--environment`; use `--environment` instead. This resolves a collision with the azd global `-e/--environment` flag.

## 0.1.23-preview (2026-04-16)

- [[#7753]](https://github.com/Azure/azure-dev/pull/7753) Fix `azd ai agent init` to pass the current directory as a positional argument to `azd init`, resolving failures caused by a missing `cwd` assumption in the underlying azd call.
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.agents/internal/cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ func newInitCommand(rootFlags *rootFlagsDefinition) *cobra.Command {
cmd.Flags().StringVarP(&flags.src, "src", "s", "",
"Directory to download the agent definition to (defaults to 'src/<agent-id>')")

cmd.Flags().StringVarP(&flags.env, "environment", "e", "", "The name of the azd environment to use.")
cmd.Flags().StringVar(&flags.env, "environment", "", "The name of the azd environment to use.")
Comment thread
jongio marked this conversation as resolved.

cmd.Flags().StringSliceVar(&flags.protocols, "protocol", nil,
"Protocols supported by the agent (e.g., 'responses', 'invocations'). Can be specified multiple times.")
Expand Down
6 changes: 6 additions & 0 deletions cli/azd/extensions/azure.ai.finetune/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Release History


## 0.0.18-preview (Unreleased)

### Breaking Changes

- Removed `-e` shorthand for `--project-endpoint`; use `--project-endpoint` instead. This resolves a collision with the azd global `-e/--environment` flag.

## 0.0.17-preview (2026-02-20)

- Add multi-grader support for reinforcement fine-tuning
Expand Down
4 changes: 1 addition & 3 deletions cli/azd/extensions/azure.ai.finetune/internal/cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,8 @@ func newInitCommand(rootFlags rootFlagsDefinition) *cobra.Command {
cmd.Flags().StringVarP(&flags.subscriptionId, "subscription", "s", "",
"Azure subscription ID")

cmd.Flags().StringVarP(&flags.projectEndpoint, "project-endpoint", "e", "",
cmd.Flags().StringVar(&flags.projectEndpoint, "project-endpoint", "",
"Azure AI Foundry project endpoint URL (e.g., https://account.services.ai.azure.com/api/projects/project-name)")
cmd.Flags().Lookup("project-endpoint").ShorthandDeprecated =
"use --project-endpoint instead; -e will be removed in a future release"

cmd.Flags().StringVarP(&flags.src, "working-directory", "w", "",
"Local path for project output")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,8 @@ func newOperationCommand() *cobra.Command {

cmd.PersistentFlags().StringVarP(&flags.subscriptionId, "subscription", "s", "",
"Azure subscription ID (enables implicit init if environment not configured)")
cmd.PersistentFlags().StringVarP(&flags.projectEndpoint, "project-endpoint", "e", "",
cmd.PersistentFlags().StringVar(&flags.projectEndpoint, "project-endpoint", "",
"Azure AI Foundry project endpoint URL (e.g., https://account.services.ai.azure.com/api/projects/project-name)")
cmd.PersistentFlags().Lookup("project-endpoint").ShorthandDeprecated =
"use --project-endpoint instead; -e will be removed in a future release"

cmd.AddCommand(newOperationSubmitCommand())
cmd.AddCommand(newOperationShowCommand())
Expand Down
6 changes: 6 additions & 0 deletions cli/azd/extensions/azure.ai.models/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Release History


## 0.0.6-preview (Unreleased)

### Breaking Changes

- Removed `-e` shorthand for `--project-endpoint`; use `--project-endpoint` instead. This resolves a collision with the azd global `-e/--environment` flag.

## 0.0.5-preview (2026-03-24)
Comment thread
jongio marked this conversation as resolved.

- Deprecated `-e` shorthand for `--project-endpoint`; use the full flag name instead
Expand Down
4 changes: 1 addition & 3 deletions cli/azd/extensions/azure.ai.models/internal/cmd/custom.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,8 @@ func newCustomCommand() *cobra.Command {

customCmd.PersistentFlags().StringVarP(&flags.subscriptionId, "subscription", "s", "",
"Azure subscription ID")
customCmd.PersistentFlags().StringVarP(&flags.projectEndpoint, "project-endpoint", "e", "",
customCmd.PersistentFlags().StringVar(&flags.projectEndpoint, "project-endpoint", "",
"Azure AI Foundry project endpoint URL (e.g., https://account.services.ai.azure.com/api/projects/project-name)")
customCmd.PersistentFlags().Lookup("project-endpoint").ShorthandDeprecated =
"use --project-endpoint instead; -e will be removed in a future release"

customCmd.AddCommand(newCustomCreateCommand(flags))
customCmd.AddCommand(newCustomListCommand(flags))
Expand Down
4 changes: 1 addition & 3 deletions cli/azd/extensions/azure.ai.models/internal/cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,8 @@ The init command will:
cmd.Flags().StringVarP(&flags.subscriptionId, "subscription", "s", "",
"Azure subscription ID")

cmd.Flags().StringVarP(&flags.projectEndpoint, "project-endpoint", "e", "",
cmd.Flags().StringVar(&flags.projectEndpoint, "project-endpoint", "",
"Azure AI Foundry project endpoint URL (e.g., https://account.services.ai.azure.com/api/projects/project-name)")
Comment thread
jongio marked this conversation as resolved.
cmd.Flags().Lookup("project-endpoint").ShorthandDeprecated =
"use --project-endpoint instead; -e will be removed in a future release"

cmd.Flags().StringVarP(&flags.projectResourceId, "project-resource-id", "p", "",
"ARM resource ID of the Foundry project")
Expand Down
Loading