Skip to content

Commit

Permalink
😊 发布 v4.9.5.21 版本,修复 EFCore 9.0 迁移异常 #IB41YD
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkSoul committed Nov 13, 2024
1 parent 4b5309d commit b401ff4
Show file tree
Hide file tree
Showing 38 changed files with 64 additions and 62 deletions.
4 changes: 3 additions & 1 deletion .gitee/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ body:
label: 版本号
description: 请选择项目使用的 Furion 版本?
options:
- 4.9.5.19 (最新)
- 4.9.5.21 (最新)
- 4.9.5.20
- 4.9.5.19
- 4.9.5.18
- 4.9.5.17
- 4.9.5.16
Expand Down
2 changes: 1 addition & 1 deletion framework/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<Version>4.9.5.19</Version>
<Version>4.9.5.21</Version>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>百小僧</Authors>
<Company>百签科技(广东)有限公司</Company>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ static DatabaseProviderServiceCollectionExtensions()
{
var optionsType = options.GetType();
optionsType.GetMethods(BindingFlags.Instance | BindingFlags.Public).FirstOrDefault(u => u.GetParameters().Length == 1 && u.GetParameters().First().ParameterType == typeof(string))
optionsType.GetMethods(BindingFlags.Instance | BindingFlags.Public).FirstOrDefault(u => u.Name == "MigrationsAssembly" && u.GetParameters().Length == 1 && u.GetParameters().First().ParameterType == typeof(string))
.Invoke(options, new[] { Db.MigrationAssemblyName });
// 解决 MySQL/SqlServer/PostgreSQL 有时候出现短暂连接失败问题(v4.8.1.7 版本关闭)
Expand Down
2 changes: 1 addition & 1 deletion templates/FurionApiTemplate/Furion.Template.Api.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.Template.Api</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 框架快速搭建 Api 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Furion" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion templates/FurionAppTemplate/Furion.Template.App.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.Template.App</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 框架快速搭建 Mvc/Api 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Furion" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.Template.Blazor.App</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 框架快速搭建 Blazor App 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.Template.Blazor</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 框架快速搭建 Blazor 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.Template.BlazorWithWebApi</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 框架快速搭建 Blazor和WebApi 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Furion" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion templates/FurionMvcTemplate/Furion.Template.Mvc.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.Template.Mvc</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 框架快速搭建 Mvc 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion templates/FurionRazorTemplate/Furion.Template.Razor.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.Template.Razor</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 框架快速搭建 Razor Pages 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.Template.RazorWithWebApi</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 框架快速搭建 RazorPages和WebApi 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Furion" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.SqlSugar.Template.Api</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 和 SqlSugar 框架快速搭建 Api 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion.Pure" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
<PackageReference Include="Furion.Pure" Version="4.9.5.21" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.170" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.SqlSugar.Template.App</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 和 SqlSugar 框架快速搭建 Mvc/Api 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion.Pure" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
<PackageReference Include="Furion.Pure" Version="4.9.5.21" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.170" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.SqlSugar.Template.Blazor.App</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 和 SqlSugar 框架快速搭建 Blazor App 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion.Pure" Version="4.9.5.19" />
<PackageReference Include="Furion.Pure" Version="4.9.5.21" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.170" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.SqlSugar.Template.Blazor</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 和 SqlSugar 框架快速搭建 Blazor 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion.Pure" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
<PackageReference Include="Furion.Pure" Version="4.9.5.21" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.170" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.SqlSugar.Template.BlazorWithWebApi</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 和 SqlSugar 框架快速搭建 Blazor和WebApi 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion.Pure" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
<PackageReference Include="Furion.Pure" Version="4.9.5.21" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.170" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.SqlSugar.Template.Mvc</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 和 SqlSugar 框架快速搭建 Mvc 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion.Pure" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
<PackageReference Include="Furion.Pure" Version="4.9.5.21" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.170" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.SqlSugar.Template.Razor</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 和 SqlSugar 框架快速搭建 Razor Pages 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion.Pure" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
<PackageReference Include="Furion.Pure" Version="4.9.5.21" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.170" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Furion.SqlSugar.Template.RazorWithWebApi</id>
<version>4.9.5.19</version>
<version>4.9.5.21</version>
<description>基于 Furion 和 SqlSugar 框架快速搭建 RazorPages和WebApi 多层架构模板。</description>
<authors>百小僧</authors>
<packageTypes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.19" />
<PackageReference Include="Furion.Pure" Version="4.9.5.19" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.5.21" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.5.21" />
<PackageReference Include="Furion.Pure" Version="4.9.5.21" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.170" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion tools/Furion.Tools/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<Version>4.9.5.19</Version>
<Version>4.9.5.21</Version>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>百小僧</Authors>
<Company>百签科技(广东)有限公司</Company>
Expand Down
2 changes: 1 addition & 1 deletion tools/Furion.Tools/Furion.Tools/Furion.Tools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Furion.Tools.CommandLine" Version="4.9.5.19" />
<PackageReference Include="Furion.Tools.CommandLine" Version="4.9.5.21" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion tools/cli.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function AddXmlCommentsToProperties($content, $commentsDictionary) {
return $modifiedContent
}

$FurTools = "Furion Tools v4.9.5.19";
$FurTools = "Furion Tools v4.9.5.21";

# 输出信息
$copyright = @"
Expand Down

0 comments on commit b401ff4

Please sign in to comment.