Commit Graph

5026 Commits

Author SHA1 Message Date
Albumen Kevin 4e80ee57ee
Update NOTICE 2023-01-13 10:16:32 +08:00
Albumen Kevin 1f40fde04c Prepare 2.7.21 release 2023-01-12 19:42:26 +08:00
Albumen Kevin 6104444a74 Update list 2023-01-12 19:36:43 +08:00
Albumen Kevin 6f4011fff9 Bump to 2.7.21-SNAPSHOT 2022-12-30 10:48:01 +08:00
Albumen Kevin 6200a89947 Prepare 2.7.20 release 2022-12-21 23:45:40 +08:00
Albumen Kevin bf29eb5706
Add router fail fast option (Backport #9388) (#11188)
* Add router fail fast option (Backport #9388)

* update
2022-12-21 23:44:42 +08:00
Albumen Kevin 326fb7250c
Fix Nacos ServiceName error (#11180) 2022-12-21 23:38:49 +08:00
Albumen Kevin d6341d98ba bump to 2.7.20-SNAPSHOT 2022-12-13 14:57:38 +08:00
Albumen Kevin 3e8c759a6b Prepare 2.7.19 release 2022-11-28 17:29:31 +08:00
Albumen Kevin 37689d927a Cherry pick #9340 2022-11-28 17:29:01 +08:00
胡俊 1a9eda5822
Fix dubbo service name bug (#11038) 2022-11-28 17:25:06 +08:00
kimmking b4386f90f0 add fleet project file to .gitignore 2022-10-16 16:26:51 +08:00
JiHongYuan 2969a54e6c
fix optimize if null instanceof before (#10674)
```
// instanceof not throw NullPointExcetion
if (result.getException() != null && result.getException() instanceof RpcException) 

// Examle:
public static void main(String[] args) {
    Exception e = null;
    if (e instanceof Exception) {
        System.out.println("instanceof");
    }
    System.out.println("success");
}
//Out:
success
```
2022-09-27 10:02:53 +08:00
wuwen c676fb9b72
Fix PojoUtils support localdatetime,lcaldate,localtime serializable and deserialize (#10632) 2022-09-22 15:43:04 +08:00
Albumen Kevin 688177fb05
[2.7] Update hessian version (#10630) 2022-09-16 11:23:46 +08:00
xielongfei bcf97647ca
Fixes #9913, rmi protocol supoort group and version (#9951) 2022-09-08 14:23:35 +08:00
Albumen Kevin 81fabc73f3
Remove useless toString in Timeout Filter (#10531) 2022-09-02 11:07:11 +08:00
Albumen Kevin b5b478cf05 update to 2.7.18-SNAPSHOT 2022-08-23 10:51:09 +08:00
Albumen Kevin d8f9768fe5 Merge branch 'apache-master' into 2.7.17-release 2022-08-16 16:57:13 +08:00
Albumen Kevin 66e5d084a8 Fix pom configuration 2022-08-16 16:46:57 +08:00
Albumen Kevin cc04c11009 Release 2.7.17 2022-08-16 16:42:44 +08:00
Albumen Kevin 8b580d0ba0
[2.7] Fix Nacos aggregate listen (#10467)
* [2.7] Fix Nacos aggregate listen

* fix empty

* rename
2022-08-16 16:35:47 +08:00
Albumen Kevin cac475008c
[2.7] Remove to rpcInvocation string (#10460) 2022-08-15 14:44:45 +08:00
ichenpeng 787d26d132
Interrupt current thread when InterruptException occur (#10164)
* throw InterruptedException in FailoverClusterInvoker

* interrupt current thread when InterruptException occur
2022-07-11 09:46:04 +08:00
Albumen Kevin 3ec1bee643 update to 2.7.17-SNAPSHOT 2022-07-06 09:54:24 +08:00
Albumen Kevin 2323dc8f8c Release 2.7.16 2022-07-01 15:52:23 +08:00
kefate bbcb26cae2
Standard code comment format. (#10251)
Co-authored-by: kefate <>
2022-07-01 15:19:53 +08:00
一个不知名的Java靓仔 7a0c805487
fix memory leak (#10231) 2022-06-29 13:56:24 +08:00
zhaoguhong cd6b63d92d
Revert "[LFUCache]Add frequency of key and delete the empty cache queue (#7967)" (#10086)
This reverts commit e8581fd7ff.
2022-06-29 09:28:56 +08:00
YHRivory c1a76a06a8
typo: WhellTimer.Woker run method typo. (#10226) 2022-06-28 19:37:38 +08:00
stone_lion f1ca2b4f0f
feat: telnet invoke command with context argument. (#9974) 2022-06-27 11:14:35 +08:00
blake.qiu 2a758e2d57
Adjusted the code to make it cleaner. (#10208)
Co-authored-by: blake.qiu <blake.qiu@ly.com>
2022-06-24 16:56:43 +08:00
Wang Chengming f931f2f630
upgrade fastjson (#10189)
Co-authored-by: 呈铭 <beck.wcm@antgroup.com>
2022-06-22 16:57:50 +08:00
一个不知名的Java靓仔 d6460f53c6
Fix service was offline without re-registration due to network jitter (#10182) 2022-06-22 16:57:34 +08:00
Wu Xuecheng 9efe21af84
Fix can't authenticate by username and password when use Nacos (#9941)
#9910
2022-06-14 14:14:00 +08:00
zhaoguhong 8d9e252ff1
fix #9910, metadata-report support a separate configuration username and password (#9921) 2022-06-14 14:12:29 +08:00
Wang Chengming edd3d282eb
fix #10059, fix ZookeeperDynamicConfiguration remove cache listener mistake (#10106)
Co-authored-by: 呈铭 <beck.wcm@antgroup.com>
2022-06-06 19:43:59 +08:00
sunshujie1990 c25284eccf
remove redundant volatile on initialized (#9926) 2022-05-09 10:25:41 +08:00
zhaoguhong beb96b4bec
fix issue#9922, merge the provider side parameters exclude tag (#9933) 2022-05-09 10:21:24 +08:00
juzimao c5c1bad8d3
Fix The first element of the queue cannot be deleted when an exception occurs in the method processWithAccessKeyLogger(#9978)
Fixes issue #9953
2022-05-07 14:46:18 +08:00
Wang Chengming 3a8e5e6c0c
Remove params type size check in MapTypeBuilder (#9848)
fixes #5122 & #8212
2022-04-01 11:06:52 +08:00
Wu Xuecheng 1222676fad
fix stubevent can't work (#9825)
fix #9824
2022-03-23 12:49:23 +08:00
PJ Fanning da4f5f227e
upgrade logging jars due to security issues (#9791) 2022-03-16 14:58:47 +08:00
ken.lj fc2d4d7187
fix weight cannot work properly on multi-registry scenario (#9787)
also see #9786
2022-03-16 14:54:46 +08:00
hadley zhang a5b1d17afc
add a new method for getting the number of consumer service addresses in the case of multiple registries. (#8026)
Co-authored-by: zhenyu zhang <hadleyzhang@gmail.com>
2022-03-16 09:38:08 +08:00
chen gang 7cf49db41d
fix #9582, potential of fork cluster caused by timeout(#9613) 2022-03-15 22:04:29 +08:00
ken.lj 7c177faed2
Revert "[ISSUE #9721] add memory limited linked blocking queue (#9722)" (#9788)
This reverts commit d5bcbcffe7.
2022-03-15 21:01:11 +08:00
dragon-zhang d5bcbcffe7
[ISSUE #9721] add memory limited linked blocking queue (#9722)
fixes #9721
2022-03-15 21:00:38 +08:00
ken.lj 3401474c75
set registry id to metada (#9782) 2022-03-15 15:18:56 +08:00
ken.lj 6fe17e7fb1
Fix concurrent modification exception of stated urls (#9779) 2022-03-15 11:55:20 +08:00