Skip to content

Conversation

@Ptnan7
Copy link
Member

@Ptnan7 Ptnan7 commented Jul 23, 2025

Description

Mandatory Checklist

  • SHOULD update ChangeLog.md file(s) appropriately
    • Update src/{{SERVICE}}/{{SERVICE}}/ChangeLog.md.
      • A snippet outlining the change(s) made in the PR should be written under the ## Upcoming Release header in the past tense.
    • Should not change ChangeLog.md if no new release is required, such as fixing test case only.
  • SHOULD regenerate markdown help files if there is cmdlet API change. Instruction
  • SHOULD have proper test coverage for changes in pull request.
  • SHOULD NOT adjust version of module manually in pull request

Copilot AI review requested due to automatic review settings July 23, 2025 03:32
@azure-client-tools-bot-prd
Copy link

Thanks for your contribution! The pull request validation has started. Please revisit this comment for updated status.

@Ptnan7 Ptnan7 changed the title Upgrade version to 0601 {AFD} Upgrade version to 0601 Jul 23, 2025
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR upgrades the API version for Azure CDN operations from "2025-04-15" to "2025-06-01" across test recording files. This is a version update to align with the newer API version that includes potentially improved features or bug fixes.

  • Update API version from 2025-04-15 to 2025-06-01 in CDN test recordings
  • Update resource group references from testps-rg-fz5y to testps-rg-hbtl
  • Update test execution timestamps and associated metadata

Reviewed Changes

Copilot reviewed 125 out of 255 changed files in this pull request and generated no comments.

File Description
src/Cdn/Cdn.Autorest/test/New-AzFrontDoorCdnCustomDomain.Recording.json Updates API version and test recording data for FrontDoor CDN custom domain operations
src/Cdn/Cdn.Autorest/test/New-AzCdnProfile.Recording.json Updates API version and test recording data for CDN profile creation operations

@YanaXu
Copy link
Contributor

YanaXu commented Jul 23, 2025

/azp run

@azure-pipelines
Copy link
Contributor

Azure Pipelines successfully started running 3 pipeline(s).

@YanaXu
Copy link
Contributor

YanaXu commented Jul 23, 2025

Hi @Ptnan7, the ChangeLog file path is src/Cdn/Cdn/ChangeLog.md. Please add a line right below Upcoming Release using the past tense to describe the purpose of this PR. Thanks.

@YanaXu YanaXu changed the title {AFD} Upgrade version to 0601 AFD Upgrade version to 0601 Jul 23, 2025
@github-actions
Copy link

github-actions bot commented Aug 4, 2025

This PR was labeled "needs-revision" because it has unresolved review comments or CI failures.
Please resolve all open review comments and make sure all CI checks are green. Refer to our guide to troubleshoot common CI failures.

@YanaXu
Copy link
Contributor

YanaXu commented Aug 5, 2025

/azp run

@azure-pipelines
Copy link
Contributor

Azure Pipelines successfully started running 3 pipeline(s).

@NoriZC
Copy link
Contributor

NoriZC commented Aug 6, 2025

@Ptnan7 please help check whether the breaking change reported is as expected. If there are really breaking changes, this PR is needed to be held until next major release

@NoriZC NoriZC self-assigned this Aug 6, 2025
@isra-fel
Copy link
Member

isra-fel commented Oct 2, 2025

Closing the PR for lack of activity. Feel free to reopen to continue working on it. Thanks 😀

@isra-fel isra-fel closed this Oct 2, 2025
@Ptnan7 Ptnan7 deleted the 0601 branch October 14, 2025 10:26
@Ptnan7 Ptnan7 restored the 0601 branch October 14, 2025 10:30
@Ptnan7 Ptnan7 reopened this Oct 14, 2025
@isra-fel
Copy link
Member

/azp run

@azure-pipelines
Copy link
Contributor

Azure Pipelines successfully started running 3 pipeline(s).

