Skip to content

Commit fcdcf12

Browse files
committed
feat: change release log
1 parent fea6a0e commit fcdcf12

5 files changed

Lines changed: 13 additions & 14 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
.DS_Store
33
*.zip
44
*.tar
5+
*.tar.gz
56
build.sh
67
compose.yml

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
## [4.0.0-beta.3] - 2023-12-28
44

5-
### 修复
6-
7-
- 修复由于服务启动顺序导致输出非必要的错误日志
8-
95
### 优化
106

117
- 支持类 ChatGPT 应用的流式 HTTP 响应([#513](https://github.com/chaitin/SafeLine/issues/513)
128
- 更新流式检测引擎到 (20231228) 版本
139

10+
### 修复
11+
12+
- 修复由于服务启动顺序导致输出非必要的错误日志
13+
1414
## [4.0.0-beta.2] - 2023-12-22
1515

1616
### 修复

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ COPY --from=go-builder /work/server /srv/server
103103

104104
COPY documents /srv/documents
105105
WORKDIR /srv/documents
106-
RUN npm i; npm run build
106+
RUN npm ci; npm run build
107107
# npm run serve
108108

109109
ENV TARGET=http://localhost:8080
110110
COPY website /srv/website
111111
WORKDIR /srv/website
112-
RUN npm i; npm run build
112+
RUN npm ci; npm run build
113113
# npm start
114114

115115
COPY release /app/release

documents/docs/05-about/00-changelog.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ title: "版本更新记录"
88

99
### [4.0.0-beta.3] - 2023-12-28
1010

11-
#### 修复
12-
13-
- 修复由于服务启动顺序导致输出非必要的错误日志
14-
1511
#### 优化
1612

1713
- 支持类 ChatGPT 应用的流式 HTTP 响应([#513](https://github.com/chaitin/SafeLine/issues/513)
1814
- 更新流式检测引擎到 (20231228) 版本
1915

16+
#### 修复
17+
18+
- 修复由于服务启动顺序导致输出非必要的错误日志
19+
2020
### [4.0.0-beta.2] - 2023-12-22
2121

2222
#### 修复
@@ -76,7 +76,6 @@ title: "版本更新记录"
7676
- ![](/images/docs/about_changelog/502_page.png)
7777
- 拦截页面支持英文,根据客户端语言自动切换
7878

79-
8079
#### 优化
8180

8281
- 单个 IP 组内的 IP 数量,增加 1w 行的上限。避免更新配置时系统异常

release/beta/compose.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ services:
3636
- ${MGT_PORT:-9443}:1443
3737
environment:
3838
- MGT_PG=postgres://safeline-ce:${POSTGRES_PASSWORD}@safeline-pg/safeline-ce?sslmode=disable
39-
- MGT_JWT_VALID=true
40-
- MGT_LICENSE_SERVER=https://safeline-ce-test-495.dev.rivers.ctopt.cn
39+
- MGT_LICENSE_SERVER=https://safeline-ce-4463.rivers.chaitin.cn/
4140
depends_on:
4241
- postgres
4342
- fvm
@@ -51,7 +50,7 @@ services:
5150
networks:
5251
safeline-ce:
5352
ipv4_address: ${SUBNET_PREFIX}.4
54-
detector:
53+
detect:
5554
container_name: safeline-detector
5655
restart: always
5756
image: chaitin/safeline-detector:${IMAGE_TAG}

0 commit comments

Comments
 (0)