Skip to content

Commit cf97bba

Browse files
authored
chore: prepare for 1.8.10 release (#3621)
Bump version from 1.8.10-SNAPSHOT to 1.8.10 across pom.xml, Constants.java, Dockerfile, and README docs in preparation for the 1.8.10 release.
1 parent 1375ff9 commit cf97bba

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ If you're using Maven, just add the following dependency in `pom.xml`.
6565
<dependency>
6666
<groupId>com.alibaba.csp</groupId>
6767
<artifactId>sentinel-core</artifactId>
68-
<version>1.8.9</version>
68+
<version>1.8.10</version>
6969
</dependency>
7070
```
7171

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</issueManagement>
4141

4242
<properties>
43-
<revision>1.8.10-SNAPSHOT</revision>
43+
<revision>1.8.10</revision>
4444
<!-- Compile libs -->
4545
<fastjson.version>1.2.83_noneautotype</fastjson.version>
4646
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>

sentinel-core/src/main/java/com/alibaba/csp/sentinel/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*/
3232
public final class Constants {
3333

34-
public static final String SENTINEL_VERSION = VersionUtil.getVersion("1.8.9");
34+
public static final String SENTINEL_VERSION = VersionUtil.getVersion("1.8.10");
3535

3636
public final static int MAX_CONTEXT_NAME_SIZE = 2000;
3737
public final static int MAX_SLOT_CHAIN_SIZE = 6000;

sentinel-dashboard/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM amd64/buildpack-deps:buster-curl as installer
22

3-
ARG SENTINEL_VERSION=1.8.9
3+
ARG SENTINEL_VERSION=1.8.10
44

55
RUN set -x \
66
&& curl -SL --output /home/sentinel-dashboard.jar https://github.com/alibaba/Sentinel/releases/download/${SENTINEL_VERSION}/sentinel-dashboard-${SENTINEL_VERSION}.jar

sentinel-dashboard/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ java -Dserver.port=8080 \
6161
## 6. 构建Docker镜像
6262

6363
```bash
64-
docker build --build-arg SENTINEL_VERSION=1.8.9 -t ${REGISTRY}/sentinel-dashboard:v1.8.9 .
64+
docker build --build-arg SENTINEL_VERSION=1.8.10 -t ${REGISTRY}/sentinel-dashboard:v1.8.10 .
6565
```
6666

6767
*注意:Sentinel 控制台目前仅支持单机部署。Sentinel 控制台项目提供 Sentinel 功能全集示例,不作为开箱即用的生产环境控制台,不提供安全可靠保障。若希望在生产环境使用请根据[文档](https://github.com/alibaba/Sentinel/wiki/%E5%9C%A8%E7%94%9F%E4%BA%A7%E7%8E%AF%E5%A2%83%E4%B8%AD%E4%BD%BF%E7%94%A8-Sentinel)自行进行定制和改造。*

0 commit comments

Comments
 (0)