@NoriZC NoriZC assigned isra-fel and unassigned NoriZC Oct 15, 2025
@isra-fel
Copy link
Member

isra-fel commented Nov 6, 2025

/azp run

@azure-pipelines
Copy link
Contributor

Azure Pipelines successfully started running 3 pipeline(s).

@dolauli
Copy link
Contributor

dolauli commented Nov 7, 2025

/azp run

@azure-pipelines
Copy link
Contributor

Azure Pipelines successfully started running 3 pipeline(s).

@isra-fel
Copy link
Member

isra-fel commented Nov 7, 2025

/azp run

@azure-pipelines
Copy link
Contributor

Azure Pipelines successfully started running 3 pipeline(s).

@dolauli dolauli added the Breaking change PR reviewed Add this label after a PR with breaking change has been reviewed and approved. label Nov 7, 2025
@dolauli dolauli merged commit 0923c6a into Azure:main Nov 7, 2025
13 checks passed
@Ptnan7 Ptnan7 deleted the 0601 branch November 10, 2025 04:09
@Ptnan7
Copy link
Member Author

Ptnan7 commented Nov 12, 2025

Get-AzCdnProfile

The usage stays the same

Before

Get-AzCdnProfile -ResourceGroupName testps-rg-da16jm

After

Get-AzCdnProfile -ResourceGroupName testps-rg-da16jm

Get-AzFrontDoorCdnProfile

The usage stays the same

Before

Get-AzFrontDoorCdnProfile -ResourceGroupName testps-rg-da16jm

After

Get-AzFrontDoorCdnProfile -ResourceGroupName testps-rg-da16jm

New-AzCdnProfile

The usage stays the same

Before

New-AzCdnProfile -ResourceGroupName testps-rg-da16jm -Name cdn001 -SkuName Standard_Microsoft -Location Global

After

New-AzCdnProfile -ResourceGroupName testps-rg-da16jm -Name cdn001 -SkuName Standard_Microsoft -Location Global

New-AzFrontDoorCdnProfile

The usage stays the same

Before

New-AzFrontDoorCdnProfile -ResourceGroupName testps-rg-da16jm -Name fdp-v542q6 -SkuName Standard_AzureFrontDoor -Location Global

After

New-AzFrontDoorCdnProfile -ResourceGroupName testps-rg-da16jm -Name fdp-v542q6 -SkuName Standard_AzureFrontDoor -Location Global

Update-AzCdnProfile

The usage stays the same

Before

$tags = @{
    Tag1 = 11
    Tag2  = 22
}
Update-AzCdnProfile -ResourceGroupName testps-rg-da16jm -Name cdn001 -Tag $tags

After

$tags = @{
    Tag1 = 11
    Tag2  = 22
}
Update-AzCdnProfile -ResourceGroupName testps-rg-da16jm -Name cdn001 -Tag $tags

Update-AzFrontDoorCdnProfile

The usage stays the same

Before

$tags = @{
    Tag1 = 11
    Tag2  = 22
}
Update-AzFrontDoorCdnProfile -ResourceGroupName testps-rg-da16jm -Name fdp-v542q6 -Tag $tags

After

$tags = @{
    Tag1 = 11
    Tag2  = 22
}
Update-AzFrontDoorCdnProfile -ResourceGroupName testps-rg-da16jm -Name fdp-v542q6 -Tag $tags

Update-AzFrontDoorCdnProfileSku

The usage stays the same

Before

$nullUpgradePara = @{}
Update-AzFrontDoorCdnProfileSku -ProfileName profileName -ResourceGroupName rgName -ProfileUpgradeParameter $nullUpgradePara

After

$nullUpgradePara = @{}
Update-AzFrontDoorCdnProfileSku -ProfileName profileName -ResourceGroupName rgName -ProfileUpgradeParameter $nullUpgradePara

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Breaking change PR reviewed Add this label after a PR with breaking change has been reviewed and approved. Contains Breaking Change This PR contains breaking change

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants