Procházet zdrojové kódy

feat: release v4.1.0

dundunHa před 1 rokem
rodič
revize
591e3598e6

+ 18 - 0
CHANGELOG.md

@@ -1,5 +1,23 @@
 # SAFELINE-CE CHANGELOG
 
+## [4.1.0] - 2024-01-11
+
+### 新增
+
+- 拦截日志一键复制为 cURL ([#531](https://github.com/chaitin/SafeLine/issues/531))
+
+### 优化
+
+- IP 组若为在线订阅,显示更新时间([#574](https://github.com/chaitin/SafeLine/issues/574))
+- 优化 safeline-fvm 容器重启速度,重启时间减少 10s
+- 优化 safeline-mgt 容器镜像层数,从 39 层下降到 24 层
+
+### 修复
+
+- 修复日志列表 IP 来源地区未翻译国家编号的问题([#578](https://github.com/chaitin/SafeLine/issues/578))
+- 修复英文翻译问题([#591](https://github.com/chaitin/SafeLine/issues/591))
+- 修复雷池管理后台证书更新后未自动重启问题
+
 ## [4.0.2] - 2024-01-06
 
 ### 修复

+ 18 - 0
documents/docs/05-about/00-changelog.md

@@ -6,6 +6,24 @@ title: "版本更新记录"
 
 [版本升级方法](/guide/upgrade)
 
+### [4.1.0] - 2024-01-11
+
+#### 新增
+
+- 拦截日志一键复制为 cURL ([#531](https://github.com/chaitin/SafeLine/issues/531))
+
+#### 优化
+
+- IP 组若为在线订阅,显示更新时间([#574](https://github.com/chaitin/SafeLine/issues/574))
+- 优化 safeline-fvm 容器重启速度,重启时间减少 10s
+- 优化 safeline-mgt 容器镜像层数,从 39 层下降到 24 层
+
+#### 修复
+
+- 修复日志列表 IP 来源地区未翻译国家编号的问题([#578](https://github.com/chaitin/SafeLine/issues/578))
+- 修复英文翻译问题([#591](https://github.com/chaitin/SafeLine/issues/591))
+- 修复雷池管理后台证书更新后未自动重启问题
+
 ### [4.0.2] - 2024-01-06
 
 #### 修复

+ 2 - 11
documents/docs/05-about/05-apisix.md

@@ -55,23 +55,14 @@ bash -c "$(curl -fsSLk <https://waf-ce.chaitin.cn/release/latest/setup.sh>)"
 cd /data/safeline/resources/detector/
 ```
 
-用文本编辑器打开目录里的 snserver.yml 文件,寻找这样的三行内容
+用文本编辑器打开目录里的 detector.yml 文件,我们需要将 bind 方式从 unix socket 改为 tcp,添加如下配置
 
 ```
-bind_addr: unix:///resources/detector/snserver.sock
-# bind_addr: 0.0.0.0
-# listen_port: 8000
-```
-
-找到以后,我们需要将 bind 方式从 unix socket 改为 tcp,将这三行修改为以下内容即可:
-
-```
-# bind_addr: unix:///resources/detector/snserver.sock
 bind_addr: 0.0.0.0
 listen_port: 8000
 ```
 
-这样我们就把雷池引擎的服务监听到了 8000 端口,现在只需要把容器内的 8000 端口映射到宿主机即可。
+detector配置的属性值将覆盖容器内默认配置文件的同名属性值。这样我们就把雷池引擎的服务监听到了 8000 端口,现在只需要把容器内的 8000 端口映射到宿主机即可。
 
 进入雷池的安装目录
 

+ 1 - 1
release/latest/version.json

@@ -1,4 +1,4 @@
 {
-  "latest_version": "v4.0.2",
+  "latest_version": "v4.1.0",
   "rec_version": "v3.11.1"
 }