Skip to content

Commit cf91a51

Browse files
committed
Release 1.9.0
1 parent ee0b5ac commit cf91a51

21 files changed

Lines changed: 110 additions & 12 deletions

File tree

README-zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
> **讣告**
1212
> 本项目谨以此纪念核心维护者 **何小锋**。感谢你为 `joylive-agent` 倾注的心血与智慧。你的代码与开源精神将与这个项目同在。
1313
14-
<img src="docs/image/weixin.png" title="该二维码有效期截止到2025/12/22" width="150" />
14+
<img src="docs/image/weixin.png" title="该二维码有效期截止到2026/4/14" width="150" />
1515

1616
[English](./README.md) | 简体中文
1717

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
> **In Memoriam**
1212
> (Dedicated to the memory of our core maintainer, hexiaofeng. Your code and spirit live on.)
1313
14-
<img src="docs/image/weixin.png" title="The QR code is valid until 2025/12/22" width="150" />
14+
<img src="docs/image/weixin.png" title="The QR code is valid until 2026/4/14" width="150" />
1515

1616
English | [简体中文](./README-zh.md)
1717

RELEASE-zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
22. 修复 令牌桶限流算法问题
2727
23. 修复 Dubbo zookeeper registry 空指针问题
2828
24. 修复 MQ 泳道和多活路由问题
29-
25. 修复其它问题
29+
25. 修复实例级熔断失效问题
3030

3131
## 1.8.0
3232

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
22. Fixed token bucket rate limiting algorithm issues
2727
23. Fixed Dubbo zookeeper registry null pointer issues
2828
24. Fixed MQ lane and multi-active routing issues
29-
25. Fixed other issues
29+
25. Fixed instance-level circuit breaker failure issue
3030

3131
## 1.8.0
3232

docs/image/weixin.png

460 KB
Loading

joylive-bom/pom.xml

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>${revision}</version>
99
<name>joylive-bom</name>
1010
<packaging>pom</packaging>
11-
<description>The parent pom of JoyLive agent.</description>
11+
<description>Bill of Materials (BOM) for JoyLive agent - manages versions for all JoyLive components.</description>
1212
<url>https://github.com/jd-opensource/joylive-agent</url>
1313
<licenses>
1414
<license>
@@ -48,12 +48,31 @@
4848
</scm>
4949

5050
<properties>
51-
<revision>1.9.0-SNAPSHOT</revision>
51+
<revision>1.9.0</revision>
52+
<lombok.version>1.18.34</lombok.version>
5253
<maven-flatten-plugin.version>1.5.0</maven-flatten-plugin.version>
54+
<maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version>
55+
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
56+
<maven-javadoc-plugin.version>3.7.0</maven-javadoc-plugin.version>
57+
<maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version>
58+
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
59+
<maven-resources-plugin.version>3.5.0</maven-resources-plugin.version>
60+
<versions-maven-plugin.version>2.21.0</versions-maven-plugin.version>
61+
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
62+
<maven-dependency-plugin.version>3.3.0</maven-dependency-plugin.version>
63+
<central-publishing-maven-plugin.version>0.10.0</central-publishing-maven-plugin.version>
64+
<junit.version>4.13.2</junit.version>
65+
<junit-jupiter.version>5.10.1</junit-jupiter.version>
66+
<mockito-core.version>4.11.0</mockito-core.version>
5367
</properties>
5468

5569
<dependencyManagement>
5670
<dependencies>
71+
<dependency>
72+
<groupId>org.projectlombok</groupId>
73+
<artifactId>lombok</artifactId>
74+
<version>${lombok.version}</version>
75+
</dependency>
5776
<dependency>
5877
<groupId>com.jd.live</groupId>
5978
<artifactId>joylive-bootstrap-api</artifactId>
@@ -784,6 +803,24 @@
784803
<artifactId>joylive-failover-redisson3</artifactId>
785804
<version>${revision}</version>
786805
</dependency>
806+
<dependency>
807+
<groupId>junit</groupId>
808+
<artifactId>junit</artifactId>
809+
<version>${junit.version}</version>
810+
<scope>test</scope>
811+
</dependency>
812+
<dependency>
813+
<groupId>org.junit.jupiter</groupId>
814+
<artifactId>junit-jupiter</artifactId>
815+
<version>${junit-jupiter.version}</version>
816+
<scope>test</scope>
817+
</dependency>
818+
<dependency>
819+
<groupId>org.mockito</groupId>
820+
<artifactId>mockito-core</artifactId>
821+
<version>${mockito-core.version}</version>
822+
<scope>test</scope>
823+
</dependency>
787824
</dependencies>
788825
</dependencyManagement>
789826

