Skip to content

Commit 1659c2c

Browse files
docs: 添加v3.14.4版本日志 (#8301)
1 parent 522604b commit 1659c2c

File tree

8 files changed

+43
-10
lines changed

8 files changed

+43
-10
lines changed

docs/apidoc/apigw/definition.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ spec_version: 1
55
release:
66
# 发布版本号;
77
# 资源配置更新,需更新此版本号才会发布资源版本,此版本号和 sdk 版本号一致,错误设置会影响调用方使用
8-
version: 3.14.4-alpha1
8+
version: 3.14.4
99
# 版本标题
10-
title: "3.14.4-alpha1"
10+
title: "3.14.4"
1111
# 版本描述
12-
comment: "3.14.4-alpha1"
12+
comment: "3.14.4"
1313

1414
# 定义网关基本信息,用于命令 `sync_apigw_config`
1515
apigateway:

docs/smart/web/app_desc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
specVersion: 3
2-
appVersion: "3.14.4-alpha1"
2+
appVersion: "3.14.4"
33
app:
44
region: "default"
55
bkAppCode: "bk_cmdb_saas"

docs/support-file/changelog/release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [Version: v3.14.4-alpha1] - 2024-12-11
1+
## [Version: v3.14.4] - 2024-12-17
22
**新增功能**
33
- 模块支持批量创建
44
- 主机、通用模型实例和动态分组查询支持大小写敏感匹配操作符
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### 新增
2+
3+
- [新增] 模块支持批量创建
4+
- [新增] 主机、通用模型实例和动态分组查询支持大小写敏感匹配操作符
5+
- [新增] 业务和项目相关资源支持导出
6+
7+
### 优化
8+
9+
- [优化] 进程监听信息的tooltip显示支持中英文切换
10+
- [优化] 主机模糊查询优化并增加IP数量限制
11+
- [优化] 平台配置业务快照名称配置修改为业务ID
12+
13+
### 修复
14+
15+
- [修复] 组织组件非多选字段结构改为数组
16+
- [修复] 新建模型隐藏容器分组
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### Feature
2+
3+
- [Feature] Module supports batch creation.
4+
- [Feature] Host, general model instance and dynamic group query support case-sensitive matching operators.
5+
- [Feature] Business and project related resources support exporting.
6+
7+
### Improved
8+
9+
- [Improved] The tooltip display of process monitoring information supports switching between Chinese and English
10+
- [Improved] Host fuzzy query optimization and increase IP number limit
11+
- [Improved] Modify the platform configuration business snapshot name configuration to business ID
12+
13+
### Fixed
14+
15+
- [Fixed] The non-multi-select field structure of the organization component is changed to an array
16+
- [Fixed] New model hides container grouping

docs/support-file/helm/backend/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apiVersion: v2
2-
appVersion: 3.14.4-alpha1
2+
appVersion: 3.14.4
33
description: BlueKing Configuration Management DataBase (bk-cmdb) is an enterprise level configuration management serivce database.
44
name: bk-cmdb
55
type: application
6-
version: 3.15.4-alpha1
6+
version: 3.15.4
77
dependencies:
88
- name: common
99
repository: https://charts.bitnami.com/bitnami

docs/support-file/helm/web/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apiVersion: v2
2-
appVersion: 3.14.4-alpha1
2+
appVersion: 3.14.4
33
description: BlueKing Configuration Management DataBase (bk-cmdb) is an enterprise level configuration management serivce database.
44
name: bk-cmdb-web
55
type: application
6-
version: 3.15.4-alpha1
6+
version: 3.15.4
77
dependencies:
88
- name: common
99
repository: https://charts.bitnami.com/bitnami

src/web_server/middleware/user/plugins/method/blueking/userinfo.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ func (m *user) LoginUser(c *gin.Context, config map[string]string, isMultiOwner
9494
}
9595

9696
for _, bkToken := range bkTokens {
97-
loginURL := checkUrl + bkToken
97+
// compatible with bk-login url with / suffix
98+
loginURL := strings.ReplaceAll(checkUrl, "//accounts", "/accounts") + bkToken
9899
loginResultByteArr, err := httpCli.GET(loginURL, nil, nil)
99100
if err != nil {
100101
blog.Errorf("get user info return error: %v, rid: %s", err, rid)

0 commit comments

Comments
 (0)