登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
AI 队友
登录
注册
4月29日周三晚 8 点,来看 PocketClaw 直播首秀,从开箱到实操全流程跑通、多场景案例演示、首次版本更新介绍,点击预约~
代码拉取完成,页面将自动刷新
开源项目
>
WEB应用开发
>
Web开发框架
&&
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
9.9K
Star
14.5K
Fork
4.2K
GVP
dotNET China
/
Furion
代码
Issues
0
Pull Requests
0
统计
流水线
服务
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
开发画像分析
我知道了,不再自动展开
更新失败,请稍后重试!
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
📝 发布 Furion v4.5.9 版本
已完成
#I5ULWN
百小僧
拥有者
创建于
2022-10-09 12:07
### 功能描述 发布 `Furion` 和 `Furion.Tools` 和 `Furion.Xunit` `v4.5.9` 版本 包含以下功能更新: ### 功能清单 - [x] 调整日志模块所有日志时间默认为 `24小时制`,过去是 `12小时制` [!612](https://gitee.com/dotnetchina/Furion/pulls/612) - [x] 修复并发情况下设置日志上下文出现偶然性空引用问题 [c262131](https://gitee.com/dotnetchina/Furion/commit/c2621313eebb958e0e4c3e7020f6ed6e62443c71) - [x] 新增日志模块可配置是否启用上下文功能 `IncludeScopes` 属性 [#I5UJRS](https://gitee.com/dotnetchina/Furion/issues/I5UJRS) [a55d49d](https://gitee.com/dotnetchina/Furion/commit/a55d49d25be9fbd5696482f173f0b465596f9752) - [x] 新增 `LoggingMonitor` 日志筛选 `WriteFilter` 配置,支持更多自定义监听 [6f06f12](https://gitee.com/dotnetchina/Furion/commit/6f06f12b2c115bd181f4832daa7537efe5cb3fe8) - [x] 发布 `v4.5.9` 版本文档 - [x] 更新示例项目 `samples` 依赖至 `v4.5.9` 版本 - [x] [Replit](https://replit.com/) 网站 `Furion` 案例同步到 `v4.5.9` 版本 - [x] `Gitee` 和 `Github` 发布 `Release-v4.5.9` 版本 - [x] 同步更新日志 ### 代码实现 [https://gitee.com/dotnetchina/Furion/pulls/613](https://gitee.com/dotnetchina/Furion/pulls/613) [https://gitee.com/dotnetchina/Furion/pulls/612](https://gitee.com/dotnetchina/Furion/pulls/612) [https://gitee.com/dotnetchina/Furion/commit/4e8c1f134e2b6a9c99e105b0f771dff4c0ff4897](https://gitee.com/dotnetchina/Furion/commit/4e8c1f134e2b6a9c99e105b0f771dff4c0ff4897) [https://gitee.com/dotnetchina/Furion/commit/8e6d9f94dca3815784f6780b15b13f1d42b40970](https://gitee.com/dotnetchina/Furion/commit/8e6d9f94dca3815784f6780b15b13f1d42b40970) [https://gitee.com/dotnetchina/Furion/commit/926e99217e7938c90ccbe6d6107a20b57ccda5aa](https://gitee.com/dotnetchina/Furion/commit/926e99217e7938c90ccbe6d6107a20b57ccda5aa) [https://gitee.com/dotnetchina/Furion/commit/9baaa8ce1c3be93c33b961c380b0e0cc8544a1bd](https://gitee.com/dotnetchina/Furion/commit/9baaa8ce1c3be93c33b961c380b0e0cc8544a1bd) [https://gitee.com/dotnetchina/Furion/commit/c2621313eebb958e0e4c3e7020f6ed6e62443c71](https://gitee.com/dotnetchina/Furion/commit/c2621313eebb958e0e4c3e7020f6ed6e62443c71) [https://gitee.com/dotnetchina/Furion/commit/a55d49d25be9fbd5696482f173f0b465596f9752](https://gitee.com/dotnetchina/Furion/commit/a55d49d25be9fbd5696482f173f0b465596f9752) [https://gitee.com/dotnetchina/Furion/commit/6f06f12b2c115bd181f4832daa7537efe5cb3fe8](https://gitee.com/dotnetchina/Furion/commit/6f06f12b2c115bd181f4832daa7537efe5cb3fe8) ### 文档更新 1. `LoggingMonitor` 支持 `WriteFilter` 配置 ```cs services.AddMonitorLogging(options => { options.WriteFilter = (context) => { // 获取控制器/操作描述器 var controllerActionDescriptor = context.ActionDescriptor as ControllerActionDescriptor; // 你的逻辑....,不需要拦截返回 false,否则 true return true; }; }); ```
### 功能描述 发布 `Furion` 和 `Furion.Tools` 和 `Furion.Xunit` `v4.5.9` 版本 包含以下功能更新: ### 功能清单 - [x] 调整日志模块所有日志时间默认为 `24小时制`,过去是 `12小时制` [!612](https://gitee.com/dotnetchina/Furion/pulls/612) - [x] 修复并发情况下设置日志上下文出现偶然性空引用问题 [c262131](https://gitee.com/dotnetchina/Furion/commit/c2621313eebb958e0e4c3e7020f6ed6e62443c71) - [x] 新增日志模块可配置是否启用上下文功能 `IncludeScopes` 属性 [#I5UJRS](https://gitee.com/dotnetchina/Furion/issues/I5UJRS) [a55d49d](https://gitee.com/dotnetchina/Furion/commit/a55d49d25be9fbd5696482f173f0b465596f9752) - [x] 新增 `LoggingMonitor` 日志筛选 `WriteFilter` 配置,支持更多自定义监听 [6f06f12](https://gitee.com/dotnetchina/Furion/commit/6f06f12b2c115bd181f4832daa7537efe5cb3fe8) - [x] 发布 `v4.5.9` 版本文档 - [x] 更新示例项目 `samples` 依赖至 `v4.5.9` 版本 - [x] [Replit](https://replit.com/) 网站 `Furion` 案例同步到 `v4.5.9` 版本 - [x] `Gitee` 和 `Github` 发布 `Release-v4.5.9` 版本 - [x] 同步更新日志 ### 代码实现 [https://gitee.com/dotnetchina/Furion/pulls/613](https://gitee.com/dotnetchina/Furion/pulls/613) [https://gitee.com/dotnetchina/Furion/pulls/612](https://gitee.com/dotnetchina/Furion/pulls/612) [https://gitee.com/dotnetchina/Furion/commit/4e8c1f134e2b6a9c99e105b0f771dff4c0ff4897](https://gitee.com/dotnetchina/Furion/commit/4e8c1f134e2b6a9c99e105b0f771dff4c0ff4897) [https://gitee.com/dotnetchina/Furion/commit/8e6d9f94dca3815784f6780b15b13f1d42b40970](https://gitee.com/dotnetchina/Furion/commit/8e6d9f94dca3815784f6780b15b13f1d42b40970) [https://gitee.com/dotnetchina/Furion/commit/926e99217e7938c90ccbe6d6107a20b57ccda5aa](https://gitee.com/dotnetchina/Furion/commit/926e99217e7938c90ccbe6d6107a20b57ccda5aa) [https://gitee.com/dotnetchina/Furion/commit/9baaa8ce1c3be93c33b961c380b0e0cc8544a1bd](https://gitee.com/dotnetchina/Furion/commit/9baaa8ce1c3be93c33b961c380b0e0cc8544a1bd) [https://gitee.com/dotnetchina/Furion/commit/c2621313eebb958e0e4c3e7020f6ed6e62443c71](https://gitee.com/dotnetchina/Furion/commit/c2621313eebb958e0e4c3e7020f6ed6e62443c71) [https://gitee.com/dotnetchina/Furion/commit/a55d49d25be9fbd5696482f173f0b465596f9752](https://gitee.com/dotnetchina/Furion/commit/a55d49d25be9fbd5696482f173f0b465596f9752) [https://gitee.com/dotnetchina/Furion/commit/6f06f12b2c115bd181f4832daa7537efe5cb3fe8](https://gitee.com/dotnetchina/Furion/commit/6f06f12b2c115bd181f4832daa7537efe5cb3fe8) ### 文档更新 1. `LoggingMonitor` 支持 `WriteFilter` 配置 ```cs services.AddMonitorLogging(options => { options.WriteFilter = (context) => { // 获取控制器/操作描述器 var controllerActionDescriptor = context.ActionDescriptor as ControllerActionDescriptor; // 你的逻辑....,不需要拦截返回 false,否则 true return true; }; }); ```
评论 (
2
)
登录
后才可以发表评论
状态
已完成
待办的
进行中
已完成
已关闭
负责人
未设置
百小僧
monksoul
负责人
协作者
+负责人
+协作者
标签
新功能
漏洞
未设置
标签管理
里程碑
v4.5.9
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
分支 (
-
)
标签 (
-
)
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
参与者(1)
C#
1
https://gitee.com/dotnetchina/Furion.git
git@gitee.com:dotnetchina/Furion.git
dotnetchina
Furion
Furion
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册