Skip to content

Commit

Permalink
docs: 添加v3.14.4版本日志 (#8301)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcy00000000000000 authored Dec 19, 2024
1 parent 522604b commit 1659c2c
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 10 deletions.
6 changes: 3 additions & 3 deletions docs/apidoc/apigw/definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ spec_version: 1
release:
# 发布版本号;
# 资源配置更新,需更新此版本号才会发布资源版本,此版本号和 sdk 版本号一致,错误设置会影响调用方使用
version: 3.14.4-alpha1
version: 3.14.4
# 版本标题
title: "3.14.4-alpha1"
title: "3.14.4"
# 版本描述
comment: "3.14.4-alpha1"
comment: "3.14.4"

# 定义网关基本信息,用于命令 `sync_apigw_config`
apigateway:
Expand Down
2 changes: 1 addition & 1 deletion docs/smart/web/app_desc.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
specVersion: 3
appVersion: "3.14.4-alpha1"
appVersion: "3.14.4"
app:
region: "default"
bkAppCode: "bk_cmdb_saas"
Expand Down
2 changes: 1 addition & 1 deletion docs/support-file/changelog/release.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [Version: v3.14.4-alpha1] - 2024-12-11
## [Version: v3.14.4] - 2024-12-17
**新增功能**
- 模块支持批量创建
- 主机、通用模型实例和动态分组查询支持大小写敏感匹配操作符
Expand Down
16 changes: 16 additions & 0 deletions docs/support-file/changelog_user/ch/v3.14.4_2024-12-17.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
### 新增

- [新增] 模块支持批量创建
- [新增] 主机、通用模型实例和动态分组查询支持大小写敏感匹配操作符
- [新增] 业务和项目相关资源支持导出

### 优化

- [优化] 进程监听信息的tooltip显示支持中英文切换
- [优化] 主机模糊查询优化并增加IP数量限制
- [优化] 平台配置业务快照名称配置修改为业务ID

### 修复

- [修复] 组织组件非多选字段结构改为数组
- [修复] 新建模型隐藏容器分组
16 changes: 16 additions & 0 deletions docs/support-file/changelog_user/en/v3.14.4_2024-12-17.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
### Feature

- [Feature] Module supports batch creation.
- [Feature] Host, general model instance and dynamic group query support case-sensitive matching operators.
- [Feature] Business and project related resources support exporting.

### Improved

- [Improved] The tooltip display of process monitoring information supports switching between Chinese and English
- [Improved] Host fuzzy query optimization and increase IP number limit
- [Improved] Modify the platform configuration business snapshot name configuration to business ID

### Fixed

- [Fixed] The non-multi-select field structure of the organization component is changed to an array
- [Fixed] New model hides container grouping
4 changes: 2 additions & 2 deletions docs/support-file/helm/backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: 3.14.4-alpha1
appVersion: 3.14.4
description: BlueKing Configuration Management DataBase (bk-cmdb) is an enterprise level configuration management serivce database.
name: bk-cmdb
type: application
version: 3.15.4-alpha1
version: 3.15.4
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
Expand Down
4 changes: 2 additions & 2 deletions docs/support-file/helm/web/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: 3.14.4-alpha1
appVersion: 3.14.4
description: BlueKing Configuration Management DataBase (bk-cmdb) is an enterprise level configuration management serivce database.
name: bk-cmdb-web
type: application
version: 3.15.4-alpha1
version: 3.15.4
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ func (m *user) LoginUser(c *gin.Context, config map[string]string, isMultiOwner
}

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

0 comments on commit 1659c2c

Please sign in to comment.