Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ If you're using Maven, just add the following dependency in `pom.xml`.
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-core</artifactId>
<version>1.8.9</version>
<version>1.8.10</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</issueManagement>

<properties>
<revision>1.8.10-SNAPSHOT</revision>
<revision>1.8.10</revision>
<!-- Compile libs -->
<fastjson.version>1.2.83_noneautotype</fastjson.version>
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*/
public final class Constants {

public static final String SENTINEL_VERSION = VersionUtil.getVersion("1.8.9");
public static final String SENTINEL_VERSION = VersionUtil.getVersion("1.8.10");

public final static int MAX_CONTEXT_NAME_SIZE = 2000;
public final static int MAX_SLOT_CHAIN_SIZE = 6000;
Expand Down
2 changes: 1 addition & 1 deletion sentinel-dashboard/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM amd64/buildpack-deps:buster-curl as installer

ARG SENTINEL_VERSION=1.8.9
ARG SENTINEL_VERSION=1.8.10

RUN set -x \
&& curl -SL --output /home/sentinel-dashboard.jar https://github.com/alibaba/Sentinel/releases/download/${SENTINEL_VERSION}/sentinel-dashboard-${SENTINEL_VERSION}.jar
Expand Down
2 changes: 1 addition & 1 deletion sentinel-dashboard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ java -Dserver.port=8080 \
## 6. 构建Docker镜像

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

*注意: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)自行进行定制和改造。*
Expand Down
Loading