{"id":3947,"date":"2026-07-30T13:20:10","date_gmt":"2026-07-30T20:20:10","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/azure-sdk\/?p=3947"},"modified":"2026-07-30T13:20:36","modified_gmt":"2026-07-30T20:20:36","slug":"azure-developer-cli-azd-july-2026","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/azure-sdk\/azure-developer-cli-azd-july-2026\/","title":{"rendered":"Azure Developer CLI (azd) July 2026"},"content":{"rendered":"<p>This is the July round-up for the Azure Developer CLI (<code>azd<\/code>). Five releases shipped since the last post: <a href=\"https:\/\/github.com\/Azure\/azure-dev\/releases\/tag\/azure-dev-cli_1.27.0\">1.27.0<\/a>, <a href=\"https:\/\/github.com\/Azure\/azure-dev\/releases\/tag\/azure-dev-cli_1.27.1\">1.27.1<\/a>, <a href=\"https:\/\/github.com\/Azure\/azure-dev\/releases\/tag\/azure-dev-cli_1.28.0\">1.28.0<\/a>, <a href=\"https:\/\/github.com\/Azure\/azure-dev\/releases\/tag\/azure-dev-cli_1.28.1\">1.28.1<\/a>, and <a href=\"https:\/\/github.com\/Azure\/azure-dev\/releases\/tag\/azure-dev-cli_1.29.0\">1.29.0<\/a>. Below is what&#8217;s new, what changed, and what we fixed, with links to the pull requests if you want to dig in.<\/p>\n<p>Have feedback or questions? Join the <a href=\"https:\/\/github.com\/Azure\/azure-dev\/discussions\/\">release discussion on GitHub<\/a>.<\/p>\n<p><strong>Highlights:<\/strong><\/p>\n<ul>\n<li>A new <code>azd tool uninstall<\/code> command completes the tool install, upgrade, and uninstall lifecycle.<\/li>\n<li>Extensions can install directly from a registry location with <code>-s\/--source<\/code>, and skip dependency resolution with <code>--no-dependencies<\/code>.<\/li>\n<li>Model Azure AI Foundry projects, agents, and related resources directly in <code>azure.yaml<\/code>.<\/li>\n<li>Container deployment for Azure App Service lets you push an image and run Web App for Containers with <code>host: appservice<\/code> and <code>language: docker<\/code>.<\/li>\n<li><code>azd<\/code> automatically switches to non-interactive mode when it detects a CI\/CD or AI-agent environment, so commands fail fast instead of hanging on a prompt.<\/li>\n<li>Breaking change: the skill <code>--host<\/code> flag on <code>azd tool<\/code> commands is renamed to <code>--agent<\/code>.<\/li>\n<\/ul>\n<h2>\ud83c\udf10 Microsoft Foundry at the AI Engineer World&#8217;s Fair<\/h2>\n<p>In Pablo Castro&#8217;s (Microsoft) &#8220;On AI and Knowledge&#8221; session at the AI Engineer World&#8217;s Fair, the Microsoft Foundry team showed their command-line experience built on top of the <code>azd<\/code> extension platform. It&#8217;s a great example of what teams can deliver on the extension framework, and it&#8217;s the kind of CLI story the platform is designed to enable. Watch the <a href=\"https:\/\/www.youtube.com\/live\/htM02KMNZnk?t=1540s\">demo segment on YouTube<\/a> to see it in action. Thanks to the Microsoft Foundry team for building on <code>azd<\/code>!<\/p>\n<h2>New features<\/h2>\n<h3>\ud83d\udd0c Extensions<\/h3>\n<p>We continued to smooth out the extension install and authoring experience across these releases.<\/p>\n<ul>\n<li><code>azd extension install<\/code>, <code>azd extension upgrade<\/code>, and <code>azd extension list<\/code> now accept a registry location directly with <code>-s\/--source<\/code> (a URL or local path), so you no longer need to run <code>azd extension source add<\/code> first. Direct locations are validated and registered as persisted sources before resolution continues. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8792\">[#8792]<\/a><\/li>\n<li>Add a <code>--no-dependencies<\/code> flag to <code>azd extension install<\/code> that installs only the named extension without resolving or installing its declared dependencies. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8927\">[#8927]<\/a><\/li>\n<li>Expose expanded service-level <code>env<\/code> values from <code>azure.yaml<\/code> to the extension service configuration, so extensions can read the same environment values <code>azd<\/code> resolves. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8936\">[#8936]<\/a><\/li>\n<\/ul>\n<h3>\ud83e\uddf0 Tool management<\/h3>\n<ul>\n<li>Add the <code>azd tool uninstall<\/code> command to complete the tool install, upgrade, and uninstall lifecycle. It supports <code>--all<\/code>, <code>--dry-run<\/code>, interactive multi-select, per-agent skill removal, and <code>--output json<\/code>. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8794\">[#8794]<\/a><\/li>\n<\/ul>\n<h3>\ud83e\udd16 Azure AI Foundry modeling<\/h3>\n<ul>\n<li>Add support for modeling Azure AI Foundry projects, agents, and related resources directly in <code>azure.yaml<\/code>, including <code>$ref<\/code> file includes, secure-by-default networking, and Bicep-less and Terraform-less init paths. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8818\">[#8818]<\/a><\/li>\n<\/ul>\n<h3>\ud83c\udfd7\ufe0f Provisioning and deployment<\/h3>\n<p>These changes broaden what <code>azd<\/code> can deploy and let extensions participate in provisioning validation regardless of the provider.<\/p>\n<ul>\n<li>Add container deployment support for Azure App Service. Services configured with <code>host: appservice<\/code> and <code>language: docker<\/code> (or <code>docker.path<\/code>) now push the container image to Azure Container Registry (ACR) and update the site&#8217;s container configuration, enabling Web App for Containers scenarios. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8847\">[#8847]<\/a><\/li>\n<li>Add a provider-agnostic <code>provision<\/code> validation check that runs before provisioning for every provider. Extensions with the <code>validation-provider<\/code> capability can now contribute client-side checks that run regardless of the provisioning provider (Bicep, Terraform, or an extension-provided provider), not just during Bicep local preflight. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9019\">[#9019]<\/a><\/li>\n<\/ul>\n<h3>\ud83e\udd16 CI\/CD and agent environments<\/h3>\n<ul>\n<li>Automatically enable non-interactive (no-prompt) mode when <code>azd<\/code> detects a continuous integration and delivery (CI\/CD) or AI-agent environment, so commands fail fast with a clear error instead of hanging on a prompt. Set <code>AZD_NON_INTERACTIVE=false<\/code> to opt out. Confirmation prompts now also honor their default value when there is no more input on standard input. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9125\">[#9125]<\/a><\/li>\n<\/ul>\n<h2>Breaking changes<\/h2>\n<ul>\n<li><strong>The skill <code>--host<\/code> flag is now <code>--agent<\/code>.<\/strong> On <code>azd tool install<\/code>, <code>azd tool upgrade<\/code>, and <code>azd tool uninstall<\/code>, the <code>--host<\/code> flag is renamed to <code>--agent<\/code>. Installed skills in <code>azd tool list --output json<\/code> and <code>azd tool check --output json<\/code> now expand into one row per agent and include an <code>agent<\/code> field. Update any scripts or JSON consumers that pass <code>--host<\/code> or read the previous shape. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9045\">[#9045]<\/a><\/li>\n<\/ul>\n<h2>\ud83e\udeb2 Bugs fixed<\/h2>\n<h3>Extensions and tools<\/h3>\n<ul>\n<li>Fix <code>azd tool install azure-skills<\/code> mistaking the Visual Studio Code Copilot Chat launcher stub for a working Copilot Command Line Interface (CLI) host. Host selection now uses a functional probe, so installs no longer silently no-op on macOS or get stuck on a PATH prompt on Linux. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8805\">[#8805]<\/a><\/li>\n<li>Fix <code>azd tool uninstall<\/code> failing for Visual Studio Code extensions that have dependents (for example, <code>vscode-azure-tools<\/code>) and for the GitHub Copilot CLI when installed via Homebrew cask on macOS and Linux. Uninstall now detects which package manager owns the install and removes it accordingly, with guidance when a self-managed install requires manual removal. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8875\">[#8875]<\/a><\/li>\n<li>Fix generated <code>azd extension install<\/code> completions to offer extension IDs and <code>.zip<\/code> file paths. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8887\">[#8887]<\/a><\/li>\n<li>Fix <code>azd extension install<\/code> intermittently failing on Windows with an &#8220;Access is denied&#8221; error when replacing an extension executable held by a transient file lock. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9161\">[#9161]<\/a><\/li>\n<li>Fix concurrent extension updates to <code>azure.yaml<\/code> losing service fields by serializing project configuration writes. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9211\">[#9211]<\/a><\/li>\n<li>Fix and improve automatic installation of project extension requirements so <code>azd<\/code> resolves every missing provider declared or inferred from <code>azure.yaml<\/code> before project commands run, instead of failing on the first unsupported one. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9218\">[#9218]<\/a><\/li>\n<\/ul>\n<h3>Provisioning and configuration<\/h3>\n<ul>\n<li>Fix <code>azd env refresh<\/code> for projects using extension-provided service hosts or provisioning providers, and report success when no deployment exists yet. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9017\">[#9017]<\/a><\/li>\n<li>Fix <code>azure.yaml<\/code> serialization writing empty <code>project<\/code> and <code>language<\/code> fields for services using code-less resource hosts such as <code>azure.ai.project<\/code>, <code>azure.ai.connection<\/code>, and <code>microsoft.foundry<\/code>; these fields are now omitted when empty. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8937\">[#8937]<\/a><\/li>\n<li>Exclude deprecated models by default from the model catalog and quota prompts. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8842\">[#8842]<\/a><\/li>\n<li>Stop forwarding dynamic linker and loader control variables (such as <code>LD_PRELOAD<\/code>, <code>LD_LIBRARY_PATH<\/code>, <code>LD_AUDIT<\/code>, and <code>DYLD_INSERT_LIBRARIES<\/code>) defined in an environment&#8217;s <code>.env<\/code> file into tool subprocesses like docker, npm, and python. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8949\">[#8949]<\/a><\/li>\n<li>Fix <code>azd deploy<\/code> for container-based Azure App Service services overwriting unrelated site configuration; the container image is now updated through the dedicated App Service configuration endpoint. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9281\">[#9281]<\/a><\/li>\n<\/ul>\n<h3>Continuous integration and updates<\/h3>\n<ul>\n<li>Fix <code>azd down --no-prompt<\/code> hanging in CI\/CD for Terraform-based projects by auto-approving the destroy when running non-interactively, and fix <code>azd down --force<\/code> failing with a backend initialization error on a fresh agent. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9143\">[#9143]<\/a><\/li>\n<li>Fix the <code>azd update<\/code> follow-up command to use <code>azd version<\/code>. Thanks <a href=\"https:\/\/github.com\/rguptar\">@rguptar<\/a> for the contribution! <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9083\">[#9083]<\/a><\/li>\n<\/ul>\n<h2>Other changes<\/h2>\n<ul>\n<li>Expose a service&#8217;s <code>uses<\/code> (dependency) list on the extension Software Development Kit (SDK) <code>ServiceConfig<\/code>, so extensions can read service and resource dependencies directly instead of via <code>SetServiceConfigValue<\/code>. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/8838\">[#8838]<\/a><\/li>\n<li>Add an extension SDK helper that validates provider declarations in <code>extension.yaml<\/code> against the providers registered by extension code. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9033\">[#9033]<\/a><\/li>\n<li>Send Azure Resource Manager (ARM) request correlation IDs as a canonical hyphenated globally unique identifier, derived losslessly from the OpenTelemetry trace ID, instead of an undecorated 32-character string. This covers both the <code>x-ms-correlation-request-id<\/code> header on <code>azd<\/code>&#8216;s direct ARM calls and the <code>ARM_CORRELATION_REQUEST_ID<\/code> value passed to the Terraform AzureRM provider, aligning <code>azd<\/code> with the ARM spec and other Azure tooling. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9141\">[#9141]<\/a><\/li>\n<li>Stop showing the automatic <code>azd tool<\/code> first-run install prompt and periodic update notifications. Explicit <code>azd tool<\/code> commands are unchanged. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9261\">[#9261]<\/a><\/li>\n<li>Emit the <code>infra.provider<\/code> telemetry attribute on <code>provision<\/code>, <code>up<\/code>, and <code>down<\/code> so provisioning runs can be segmented by infrastructure provider. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9091\">[#9091]<\/a><\/li>\n<li>Recognize <code>azd<\/code> invocations from Microsoft Foundry Skill in the <code>execution.environment<\/code> telemetry field. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9167\">[#9167]<\/a><\/li>\n<li>Report the GitHub Copilot app separately from the GitHub Copilot CLI in the <code>execution.environment<\/code> telemetry field. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9288\">[#9288]<\/a><\/li>\n<li>Update the bundled GitHub CLI to v2.96.0. <a href=\"https:\/\/github.com\/Azure\/azure-dev\/pull\/9245\">[#9245]<\/a><\/li>\n<\/ul>\n<h2>New docs<\/h2>\n<p>New and updated <code>azd<\/code> docs on Microsoft Learn:<\/p>\n<ul>\n<li><strong><a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/development-tools\">Manage Azure development tools with <code>azd tool<\/code><\/a><\/strong> (July 27) \u2014 Updated to reflect the 1.28.1 change that removes the automatic <code>azd tool<\/code> first-run install prompt and periodic update notifications, so the reference now matches the current on-demand behavior.<\/li>\n<li><strong><a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/configure-devops-pipeline\">Configure a pipeline and push updates using Azure Pipelines<\/a><\/strong> (July 28) \u2014 Corrected the OpenID Connect (OIDC) and federated credential guidance for <code>azd pipeline config<\/code> with Azure DevOps, plus refreshed sample links for GitHub Actions and Azure DevOps.<\/li>\n<li><strong><a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/extensions\/copilot-coding-agent-extension\">Set up a Copilot cloud agent development environment<\/a><\/strong> (July 17) \u2014 Updated for the rebrand of &#8220;Copilot coding agent&#8221; to &#8220;cloud agent&#8221;, including file and link updates throughout the article.<\/li>\n<li><strong><a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/azd-schema#microsoft-foundry-hosts\"><code>azure.yaml<\/code> schema reference<\/a><\/strong> (July 16) \u2014 Refreshed with the Azure AI Foundry <code>azure.yaml<\/code> unification changes, documenting the Microsoft Foundry hosts for modeling Foundry projects, agents, and related resources directly in <code>azure.yaml<\/code>.<\/li>\n<\/ul>\n<h2>New templates<\/h2>\n<p>Community templates help you get started faster, cover common scenarios, and show how to deploy real solutions with Azure Developer CLI.<\/p>\n<ul>\n<li><strong>Azure Functions Timer trigger quickstarts<\/strong> by <a href=\"https:\/\/github.com\/Azure-Samples\">Azure Functions Team<\/a>, extending the Timer trigger pattern across five languages. Each sample deploys to Azure Functions Flex Consumption with <code>azd<\/code>, using managed identity and a virtual network to be secure by default:\n<ul>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/functions-quickstart-python-azd-timer\">Python<\/a><\/strong>: An Azure Functions Timer trigger quickstart written in Python.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/functions-quickstart-javascript-azd-timer\">JavaScript<\/a><\/strong>: An Azure Functions Timer trigger quickstart written in JavaScript.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/functions-quickstart-typescript-azd-timer\">TypeScript<\/a><\/strong>: An Azure Functions Timer trigger quickstart written in TypeScript.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/functions-quickstart-java-azd-timer\">Java<\/a><\/strong>: An Azure Functions Timer trigger quickstart written in Java.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/functions-quickstart-powershell-azd-timer\">PowerShell<\/a><\/strong>: An Azure Functions Timer trigger quickstart written in PowerShell.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Durable Functions fan-out\/fan-in quickstarts<\/strong> by <a href=\"https:\/\/github.com\/Azure-Samples\">Azure Functions Team<\/a>, demonstrating the fan-out\/fan-in orchestration pattern in five languages, each deployed to Azure Functions Flex Consumption with <code>azd<\/code>, managed identity, and a virtual network:\n<ul>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/durable-functions-quickstart-java-azd\">Java<\/a><\/strong>: A Durable Functions fan-out\/fan-in quickstart written in Java.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/durable-functions-quickstart-javascript-azd\">JavaScript<\/a><\/strong>: A Durable Functions fan-out\/fan-in quickstart written in JavaScript.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/durable-functions-quickstart-typescript-azd\">TypeScript<\/a><\/strong>: A Durable Functions fan-out\/fan-in quickstart written in TypeScript.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/durable-functions-quickstart-python-azd\">Python<\/a><\/strong>: A Durable Functions fan-out\/fan-in quickstart written in Python.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/durable-functions-quickstart-powershell-azd\">PowerShell<\/a><\/strong>: A Durable Functions fan-out\/fan-in quickstart written in PowerShell.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Remote Model Context Protocol (MCP) Functions samples<\/strong> by <a href=\"https:\/\/github.com\/Azure-Samples\">Azure Functions Team<\/a>, showing how to build and deploy custom remote MCP servers on Azure Functions:\n<ul>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/remote-mcp-functions-javascript\">Remote MCP Functions with JavaScript<\/a><\/strong>: This scenario demonstrates how to build and deploy a custom remote MCP server to the cloud using Azure Functions and JavaScript, with built-in authentication using Microsoft Entra as the identity provider.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/mcp-functions-long-running-tools\">Long-running MCP tools using Durable Functions (.NET)<\/a><\/strong>: A .NET isolated Azure Functions MCP server that runs long-running MCP tools by backing them with Durable Functions and a budgeted start-and-poll pattern, deployed with <code>azd<\/code> using the Durable Task Scheduler backend and managed identity.<\/li>\n<\/ul>\n<\/li>\n<li><strong><a href=\"https:\/\/github.com\/Azure-Samples\/functions-quickstart-dotnet-azd-tf\">Azure Functions C# HTTP trigger using Azure Developer CLI (Terraform)<\/a><\/strong> by <a href=\"https:\/\/github.com\/Azure-Samples\">Azure Functions Team<\/a>: An Azure Functions HTTP trigger quickstart written in C# (isolated worker) and deployed to Azure Functions Flex Consumption with <code>azd<\/code> using Terraform as the infrastructure-as-code provider, with managed identity and a virtual network for secure-by-default deployment.<\/li>\n<li><strong><a href=\"https:\/\/github.com\/ronaldbosma\/mtls-with-apim-and-agw\">mTLS with Azure API Management and Application Gateway<\/a><\/strong> by <a href=\"https:\/\/github.com\/ronaldbosma\">Ronald Bosma<\/a>: A demo of mutual Transport Layer Security (mTLS) with Azure API Management and Application Gateway. It shows how to validate client certificates when calling API Management directly and when it sits behind an Application Gateway, and how to secure connections from API Management to backend systems using mTLS. Thanks Ronald Bosma for the contribution!<\/li>\n<\/ul>\n<p>The Azure Developer CLI template gallery keeps growing thanks to contributions from the community. Thank you!<\/p>\n<h2>\ud83d\ude4b\u200d\u2640\ufe0f New to azd?<\/h2>\n<p>If you&#8217;re new to the Azure Developer CLI, <code>azd<\/code> is an open-source command-line tool that helps you get your application from your local development environment to Azure faster. It provides developer-friendly commands that map to key stages in your workflow, whether you&#8217;re working in the terminal, your editor, or CI\/CD.<\/p>\n<ul>\n<li><a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/install-azd\">Install azd<\/a><\/li>\n<li><strong>Explore templates:<\/strong> Browse the <a href=\"https:\/\/azure.github.io\/awesome-azd\/\">Awesome azd template gallery<\/a> and <a href=\"https:\/\/aka.ms\/ai-gallery\">AI App Templates<\/a><\/li>\n<li><strong>Learn more:<\/strong> Visit the <a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/\">official documentation<\/a> and <a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/troubleshoot\">troubleshooting guide<\/a><\/li>\n<li><strong>Get help:<\/strong> Visit the <a href=\"https:\/\/github.com\/Azure\/azure-dev\">GitHub repository<\/a> to file issues or start discussions<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>This is the July round-up for the Azure Developer CLI (azd). Five releases shipped since the last post: 1.27.0, 1.27.1, 1.28.0, 1.28.1, and 1.29.0. Below is what&#8217;s new, what changed, and what we fixed, with links to the pull requests if you want to dig in. Have feedback or questions? Join the release discussion on [&hellip;]<\/p>\n","protected":false},"author":107449,"featured_media":3949,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[701,864,878,939,810,160,159,861,162,733,895],"class_list":["post-3947","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-azure-sdk","tag-net","tag-azure-developer-cli","tag-codespaces","tag-docker","tag-go","tag-java","tag-javascript","tag-kubernetes","tag-python","tag-typescript","tag-vscode"],"acf":[],"blog_post_summary":"<p>This is the July round-up for the Azure Developer CLI (azd). Five releases shipped since the last post: 1.27.0, 1.27.1, 1.28.0, 1.28.1, and 1.29.0. Below is what&#8217;s new, what changed, and what we fixed, with links to the pull requests if you want to dig in. Have feedback or questions? Join the release discussion on [&hellip;]<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts\/3947","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/users\/107449"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/comments?post=3947"}],"version-history":[{"count":1,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts\/3947\/revisions"}],"predecessor-version":[{"id":3948,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts\/3947\/revisions\/3948"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/media\/3949"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/media?parent=3947"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/categories?post=3947"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/tags?post=3947"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}