diff --git a/.github/workflows/deploy_demo.yml b/.github/workflows/deploy_demo.yml index 656d07e2a1..8c46baa4f3 100644 --- a/.github/workflows/deploy_demo.yml +++ b/.github/workflows/deploy_demo.yml @@ -37,7 +37,7 @@ jobs: - name: Checkout source uses: actions/checkout@v4 - - name: .NET Setup SDKs + - name: Setup .NET 9.0 uses: actions/setup-dotnet@v4 with: dotnet-version: 9.0.205 @@ -63,7 +63,7 @@ jobs: - name: .NET Publish run: dotnet publish ${{ env.PROJECT }} -c ${{ env.BUILD_CONFIG }} -o publish -f ${{ env.DOTNET_VERSION }} -r linux-x64 --self-contained=true -p:BuildNumber=$BUILD_NUMBER -p:SourceRevisionId=$GITHUB_SHA -p:ContinuousIntegrationBuild=true - - name: Deploy demo site to Azure Static Web App + - name: Deploy demo site to Azure Static Web App id: builddeploy uses: Azure/static-web-apps-deploy@v1 with: @@ -82,7 +82,7 @@ jobs: runs-on: ubuntu-latest name: Close Pull Request Job steps: - - name: Close Pull Request on Azure Static Web App + - name: Close Pull Request on Azure Static Web App id: closepullrequest uses: Azure/static-web-apps-deploy@v1 with: diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml index 2b618075b9..fa8579e392 100644 --- a/.github/workflows/deploy_preview.yml +++ b/.github/workflows/deploy_preview.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest name: Build and deploy Demo site env: - DOTNET_VERSION: "net10.0" + DOTNET_VERSION: "net9.0" DOTNET_CLI_TELEMETRY_OPTOUT: 1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true @@ -38,17 +38,17 @@ jobs: - name: Checkout source uses: actions/checkout@v4 - # - name: .NET Setup SDKs - # uses: actions/setup-dotnet@v4 - # with: - # dotnet-version: 9.0.205 - # dotnet-quality: ga - - - name: Setup .NET 10.0 + - name: Setup .NET 9.0 uses: actions/setup-dotnet@v4 with: - dotnet-version: 10.0.x - dotnet-quality: preview + dotnet-version: 9.0.205 + dotnet-quality: ga + + # - name: Setup .NET 10.0 + # uses: actions/setup-dotnet@v4 + # with: + # dotnet-version: 10.0.x + # dotnet-quality: preview - name: NPM Install uses: actions/setup-node@v4 diff --git a/WHATSNEW.md b/WHATSNEW.md index a2da771d9e..0683800e9b 100644 --- a/WHATSNEW.md +++ b/WHATSNEW.md @@ -36,6 +36,7 @@ - \[AppBar\] Add TryGetValue and Apps.ContainsKey ([#4146](https://github.com/microsoft/fluentui-blazor/pull/4146)) - \[Autocomplete\] Add a ShowProgressIndicator parameter + Breaking change ([#4042](https://github.com/microsoft/fluentui-blazor/pull/4042)) - \[AutoComplete\] Invalid aria-controls reference in Autocomplete popup rendering ([#4117](https://github.com/microsoft/fluentui-blazor/pull/4117)) +- \[AutoComplete\] Override FocusAsync in FluentAutoComplete ([#4230](https://github.com/microsoft/fluentui-blazor/pull/4230)) - \[DataGrid\] Add MinWidth parameter to ColumnBase ([#4112](https://github.com/microsoft/fluentui-blazor/pull/4112)) - \[DataGrid\] Add public Columns property to DataGridRow and Column property to DataGridCell for easier column access ([#4036](https://github.com/microsoft/fluentui-blazor/pull/4036)) - \[DataGrid\] Asynchronous IQueryable based loading and error handling UI feedback ([#4177](https://github.com/microsoft/fluentui-blazor/pull/4177)) diff --git a/eng/pipelines/build-all-lib.yml b/eng/pipelines/build-all-lib.yml index c3b6fbc090..004c01b641 100644 --- a/eng/pipelines/build-all-lib.yml +++ b/eng/pipelines/build-all-lib.yml @@ -1,7 +1,12 @@ -# Build all projects (manual). +# Build all projects (tag-based trigger). name: $(FileVersion).$(Year:yy)$(DayOfYear).$(Rev:r) -trigger: none # Disable dev and main branches. +trigger: + branches: + include: [] # Explicitly disable branch triggers + tags: + include: + - v* # Triggers on tags like v1.0.0, v2.1.3 pr: none # Disable pull request triggers. parameters: @@ -21,9 +26,6 @@ parameters: variables: - template: /eng/pipelines/version.yml@self - - name: SignType - value: real - - name: TeamName value: fluentui-blazor @@ -69,7 +71,8 @@ extends: mb: signing: enabled: true - signType: $(SignType) + signType: real + signWithProd: true zipSources: false feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json env: @@ -131,7 +134,7 @@ extends: - task: UseDotNet@2 displayName: 'Install .NET 9.0' inputs: - version: 9.0.x + version: 9.0.205 includePreviewVersions: false - task: UseDotNet@2 diff --git a/eng/pipelines/build-core-lib.yml b/eng/pipelines/build-core-lib.yml index 0c87859f34..23ea34a177 100644 --- a/eng/pipelines/build-core-lib.yml +++ b/eng/pipelines/build-core-lib.yml @@ -164,7 +164,7 @@ extends: - task: UseDotNet@2 displayName: 'Install .NET 9.0' inputs: - version: 9.0.x + version: 9.0.205 includePreviewVersions: false - task: UseDotNet@2 diff --git a/examples/Demo/Shared/wwwroot/docs/WhatsNew.md b/examples/Demo/Shared/wwwroot/docs/WhatsNew.md index a2da771d9e..0683800e9b 100644 --- a/examples/Demo/Shared/wwwroot/docs/WhatsNew.md +++ b/examples/Demo/Shared/wwwroot/docs/WhatsNew.md @@ -36,6 +36,7 @@ - \[AppBar\] Add TryGetValue and Apps.ContainsKey ([#4146](https://github.com/microsoft/fluentui-blazor/pull/4146)) - \[Autocomplete\] Add a ShowProgressIndicator parameter + Breaking change ([#4042](https://github.com/microsoft/fluentui-blazor/pull/4042)) - \[AutoComplete\] Invalid aria-controls reference in Autocomplete popup rendering ([#4117](https://github.com/microsoft/fluentui-blazor/pull/4117)) +- \[AutoComplete\] Override FocusAsync in FluentAutoComplete ([#4230](https://github.com/microsoft/fluentui-blazor/pull/4230)) - \[DataGrid\] Add MinWidth parameter to ColumnBase ([#4112](https://github.com/microsoft/fluentui-blazor/pull/4112)) - \[DataGrid\] Add public Columns property to DataGridRow and Column property to DataGridCell for easier column access ([#4036](https://github.com/microsoft/fluentui-blazor/pull/4036)) - \[DataGrid\] Asynchronous IQueryable based loading and error handling UI feedback ([#4177](https://github.com/microsoft/fluentui-blazor/pull/4177))