diff --git a/.github/workflows/deploy_demo.yml b/.github/workflows/deploy_demo.yml index d329293290..f63cfc3b01 100644 --- a/.github/workflows/deploy_demo.yml +++ b/.github/workflows/deploy_demo.yml @@ -22,7 +22,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 @@ -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/Directory.Build.props b/Directory.Build.props index 9e204cc072..8ac94c9b75 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -12,8 +12,8 @@ $(MSBuildThisFileDirectory) true - 4.13.1 - 4.13.1 + 4.13.2 + 4.13.2 $(VersionFile) $(VersionFile) 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..979feaa448 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: diff --git a/eng/pipelines/version.yml b/eng/pipelines/version.yml index 176809eb32..d21b276bf6 100644 --- a/eng/pipelines/version.yml +++ b/eng/pipelines/version.yml @@ -2,5 +2,5 @@ variables: # File and Package version # dev branch: 1.2.4-Preview-23282-1' (PackageSuffix is always ignored in Dev branch) # main branch: 1.2.4-RC.1' (PackageSuffix is ignored, if empty, in Main branch) - FileVersion: '4.13.1' # Set the next final version here. + FileVersion: '4.13.2' # Set the next final version here. PackageSuffix: '' 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))