Skip to content

Commit dd8104d

Browse files
authored
Prep for release (4.11.9) (#3761)
* Update NuGet package for fixing CVE. See dotnet/announcements#327 * Non-altering change to force mirroring * Clean up issue tester * Small text formatting change to force deploy * Update workflows * Update WhatsNew * Update home page release section * Update PackageTags on projects
1 parent 6d997e9 commit dd8104d

File tree

9 files changed

+69
-30
lines changed

9 files changed

+69
-30
lines changed

.github/workflows/deploy_demo.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
name: Build and deploy Demo site
2121
env:
22-
DOTNET_VERSION: "net9.0"
22+
DOTNET_VERSION: "net10.0"
2323
DOTNET_CLI_TELEMETRY_OPTOUT: 1
2424
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
2525
DOTNET_NOLOGO: true
@@ -34,17 +34,17 @@ jobs:
3434
- name: Checkout source
3535
uses: actions/checkout@v4
3636

37-
# - name: Setup .NET 8.0
37+
# - name: Setup .NET 9.0
3838
# uses: actions/setup-dotnet@v4
3939
# with:
40-
# dotnet-version: 8.0.x
40+
# dotnet-version: 9.0.x
4141
# dotnet-quality: ga
4242

43-
- name: Setup .NET 9.0
43+
- name: Setup .NET 10.0
4444
uses: actions/setup-dotnet@v4
4545
with:
46-
dotnet-version: 9.0.x
47-
dotnet-quality: ga
46+
dotnet-version: 10.0.x
47+
dotnet-quality: preview
4848

4949
- name: NPM Install
5050
uses: actions/setup-node@v4

.github/workflows/deploy_preview.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,11 @@ jobs:
3232
- name: Checkout source
3333
uses: actions/checkout@v4
3434

35-
- name: .NET Setup SDKs
36-
uses: actions/setup-dotnet@v4
37-
with:
38-
dotnet-version: 8.0.x
39-
dotnet-quality: ga
40-
41-
- name: .NET Setup SDKs
42-
uses: actions/setup-dotnet@v4
43-
with:
44-
dotnet-version: 9.0.x
45-
dotnet-quality: ga
35+
# - name: .NET Setup SDKs
36+
# uses: actions/setup-dotnet@v4
37+
# with:
38+
# dotnet-version: 9.0.x
39+
# dotnet-quality: ga
4640

4741
- name: .NET Setup SDKs
4842
uses: actions/setup-dotnet@v4

WHATSNEW.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,39 @@
1-
## V4.11.9
2-
3-
### General
1+
## V4.11.9
42

3+
### General
4+
- \[General\] A11y - Fix certain controls not adapting text spacing ([#3706](https://github.com/microsoft/fluentui-blazor/pull/3706))
5+
- \[General\] Add missing try..catch in DisposeAsync ([#3699](https://github.com/microsoft/fluentui-blazor/pull/3699))
6+
- \[General\] Remove the FluentAssertions dependency ([#3701](https://github.com/microsoft/fluentui-blazor/pull/3701))
7+
- \[General\] Use newer Markdig package ([#3703](https://github.com/microsoft/fluentui-blazor/pull/3703))
58

69
### Components
10+
- \[AutoComplete\] Introduce Position parameter. ([#3718](https://github.com/microsoft/fluentui-blazor/pull/3718))
11+
- \[AutoComplete\] Allow the ability to trigger the search options via code. ([#3570](https://github.com/microsoft/fluentui-blazor/pull/3570))
12+
- \[AutoComplete\] Close the dropdown via code ([#3715](https://github.com/microsoft/fluentui-blazor/pull/3715))
13+
- \[AutoComplete\] Enable "Multiple = false" when selecting a single item is desired ([#3571](https://github.com/microsoft/fluentui-blazor/pull/3571))
14+
- \[Combobox\] Fix GetOptionValue ([#3739](https://github.com/microsoft/fluentui-blazor/pull/3739))
15+
- \[DataGrid\] Do not handle keypress if active element is text field ([#3749](https://github.com/microsoft/fluentui-blazor/pull/3749))
16+
- \[DataGrid\] Do not use 'display: flex' on table header cells ([#3760](https://github.com/microsoft/fluentui-blazor/pull/3760))
17+
- \[InputFile\] a11y - Fix missing focus indicator in FluentInputFile ([#3722](https://github.com/microsoft/fluentui-blazor/pull/3722))
18+
- \[InputFile\] Fix DivideByZeroException in FluentInputFile when uploading 0 byte files ([#3719](https://github.com/microsoft/fluentui-blazor/pull/3719))
19+
- \[Menu\] Account for screen width and height when positioning menu ([#3682](https://github.com/microsoft/fluentui-blazor/pull/3682))
20+
- \[ProfileMenu\] Add OpenChanged event ([#3750](https://github.com/microsoft/fluentui-blazor/pull/3750))
21+
- \[Tabs\] Fix issue with publication/trimming ([#3677](https://github.com/microsoft/fluentui-blazor/pull/3677))
22+
- \[Templates\] Fix overwriting standard Blazor Hybrid template ([#3673](https://github.com/microsoft/fluentui-blazor/pull/3673))
23+
- \[Tooltip\] Add AdditionalProperties when using TooltipService ([#3691](https://github.com/microsoft/fluentui-blazor/pull/3691))
24+
- \[Wizard\] Add the ability to invoke `OnFinish` ([#3648](https://github.com/microsoft/fluentui-blazor/pull/3648))
725

826
### Demo site and documentation
27+
- \[Docs\] Add message for when using reboot with different BasePath ([#3678](https://github.com/microsoft/fluentui-blazor/pull/3678))
28+
- \[Docs\] Clarify FluentSelect SelectedOptionsChanged not triggered with manual options ([#3680](https://github.com/microsoft/fluentui-blazor/pull/3680))
29+
- \[Docs\] Fix missing `DisplayMode` attribute in `DataGridRemoteData.razor` ([#3729](https://github.com/microsoft/fluentui-blazor/pull/3729))
30+
- \[Docs\] Try to use more correct terminology ([#3705](https://github.com/microsoft/fluentui-blazor/pull/3705))
31+
- \[Docs\] Update InputFile docs to explain usage of different InputFileModes ([#3757](https://github.com/microsoft/fluentui-blazor/pull/3757))
932

1033
### Icons and Emoji
1134
- Update to Fluent UI System Icons 1.1.298.
1235
> As of this version we will no longer highlight individual icon additions/changes. You can find the full list of changes in the Fluent UI System Icons repository [commit history](https://github.com/microsoft/fluentui-system-icons/commits/main/).
1336
14-
-
1537
## V4.11.8
1638

1739
### General

examples/Demo/Shared/Pages/Home/Home.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444

4545
<h2>Latest releases</h2>
4646
<ul class="news">
47+
<li><NewsDate Day="8" Month="May" Year="25" /><a href="/WhatsNew#v4.11.9">v4.11.9 released</a></li>
4748
<li><NewsDate Day="11" Month="Apr" Year="25" /><a href="/WhatsNew#v4.11.8">v4.11.8 released</a></li>
4849
<li><NewsDate Day="19" Month="Mar" Year="25" /><a href="/WhatsNew#v4.11.7">v4.11.7 released</a></li>
4950
<li><NewsDate Day="5" Month="Mar" Year="25" /><a href="/WhatsNew#v4.11.6">v4.11.6 released</a></li>
50-
<li><NewsDate Day="18" Month="Feb" Year="25" /><a href="/WhatsNew#v4.11.5">v4.11.5 released</a></li>
5151
<!--<li><NewsDate Day="" Month="" Year="" /><a href=""></a></li>-->
5252
</ul>
5353

examples/Demo/Shared/wwwroot/docs/WhatsNew.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,34 @@
1-
## V4.11.9
2-
3-
### General
1+
## V4.11.9
42

3+
### General
4+
- \[General\] A11y - Fix certain controls not adapting text spacing ([#3706](https://github.com/microsoft/fluentui-blazor/pull/3706))
5+
- \[General\] Add missing try..catch in DisposeAsync ([#3699](https://github.com/microsoft/fluentui-blazor/pull/3699))
6+
- \[General\] Remove the FluentAssertions dependency ([#3701](https://github.com/microsoft/fluentui-blazor/pull/3701))
7+
- \[General\] Use newer Markdig package ([#3703](https://github.com/microsoft/fluentui-blazor/pull/3703))
58

69
### Components
10+
- \[AutoComplete\] Introduce Position parameter. ([#3718](https://github.com/microsoft/fluentui-blazor/pull/3718))
11+
- \[AutoComplete\] Allow the ability to trigger the search options via code. ([#3570](https://github.com/microsoft/fluentui-blazor/pull/3570))
12+
- \[AutoComplete\] Close the dropdown via code ([#3715](https://github.com/microsoft/fluentui-blazor/pull/3715))
13+
- \[AutoComplete\] Enable "Multiple = false" when selecting a single item is desired ([#3571](https://github.com/microsoft/fluentui-blazor/pull/3571))
14+
- \[Combobox\] Fix GetOptionValue ([#3739](https://github.com/microsoft/fluentui-blazor/pull/3739))
15+
- \[DataGrid\] Do not handle keypress if active element is text field ([#3749](https://github.com/microsoft/fluentui-blazor/pull/3749))
16+
- \[DataGrid\] Do not use 'display: flex' on table header cells ([#3760](https://github.com/microsoft/fluentui-blazor/pull/3760))
17+
- \[InputFile\] a11y - Fix missing focus indicator in FluentInputFile ([#3722](https://github.com/microsoft/fluentui-blazor/pull/3722))
18+
- \[InputFile\] Fix DivideByZeroException in FluentInputFile when uploading 0 byte files ([#3719](https://github.com/microsoft/fluentui-blazor/pull/3719))
19+
- \[Menu\] Account for screen width and height when positioning menu ([#3682](https://github.com/microsoft/fluentui-blazor/pull/3682))
20+
- \[ProfileMenu\] Add OpenChanged event ([#3750](https://github.com/microsoft/fluentui-blazor/pull/3750))
21+
- \[Tabs\] Fix issue with publication/trimming ([#3677](https://github.com/microsoft/fluentui-blazor/pull/3677))
22+
- \[Templates\] Fix overwriting standard Blazor Hybrid template ([#3673](https://github.com/microsoft/fluentui-blazor/pull/3673))
23+
- \[Tooltip\] Add AdditionalProperties when using TooltipService ([#3691](https://github.com/microsoft/fluentui-blazor/pull/3691))
24+
- \[Wizard\] Add the ability to invoke `OnFinish` ([#3648](https://github.com/microsoft/fluentui-blazor/pull/3648))
725

826
### Demo site and documentation
27+
- \[Docs\] Add message for when using reboot with different BasePath ([#3678](https://github.com/microsoft/fluentui-blazor/pull/3678))
28+
- \[Docs\] Clarify FluentSelect SelectedOptionsChanged not triggered with manual options ([#3680](https://github.com/microsoft/fluentui-blazor/pull/3680))
29+
- \[Docs\] Fix missing `DisplayMode` attribute in `DataGridRemoteData.razor` ([#3729](https://github.com/microsoft/fluentui-blazor/pull/3729))
30+
- \[Docs\] Try to use more correct terminology ([#3705](https://github.com/microsoft/fluentui-blazor/pull/3705))
31+
- \[Docs\] Update InputFile docs to explain usage of different InputFileModes ([#3757](https://github.com/microsoft/fluentui-blazor/pull/3757))
932

1033
### Icons and Emoji
1134
- Update to Fluent UI System Icons 1.1.298.

src/Core/Microsoft.FluentUI.AspNetCore.Components.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PackageId>Microsoft.FluentUI.AspNetCore.Components</PackageId>
55

66
<Summary>A Blazor component library leveraging Microsoft’s Fluent Design System UI. Use the look of modern Microsoft products in your Blazor applications</Summary>
7-
<PackageTags>Fluent UI, Blazor, Web Components, .NET8</PackageTags>
7+
<PackageTags>Fluent UI, Blazor, Web Components</PackageTags>
88
<Title>Microsoft Fluent UI Razor Components for Blazor</Title>
99
<Description>A Blazor component library leveraging Microsoft’s Fluent Design System. Use the look of modern Microsoft products in your Blazor applications.</Description>
1010
<PackageReadmeFile>README.md</PackageReadmeFile>

src/Extensions/DataGrid.EntityFrameworkAdapter/Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageProjectUrl>https://github.com/microsoft/fluentui-blazor</PackageProjectUrl>
1111
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1212
<Summary>An adapter for using the Fluent UI Blazor DataGrid with Entity Framework.</Summary>
13-
<PackageTags>Fluent UI, Blazor, DataGrid, .NET8</PackageTags>
13+
<PackageTags>Fluent UI, Blazor, DataGrid</PackageTags>
1414
<Title>Microsoft Fluent UI DataGrid adapter for Entity Framework</Title>
1515
<Description>An adapter for using the Fluent UI Blazor DataGrid with Entity Framework.</Description>
1616
<SignAssembly>false</SignAssembly>

src/Extensions/DataGrid.ODataAdapter/Microsoft.FluentUI.AspNetCore.Components.DataGrid.ODataAdapter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageProjectUrl>https://github.com/microsoft/fluentui-blazor</PackageProjectUrl>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1111
<Summary>An adapter for using the Fluent UI Blazor DataGrid with OData Client.</Summary>
12-
<PackageTags>Fluent UI, Blazor, DataGrid, .NET8</PackageTags>
12+
<PackageTags>Fluent UI, Blazor, DataGrid</PackageTags>
1313
<Title>Microsoft Fluent UI DataGrid adapter for Entity Framework</Title>
1414
<Description>An adapter for using the Fluent UI Blazor DataGrid with OData Client.</Description>
1515
<SignAssembly>false</SignAssembly>

src/Templates/Microsoft.FluentUI.AspNetCore.Templates.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<PackageId>Microsoft.FluentUI.AspNetCore.Templates</PackageId>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1313
<PackageProjectUrl>https://github.com/microsoft/fluentui-blazor</PackageProjectUrl>
14-
<PackageTags>templates;blazor;fluentui;web-assembly</PackageTags>
15-
<PackageType>Template</PackageType>
14+
<PackageTags>Templates, Fluent UI, Blazor, Web Components</PackageTags>
15+
<PackageType>Template</PackageType>
1616
<PackageReadmeFile>README.md</PackageReadmeFile>
1717
<Title>Microsoft Fluent UI Blazor Templates</Title>
1818
<PackageIcon>icon.png</PackageIcon>

0 commit comments

Comments
 (0)