File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22.DS_Store
33* .zip
44* .tar
5+ * .tar.gz
56build.sh
67compose.yml
Original file line number Diff line number Diff line change 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### 修复
Original file line number Diff line number Diff line change @@ -103,13 +103,13 @@ COPY --from=go-builder /work/server /srv/server
103103
104104COPY documents /srv/documents
105105WORKDIR /srv/documents
106- RUN npm i ; npm run build
106+ RUN npm ci ; npm run build
107107# npm run serve
108108
109109ENV TARGET=http://localhost:8080
110110COPY website /srv/website
111111WORKDIR /srv/website
112- RUN npm i ; npm run build
112+ RUN npm ci ; npm run build
113113# npm start
114114
115115COPY release /app/release
Original file line number Diff line number Diff 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 行的上限。避免更新配置时系统异常
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments