Merge branch 'v5-dev' into v5-dev

This commit is contained in:
yulin 2025-10-11 19:13:10 +08:00 committed by GitHub
commit fd7a2a8212
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# 🚀Changelog # 🚀Changelog
------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------
# 5.8.41(2025-10-10) # 5.8.41(2025-10-11)
### 🐣新特性 ### 🐣新特性
* 【core 】 增加`WeakKeyValueConcurrentMap`及其关联类,同时废弃`WeakConcurrentMap`并替换issue#4039@Github * 【core 】 增加`WeakKeyValueConcurrentMap`及其关联类,同时废弃`WeakConcurrentMap`并替换issue#4039@Github
@ -38,6 +38,7 @@
* 【ai 】 修复`AIConfigBuilder`中方法名拼写错误pr#1382@Gitee * 【ai 】 修复`AIConfigBuilder`中方法名拼写错误pr#1382@Gitee
* 【core 】 修复`StrBuilder`charAt越界判断错误pr#4094@Github * 【core 】 修复`StrBuilder`charAt越界判断错误pr#4094@Github
* 【dfa 】 修复`WordTree.addWord`末尾为特殊字符导致的无法匹配问题pr#4092@Github * 【dfa 】 修复`WordTree.addWord`末尾为特殊字符导致的无法匹配问题pr#4092@Github
* 【core 】 修复`ServiceLoaderUtil.loadFirstAvailable`在JDK24+后未捕获异常导致的报错问题issue#ID0952@Gitee
------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------
# 5.8.40(2025-08-26) # 5.8.40(2025-08-26)

View File

@ -2,8 +2,11 @@ package cn.hutool.core.util;
import cn.hutool.core.collection.ListUtil; import cn.hutool.core.collection.ListUtil;
import java.util.*; import java.util.*;
/** /**
* SPI机制中的服务加载工具类流程如下 * SPI机制中的服务加载工具类流程如下
* *