Skip to content

Commit 3cbc7c9

Browse files
authored
Merge pull request #2730 from Basaingeal/release/v5.6.0
Release/v5.6.0
2 parents c27155e + 1c6d4e2 commit 3cbc7c9

5 files changed

+3035
-2717
lines changed

CHANGELOG.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
# v5.5.0
1+
# v5.6.0
22

33
## Notable changes
44

5-
### `InputAutoFocus` property
5+
### .NET 8 support
66

7-
This release includes the new `inputAutoFocus` options property introduced by the `sweetalert2` library.
8-
By setting this to `false`, the input on the alert will not be auto-focused. (`true` by default)
7+
This release adds support for the .NET 8 runetime, using the v8 versions of the `Microsoft.AspNetCore.Components` and `Microsoft.AspNetCore.Components.Web` packages.
98

109
## Dependencies
1110

12-
- bump `sweetalert2` to `11.7.3`
11+
- bump `Microsoft.AspNetCore.Components@6` to `6.0.25`
12+
- bump `Microsoft.AspNetCore.Components.Web@6` to `6.0.25`
13+
- bump `Microsoft.AspNetCore.Components@7` to `7.0.14`
14+
- bump `Microsoft.AspNetCore.Components.Web@7` to `7.0.14`

CurrieTechnologies.Razor.SweetAlert2.csproj

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net7.0;net6.0;netstandard2.0;</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.0;</TargetFrameworks>
55
<RazorLangVersion>3.0</RazorLangVersion>
66
<Authors>Michael J. Currie</Authors>
77
<Company>Currie Technologies</Company>
@@ -20,8 +20,7 @@
2020
<PackageTags>Blazor SweetAlert SweetAlert2 JSInterop Server Razor</PackageTags>
2121
<PackageReadmeFile>README.md</PackageReadmeFile>
2222
<PackageReleaseNotes>
23-
bump sweetalert2
24-
add InputAutoFocus property
23+
add .NET 8 support
2524
</PackageReleaseNotes>
2625
</PropertyGroup>
2726

@@ -42,7 +41,7 @@
4241
</ItemGroup>
4342

4443
<ItemGroup>
45-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.*">
44+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.*">
4645
<PrivateAssets>all</PrivateAssets>
4746
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4847
</PackageReference>
@@ -55,13 +54,18 @@
5554
</ItemGroup>
5655

5756
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
58-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.0" />
59-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.0" />
57+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.25" />
58+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.25" />
6059
</ItemGroup>
6160

6261
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
63-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.0" />
64-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.0" />
62+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.14" />
63+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.14" />
64+
</ItemGroup>
65+
66+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
67+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.0" />
68+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
6569
</ItemGroup>
6670
<!-- ReSharper restore UnknownProperty -->
6771

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ stages:
6969
displayName: 'Use .NET Core sdk'
7070
inputs:
7171
packageType: 'sdk'
72-
version: '7.0.x'
72+
version: '8.0.x'
7373
includePreviewVersions: true
7474

7575
- task: DotNetCoreCLI@2

0 commit comments

Comments
 (0)