😎升级Furion v4.9.7.1(新增流变/粘土类型)及其他依赖包
This commit is contained in:
parent
2bb5183841
commit
ffafd9d7ff
@ -20,9 +20,9 @@
|
|||||||
<PackageReference Include="AspNetCoreRateLimit" Version="5.0.0" />
|
<PackageReference Include="AspNetCoreRateLimit" Version="5.0.0" />
|
||||||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.0" Aliases="BouncyCastleV2" />
|
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.0" Aliases="BouncyCastleV2" />
|
||||||
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.17.1" />
|
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.17.1" />
|
||||||
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.6.20" />
|
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.7.1" />
|
||||||
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.6.20" />
|
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.7.1" />
|
||||||
<PackageReference Include="Furion.Pure" Version="4.9.6.20" />
|
<PackageReference Include="Furion.Pure" Version="4.9.7.1" />
|
||||||
<PackageReference Include="Hardware.Info" Version="101.0.0" />
|
<PackageReference Include="Hardware.Info" Version="101.0.0" />
|
||||||
<PackageReference Include="Hashids.net" Version="1.7.0" />
|
<PackageReference Include="Hashids.net" Version="1.7.0" />
|
||||||
<PackageReference Include="IPTools.China" Version="1.6.0" />
|
<PackageReference Include="IPTools.China" Version="1.6.0" />
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<PackageReference Include="SSH.NET" Version="2024.2.0" />
|
<PackageReference Include="SSH.NET" Version="2024.2.0" />
|
||||||
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.5.1" />
|
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.5.1" />
|
||||||
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
||||||
<PackageReference Include="TencentCloudSDK.Sms" Version="3.0.1168" />
|
<PackageReference Include="TencentCloudSDK.Sms" Version="3.0.1170" />
|
||||||
<PackageReference Include="UAParser" Version="3.1.47" />
|
<PackageReference Include="UAParser" Version="3.1.47" />
|
||||||
<PackageReference Include="Yitter.IdGenerator" Version="1.0.14" />
|
<PackageReference Include="Yitter.IdGenerator" Version="1.0.14" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
@ -6,7 +6,6 @@
|
|||||||
|
|
||||||
global using Admin.NET.Core.Service;
|
global using Admin.NET.Core.Service;
|
||||||
global using Furion;
|
global using Furion;
|
||||||
global using Furion.ClayObject;
|
|
||||||
global using Furion.ConfigurableOptions;
|
global using Furion.ConfigurableOptions;
|
||||||
global using Furion.DatabaseAccessor;
|
global using Furion.DatabaseAccessor;
|
||||||
global using Furion.DataEncryption;
|
global using Furion.DataEncryption;
|
||||||
@ -15,10 +14,11 @@ global using Furion.DependencyInjection;
|
|||||||
global using Furion.DynamicApiController;
|
global using Furion.DynamicApiController;
|
||||||
global using Furion.EventBus;
|
global using Furion.EventBus;
|
||||||
global using Furion.FriendlyException;
|
global using Furion.FriendlyException;
|
||||||
|
global using Furion.HttpRemote;
|
||||||
global using Furion.JsonSerialization;
|
global using Furion.JsonSerialization;
|
||||||
global using Furion.Logging;
|
global using Furion.Logging;
|
||||||
global using Furion.HttpRemote;
|
|
||||||
global using Furion.Schedule;
|
global using Furion.Schedule;
|
||||||
|
global using Furion.Shapeless;
|
||||||
global using Furion.UnifyResult;
|
global using Furion.UnifyResult;
|
||||||
global using Furion.ViewEngine;
|
global using Furion.ViewEngine;
|
||||||
global using Magicodes.ExporterAndImporter.Core;
|
global using Magicodes.ExporterAndImporter.Core;
|
||||||
|
|||||||
@ -74,10 +74,10 @@ public class SysSmsService : IDynamicApiController, ITransient
|
|||||||
var random = new Random();
|
var random = new Random();
|
||||||
var verifyCode = random.Next(100000, 999999);
|
var verifyCode = random.Next(100000, 999999);
|
||||||
|
|
||||||
var templateParam = Clay.Object(new
|
var templateParam = new
|
||||||
{
|
{
|
||||||
code = verifyCode
|
code = verifyCode
|
||||||
});
|
};
|
||||||
|
|
||||||
var client = CreateAliyunClient();
|
var client = CreateAliyunClient();
|
||||||
var template = _smsOptions.Aliyun.GetTemplate();
|
var template = _smsOptions.Aliyun.GetTemplate();
|
||||||
|
|||||||
@ -5,7 +5,6 @@
|
|||||||
// 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!
|
// 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!
|
||||||
|
|
||||||
using Admin.NET.Core;
|
using Admin.NET.Core;
|
||||||
using Furion.ClayObject;
|
|
||||||
using Furion.DataEncryption;
|
using Furion.DataEncryption;
|
||||||
using Furion.FriendlyException;
|
using Furion.FriendlyException;
|
||||||
using Furion.JsonSerialization;
|
using Furion.JsonSerialization;
|
||||||
@ -73,7 +72,7 @@ public class SuperApiAop : DefaultSuperApiAop
|
|||||||
var paths = api.Url.Split('/');
|
var paths = api.Url.Split('/');
|
||||||
var actionName = paths[paths.Length - 1];
|
var actionName = paths[paths.Length - 1];
|
||||||
|
|
||||||
var apiInfo = Clay.Object(new
|
var apiInfo = new
|
||||||
{
|
{
|
||||||
requestUrl = api.Url,
|
requestUrl = api.Url,
|
||||||
httpMethod = api.HttpMethod,
|
httpMethod = api.HttpMethod,
|
||||||
@ -100,7 +99,7 @@ public class SuperApiAop : DefaultSuperApiAop
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
exception = aopContext.Exception == null ? null : JSON.Serialize(aopContext.Exception)
|
exception = aopContext.Exception == null ? null : JSON.Serialize(aopContext.Exception)
|
||||||
});
|
};
|
||||||
|
|
||||||
var logger = App.GetRequiredService<ILoggerFactory>().CreateLogger(CommonConst.SysLogCategoryName);
|
var logger = App.GetRequiredService<ILoggerFactory>().CreateLogger(CommonConst.SysLogCategoryName);
|
||||||
using var scope = logger.ScopeContext(new Dictionary<object, object> {
|
using var scope = logger.ScopeContext(new Dictionary<object, object> {
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"name": "admin.net.pro",
|
"name": "admin.net.pro",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "2.4.33",
|
"version": "2.4.33",
|
||||||
"lastBuildTime": "2025.01.22",
|
"lastBuildTime": "2025.01.23",
|
||||||
"description": "Admin.NET 站在巨人肩膀上的 .NET 通用权限开发框架",
|
"description": "Admin.NET 站在巨人肩膀上的 .NET 通用权限开发框架",
|
||||||
"author": "zuohuaijun",
|
"author": "zuohuaijun",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@ -24,7 +24,7 @@
|
|||||||
"@vue-office/docx": "^1.6.2",
|
"@vue-office/docx": "^1.6.2",
|
||||||
"@vue-office/excel": "^1.7.14",
|
"@vue-office/excel": "^1.7.14",
|
||||||
"@vue-office/pdf": "^2.0.9",
|
"@vue-office/pdf": "^2.0.9",
|
||||||
"@vueuse/core": "^12.4.0",
|
"@vueuse/core": "^12.5.0",
|
||||||
"@wangeditor/editor": "^5.1.23",
|
"@wangeditor/editor": "^5.1.23",
|
||||||
"@wangeditor/editor-for-vue": "^5.1.12",
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
||||||
"animate.css": "^4.1.1",
|
"animate.css": "^4.1.1",
|
||||||
@ -74,7 +74,7 @@
|
|||||||
"vue-router": "^4.5.0",
|
"vue-router": "^4.5.0",
|
||||||
"vue-signature-pad": "^3.0.2",
|
"vue-signature-pad": "^3.0.2",
|
||||||
"vue3-tree-org": "^4.2.2",
|
"vue3-tree-org": "^4.2.2",
|
||||||
"vxe-pc-ui": "^4.3.77",
|
"vxe-pc-ui": "^4.3.78",
|
||||||
"vxe-table": "^4.10.0",
|
"vxe-table": "^4.10.0",
|
||||||
"vxe-table-plugin-element": "^4.0.4",
|
"vxe-table-plugin-element": "^4.0.4",
|
||||||
"vxe-table-plugin-export-xlsx": "^4.0.7",
|
"vxe-table-plugin-export-xlsx": "^4.0.7",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user