Skip to content

Commit a36e06f

Browse files
authored
Users/vnbaaij/prep release (#3649)
* 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 * - Undo NuGet config change - Update WhatsNew * - Update WhatsNew, Home, - Update to .NET 10 preview 3 * Update Home
1 parent 2af05fb commit a36e06f

File tree

7 files changed

+58
-24
lines changed

7 files changed

+58
-24
lines changed

Directory.Build.targets

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<Project>
2-
32
<PropertyGroup>
43
<!-- Set DisableSourceLinkUrlTranslation to true when building a tool for internal use where sources only come from internal URIs -->
54
<DisableSourceLinkUrlTranslation Condition="'$(DisableSourceLinkUrlTranslation)' == ''">false</DisableSourceLinkUrlTranslation>
@@ -14,5 +13,4 @@
1413
</SourceRoot>
1514
</ItemGroup>
1615
</Target>
17-
1816
</Project>

Directory.Packages.props

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@
22
<PropertyGroup>
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
<RuntimeVersion8>8.0.0</RuntimeVersion8>
5-
<AspNetCoreVersion8>8.0.14</AspNetCoreVersion8>
6-
<EfCoreVersion8>8.0.14</EfCoreVersion8>
7-
<RuntimeVersion9>9.0.3</RuntimeVersion9>
8-
<AspNetCoreVersion9>9.0.3</AspNetCoreVersion9>
9-
<EfCoreVersion9>9.0.3</EfCoreVersion9>
10-
<RuntimeVersion10>10.0.0-preview.2.25163.2</RuntimeVersion10>
11-
<AspNetCoreVersion10>10.0.0-preview.2.25164.1</AspNetCoreVersion10>
12-
<EfCoreVersion10>10.0.0-preview.2.25163.8</EfCoreVersion10>
5+
<AspNetCoreVersion8>8.0.15</AspNetCoreVersion8>
6+
<EfCoreVersion8>8.0.15</EfCoreVersion8>
7+
<RuntimeVersion9>9.0.4</RuntimeVersion9>
8+
<AspNetCoreVersion9>9.0.4</AspNetCoreVersion9>
9+
<EfCoreVersion9>9.0.4</EfCoreVersion9>
10+
<RuntimeVersion10>10.0.0-preview.3.25171.5</RuntimeVersion10>
11+
<AspNetCoreVersion10>10.0.0-preview.3.25172.1</AspNetCoreVersion10>
12+
<EfCoreVersion10>10.0.0-preview.3.25171.6</EfCoreVersion10>
1313
</PropertyGroup>
1414
<ItemGroup>
1515
<!-- For Sample Apps -->
1616
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.11.0" />
17-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.11.6" />
18-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.11.6" />
17+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.11.7" />
18+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.11.7" />
1919
<!-- Test dependencies -->
20-
<PackageVersion Include="bunit" Version="1.33.3" />
20+
<PackageVersion Include="bunit" Version="1.38.5" />
2121
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
2222
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
23-
<PackageVersion Include="xunit" Version="2.9.2" />
23+
<PackageVersion Include="xunit" Version="2.9.3" />
2424
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.2" />
2525
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />
26-
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
26+
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
2727
<!-- Shared dependencies -->
2828
<PackageVersion Include="Markdig.Signed" Version="0.34.0" />
2929
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" />
3030
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" />
3131
<PackageVersion Include="Microsoft.OData.Client" Version="8.2.3" />
32-
<PackageVersion Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.2" />
32+
<PackageVersion Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.61" />
3333
<PackageVersion Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="1.0.0" />
3434
</ItemGroup>
3535
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">

NuGet.config

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,12 @@
33
<packageSources>
44
<clear />
55
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
6-
<!--<add key="dotnet-9-preview" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/9.0.203-servicing.25165.9-shipping/nuget/v3/index.json" />-->
7-
<add key="dotnet-10-preview2" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/10.0.100-preview.2.25164.34-shipping/nuget/v3/index.json" />
6+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
87
</packageSources>
98
<packageSourceMapping>
10-
<packageSource key="dotnet-10-preview2">
9+
<packageSource key="nuget.org">
1110
<package pattern="Microsoft.AspNetCore.App.Internal.Assets" />
1211
</packageSource>
13-
<!--<packageSource key="dotnet-9-preview">
14-
<package pattern="Microsoft.NETCore.App.Ref" />
15-
</packageSource>-->
1612
<packageSource key="dotnet-public">
1713
<package pattern="*" />
1814
</packageSource>

WHATSNEW.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
## V4.11.8
22

3+
### General
4+
- \[General\] Add .NET 10 Preview ~~2~~ 3 support ([#3641](https://github.com/microsoft/fluentui-blazor/pull/3641))
5+
- \[General\] Fix trimming error ([#3578](https://github.com/microsoft/fluentui-blazor/pull/3578))
6+
7+
### Components
8+
- \[Combobox\] Fix issue when used in Dialog ([#3603](https://github.com/microsoft/fluentui-blazor/pull/3603))
9+
- \[DataGrid\] Add icons to column menus ([#3621](https://github.com/microsoft/fluentui-blazor/pull/3621))
10+
- \[DataGrid\] Fix rendering issue in Table mode ([#3615](https://github.com/microsoft/fluentui-blazor/pull/3615))
11+
- \[DataGrid\] Fix Width when `ResizableColumns` and `Sortable` ([#3593](https://github.com/microsoft/fluentui-blazor/pull/3593))
12+
- \[Icons\] AddIconsExtensions.TryGetInstance ([#3569](https://github.com/microsoft/fluentui-blazor/pull/3569))
13+
- \[InputFile\] Better handling of dispose error ([#3605](https://github.com/microsoft/fluentui-blazor/pull/3605))
14+
- \[NavMenu\] Add code to only respond to certain key codes ([#3595](https://github.com/microsoft/fluentui-blazor/pull/3595))
15+
- \[TreeView\] Add MultiSelect example ([#3602](https://github.com/microsoft/fluentui-blazor/pull/3602))
16+
17+
### Demo site and documentation
18+
- \[Docs\] Remove an unnecessary line in FluentDialog ([#3550](https://github.com/microsoft/fluentui-blazor/pull/3550))
19+
- \[Docs\] Make cookie consent responsive ([#3555](https://github.com/microsoft/fluentui-blazor/pull/3555))
20+
- \[Docs\] Remove extra '>' ([#3572](https://github.com/microsoft/fluentui-blazor/pull/3572))
21+
- \[Docs\] Fix typo ([#3589](https://github.com/microsoft/fluentui-blazor/pull/3589))
22+
323
### Icons and Emoji
424
- Update to Fluent UI System Icons 1.1.293 (changes since 1.1.292).
525

examples/Demo/Shared/Microsoft.FluentUI.AspNetCore.Components.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4949,7 +4949,7 @@
49494949
</member>
49504950
<member name="T:Microsoft.FluentUI.AspNetCore.Components.CustomIcon">
49514951
<summary>
4952-
Custom icon loaded from <see cref="!:IconsExtensions.GetInstance(IconInfo)"/>
4952+
Custom icon loaded from <see cref="M:Microsoft.FluentUI.AspNetCore.Components.IconsExtensions.GetInstance(Microsoft.FluentUI.AspNetCore.Components.IconInfo,System.Nullable{System.Boolean})"/>
49534953
</summary>
49544954
</member>
49554955
<member name="M:Microsoft.FluentUI.AspNetCore.Components.CustomIcon.#ctor">

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="11" Month="Apr" Year="25" /><a href="/WhatsNew#v4.11.8">v4.11.8 released</a></li>
4748
<li><NewsDate Day="19" Month="Mar" Year="25" /><a href="/WhatsNew#v4.11.7">v4.11.7 released</a></li>
4849
<li><NewsDate Day="5" Month="Mar" Year="25" /><a href="/WhatsNew#v4.11.6">v4.11.6 released</a></li>
4950
<li><NewsDate Day="18" Month="Feb" Year="25" /><a href="/WhatsNew#v4.11.5">v4.11.5 released</a></li>
50-
<li><NewsDate Day="11" Month="Feb" Year="25" /><a href="/WhatsNew#v4.11.4">v4.11.4 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: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
## V4.11.8
22

3+
### General
4+
- \[General\] Add .NET 10 Preview ~~2~~ 3 support ([#3641](https://github.com/microsoft/fluentui-blazor/pull/3641))
5+
- \[General\] Fix trimming error ([#3578](https://github.com/microsoft/fluentui-blazor/pull/3578))
6+
7+
### Components
8+
- \[Combobox\] Fix issue when used in Dialog ([#3603](https://github.com/microsoft/fluentui-blazor/pull/3603))
9+
- \[DataGrid\] Add icons to column menus ([#3621](https://github.com/microsoft/fluentui-blazor/pull/3621))
10+
- \[DataGrid\] Fix rendering issue in Table mode ([#3615](https://github.com/microsoft/fluentui-blazor/pull/3615))
11+
- \[DataGrid\] Fix Width when `ResizableColumns` and `Sortable` ([#3593](https://github.com/microsoft/fluentui-blazor/pull/3593))
12+
- \[Icons\] AddIconsExtensions.TryGetInstance ([#3569](https://github.com/microsoft/fluentui-blazor/pull/3569))
13+
- \[InputFile\] Better handling of dispose error ([#3605](https://github.com/microsoft/fluentui-blazor/pull/3605))
14+
- \[NavMenu\] Add code to only respond to certain key codes ([#3595](https://github.com/microsoft/fluentui-blazor/pull/3595))
15+
- \[TreeView\] Add MultiSelect example ([#3602](https://github.com/microsoft/fluentui-blazor/pull/3602))
16+
17+
### Demo site and documentation
18+
- \[Docs\] Remove an unnecessary line in FluentDialog ([#3550](https://github.com/microsoft/fluentui-blazor/pull/3550))
19+
- \[Docs\] Make cookie consent responsive ([#3555](https://github.com/microsoft/fluentui-blazor/pull/3555))
20+
- \[Docs\] Remove extra '>' ([#3572](https://github.com/microsoft/fluentui-blazor/pull/3572))
21+
- \[Docs\] Fix typo ([#3589](https://github.com/microsoft/fluentui-blazor/pull/3589))
22+
323
### Icons and Emoji
424
- Update to Fluent UI System Icons 1.1.293 (changes since 1.1.292).
525

0 commit comments

Comments
 (0)