@@ -828,10 +865,12 @@
828865
<plugin>
829866
<groupId>org.apache.maven.plugins</groupId>
830867
<artifactId>maven-deploy-plugin</artifactId>
868+
<version>${maven-deploy-plugin.version}</version>
831869
</plugin>
832870
<plugin>
833871
<groupId>org.apache.maven.plugins</groupId>
834872
<artifactId>maven-source-plugin</artifactId>
873+
<version>${maven-source-plugin.version}</version>
835874
<executions>
836875
<execution>
837876
<phase>package</phase>
@@ -844,6 +883,7 @@
844883
<plugin>
845884
<groupId>org.apache.maven.plugins</groupId>
846885
<artifactId>maven-javadoc-plugin</artifactId>
886+
<version>${maven-javadoc-plugin.version}</version>
847887
<configuration>
848888
<failOnError>false</failOnError>
849889
</configuration>
@@ -859,6 +899,7 @@
859899
<plugin>
860900
<groupId>org.apache.maven.plugins</groupId>
861901
<artifactId>maven-gpg-plugin</artifactId>
902+
<version>${maven-gpg-plugin.version}</version>
862903
<executions>
863904
<execution>
864905
<phase>verify</phase>
@@ -871,25 +912,30 @@
871912
<plugin>
872913
<groupId>org.apache.maven.plugins</groupId>
873914
<artifactId>maven-compiler-plugin</artifactId>
915+
<version>${maven-compiler-plugin.version}</version>
874916
</plugin>
875917
<plugin>
876918
<groupId>org.apache.maven.plugins</groupId>
877919
<artifactId>maven-resources-plugin</artifactId>
920+
<version>${maven-resources-plugin.version}</version>
878921
</plugin>
879922
<plugin>
880923
<groupId>org.apache.maven.plugins</groupId>
881924
<artifactId>maven-dependency-plugin</artifactId>
925+
<version>${maven-dependency-plugin.version}</version>
882926
</plugin>
883927
<plugin>
884928
<groupId>org.codehaus.mojo</groupId>
885929
<artifactId>versions-maven-plugin</artifactId>
930+
<version>${versions-maven-plugin.version}</version>
886931
<configuration>
887932
<generateBackupPoms>false</generateBackupPoms>
888933
</configuration>
889934
</plugin>
890935
<plugin>
891936
<groupId>org.apache.maven.plugins</groupId>
892937
<artifactId>maven-release-plugin</artifactId>
938+
<version>${maven-release-plugin.version}</version>
893939
<configuration>
894940
<mavenExecutorId>forked-path</mavenExecutorId>
895941
<useReleaseProfile>false</useReleaseProfile>
@@ -899,6 +945,7 @@
899945
<plugin>
900946
<groupId>org.sonatype.central</groupId>
901947
<artifactId>central-publishing-maven-plugin</artifactId>
948+
<version>${central-publishing-maven-plugin.version}</version>
902949
<extensions>true</extensions>
903950
<configuration>
904951
<publishingServerId>central</publishingServerId>

joylive-core/joylive-core-annotation/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
</parent>
1111

1212
<artifactId>joylive-core-annotation</artifactId>
13+
<name>joylive-core-annotation</name>
1314

1415
</project>

joylive-core/joylive-core-api/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
<artifactId>joylive-core-api</artifactId>
1313
<name>joylive-core-api</name>
14+
<description>JoyLive core API module providing fundamental interfaces and APIs for the JoyLive agent.</description>
1415

1516
<dependencies>
1617
<dependency>

joylive-core/joylive-core-mcp-server/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</parent>
1111

1212
<artifactId>joylive-core-mcp-server</artifactId>
13+
<name>joylive-core-mcp-server</name>
1314

1415
<dependencies>
1516
<dependency>

joylive-core/joylive-core-mcp-spec/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</parent>
1111

1212
<artifactId>joylive-core-mcp-spec</artifactId>
13+
<name>joylive-core-mcp-spec</name>
1314

1415
<dependencies>
1516
<dependency>

0 commit comments

Comments
 (0)