Skip to content

Commit a69f441

Browse files
committed
feat(backend): 自动归档版本日志到仓库中 #2515
1 parent 04362b5 commit a69f441

File tree

15 files changed

+343
-296
lines changed

15 files changed

+343
-296
lines changed

.github/configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
}
3131
],
3232
"sort": "ASC",
33-
"template": "${{CHANGELOG}}\n**Full Changelog**: https://github.com/${{OWNER}}/${{REPO}}/compare/${{FROM_TAG}}...${{TO_TAG}}",
33+
"template": "${{CHANGELOG}}[Full Changelog](https://github.com/${{OWNER}}/${{REPO}}/compare/${{FROM_TAG}}...${{TO_TAG}})",
3434
"pr_template": "- ${{TITLE}}\n",
3535
"empty_template": "- no changes",
3636
"label_extractor": [

.github/workflows/auto_create_release.yml

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,22 @@ jobs:
1515
name: Checkout
1616
uses: actions/checkout@v2
1717

18-
- name: Get latest tag
19-
id: latest-tag
18+
- id: get-current-branch
19+
name: Get current branch
2020
run: |
2121
git fetch --all --tags
22-
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
23-
echo "latest_tag=$LATEST_TAG" >> $GITHUB_OUTPUT
22+
current_branch=$(git branch --show-current)
23+
echo "current_branch=$current_branch" >> $GITHUB_OUTPUT
2424
25-
- name: Run read-yaml action
26-
id: yaml-data
25+
- id: get-latest-tag
26+
name: Get latest tag
27+
run: |
28+
git fetch --all --tags
29+
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
30+
echo "latest_tag=$latest_tag" >> $GITHUB_OUTPUT
31+
32+
- id: yaml-data
33+
name: Run read-yaml action
2734
uses: jbutcher5/read-yaml@main
2835
with:
2936
file: 'helm-charts/bk-dbm/Chart.yaml'
@@ -50,7 +57,7 @@ jobs:
5057
configuration: ".github/configuration.json"
5158
commitMode: true
5259
ignorePreReleases: false
53-
fromTag: ${{ steps.latest-tag.outputs.latest_tag }}
60+
fromTag: ${{ steps.get-latest-tag.outputs.latest_tag }}
5461
toTag: ${{ steps.yaml-data.outputs.data }}
5562
env:
5663
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -66,3 +73,16 @@ jobs:
6673
body: ${{ steps.build-release-log.outputs.changelog }}
6774
draft: false
6875
prerelease: true
76+
77+
- name: Auto Add Release File
78+
id: add-release-file
79+
run: |
80+
filename="dbm-ui/release/${{ steps.yaml-data.outputs.data }}_$(date +%Y%m%d).md"
81+
echo -e "## ${{ steps.yaml-data.outputs.data }}\n\n" > ${filename}
82+
echo -e "${{ steps.build-release-log.outputs.changelog }}" >> ${filename}
83+
sed -i -E 's/#([0-9]+)/[#\1](https:\/\/github.com\/TencentBlueKing\/blueking-dbm\/issues\/\1)/g' ${filename}
84+
git config --global user.email github-actions@users.noreply.github.com
85+
git config --global user.name github-actions
86+
git add .
87+
git commit -m "minor: release version ${{ steps.yaml-data.outputs.data }}"
88+
git push origin ${{ steps.get-current-branch.outputs.current_branch }}

dbm-ui/backend/components/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def _send_request(self, params, headers, use_admin=False):
277277
# 结果层面的处理结果
278278
try:
279279
response_result = raw_response.json()
280-
logger.info("third-open-api-debug[%s]: response_result = %s", self.url, response_result)
280+
logger.debug("third-open-api-debug[%s]: response_result = %s", self.url, response_result)
281281
except AttributeError:
282282
error_message = "data api response not json format url->[{}] content->[{}]".format(
283283
self.url,

dbm-ui/backend/ticket/flow_manager/base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,11 @@ def run(self):
185185
except Exception as err: # pylint: disable=broad-except
186186
self.run_error_status_handler(err)
187187
return
188-
else:
188+
try:
189189
self.create_cluster_operate_records()
190190
self.create_instance_operate_records()
191+
except Exception as err: # pylint: disable=broad-except
192+
logger.warning("create operate record error, {}".format(err))
191193

192194
self.run_status_handler(flow_obj_id)
193195

dbm-ui/release/V1.3.0-alpha.13_20231204.md

Lines changed: 202 additions & 202 deletions
Large diffs are not rendered by default.

dbm-ui/release/V1.3.0-alpha.14_20231205.md

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

33
### 🔥 Refactors
44

5-
- refactor(dbm-services): 同步cc未及时采集的资源硬件信息 close #2311
5+
- refactor(dbm-services): 同步cc未及时采集的资源硬件信息 close [#2311](https://github.com/TencentBlueKing/blueking-dbm/issues/2311)
66

77

88
### 🚀 Features
99

10-
- feat(dbm-services): dbha redis support password api #2227
10+
- feat(dbm-services): dbha redis support password api [#2227](https://github.com/TencentBlueKing/blueking-dbm/issues/2227)
1111

12-
- feat(backend): dbha table should add index close #2078
12+
- feat(backend): dbha table should add index close [#2078](https://github.com/TencentBlueKing/blueking-dbm/issues/2078)
1313

14-
- feat(other): 配置dns独立出来成一个component #2203
14+
- feat(other): 配置dns独立出来成一个component [#2203](https://github.com/TencentBlueKing/blueking-dbm/issues/2203)
1515

1616

1717
### 🐛 Bugfixes
1818

19-
- fix(backend): 修复 report db migrate 失败的问题 #2293
19+
- fix(backend): 修复 report db migrate 失败的问题 [#2293](https://github.com/TencentBlueKing/blueking-dbm/issues/2293)
2020

21-
- fix(dbm-services): 资源池列表搜索逻辑城市时需要转换 close #2297
21+
- fix(dbm-services): 资源池列表搜索逻辑城市时需要转换 close [#2297](https://github.com/TencentBlueKing/blueking-dbm/issues/2297)
2222

23-
- fix(backend): 开区模板增加集群类型 #2303
23+
- fix(backend): 开区模板增加集群类型 [#2303](https://github.com/TencentBlueKing/blueking-dbm/issues/2303)
2424

25-
- fix(backend): 开启资源池支持亲和性开关 #2309
25+
- fix(backend): 开启资源池支持亲和性开关 [#2309](https://github.com/TencentBlueKing/blueking-dbm/issues/2309)
2626

27-
- fix(backend): 修改dbha的配置 #2316
27+
- fix(backend): 修改dbha的配置 [#2316](https://github.com/TencentBlueKing/blueking-dbm/issues/2316)
2828

29-
- fix: 修复流程key错误和flashback去除调用函数get_cluster_config #2298
29+
- fix: 修复流程key错误和flashback去除调用函数get_cluster_config [#2298](https://github.com/TencentBlueKing/blueking-dbm/issues/2298)
3030

31-
- fix(mysql): mysql-monitor配置enable类型错误;context和scenes权限错误 close #2307
31+
- fix(mysql): mysql-monitor配置enable类型错误;context和scenes权限错误 close [#2307](https://github.com/TencentBlueKing/blueking-dbm/issues/2307)
3232

33-
- fix(redis): 集群类型和名字不一致修复 close #2314
33+
- fix(redis): 集群类型和名字不一致修复 close [#2314](https://github.com/TencentBlueKing/blueking-dbm/issues/2314)
3434

35-
- fix(backend): dbha的city和cloud id为int #2319
35+
- fix(backend): dbha的city和cloud id为int [#2319](https://github.com/TencentBlueKing/blueking-dbm/issues/2319)
3636

37-
- fix(frontend): 线上问题高优先级需求及问题修复 #2094
37+
- fix(frontend): 线上问题高优先级需求及问题修复 [#2094](https://github.com/TencentBlueKing/blueking-dbm/issues/2094)
3838

39-
- fix: 调整tbinlogdumper的功能 #2135
39+
- fix: 调整tbinlogdumper的功能 [#2135](https://github.com/TencentBlueKing/blueking-dbm/issues/2135)
4040

41-
- fix(backend): 资源池申请增加localtion参数 #2326
41+
- fix(backend): 资源池申请增加localtion参数 [#2326](https://github.com/TencentBlueKing/blueking-dbm/issues/2326)

dbm-ui/release/V1.3.0-alpha.15_20231207.md

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

33
### 🔥 Refactors
44

5-
- refactor(backend): 导航搜索接口问题处理 + 告警策略更新 #2304
5+
- refactor(backend): 导航搜索接口问题处理 + 告警策略更新 [#2304](https://github.com/TencentBlueKing/blueking-dbm/issues/2304)
66

77

88
### 🚀 Features
99

10-
- feat(backend): 更新dbconfig close #2344
10+
- feat(backend): 更新dbconfig close [#2344](https://github.com/TencentBlueKing/blueking-dbm/issues/2344)
1111

1212

1313
### 🐛 Bugfixes
1414

15-
- fix(backend): 优化资源导入流程日志优化 close #2318
15+
- fix(backend): 优化资源导入流程日志优化 close [#2318](https://github.com/TencentBlueKing/blueking-dbm/issues/2318)
1616

17-
- fix: 优化editConfig流程代码 #2341
17+
- fix: 优化editConfig流程代码 [#2341](https://github.com/TencentBlueKing/blueking-dbm/issues/2341)
1818

19-
- fix(frontend): db集群列表设置项统一为后端持久化 #2339
19+
- fix(frontend): db集群列表设置项统一为后端持久化 [#2339](https://github.com/TencentBlueKing/blueking-dbm/issues/2339)
2020

21-
- fix(frontend): mysql授权单据详情集群列表显示问题 #2347
21+
- fix(frontend): mysql授权单据详情集群列表显示问题 [#2347](https://github.com/TencentBlueKing/blueking-dbm/issues/2347)
2222

23-
- fix(mysql): 优化mysql-crond部署逻辑 close #2334
23+
- fix(mysql): 优化mysql-crond部署逻辑 close [#2334](https://github.com/TencentBlueKing/blueking-dbm/issues/2334)
2424

25-
- fix(frontend): 资源规格要素关系变更 #2349
25+
- fix(frontend): 资源规格要素关系变更 [#2349](https://github.com/TencentBlueKing/blueking-dbm/issues/2349)
2626

27-
- fix(frontend): 告警组问题修复 #1487
27+
- fix(frontend): 告警组问题修复 [#1487](https://github.com/TencentBlueKing/blueking-dbm/issues/1487)
2828

29-
- fix(backend): 审计中心 resource 错误的问题 #2342
29+
- fix(backend): 审计中心 resource 错误的问题 [#2342](https://github.com/TencentBlueKing/blueking-dbm/issues/2342)

dbm-ui/release/V1.3.0-alpha.16_20231207.md

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

33
### 🚀 Features
44

5-
- feat(backend): dbconfig增加pulsar 2.10.4 配置 close #2355
5+
- feat(backend): dbconfig增加pulsar 2.10.4 配置 close [#2355](https://github.com/TencentBlueKing/blueking-dbm/issues/2355)
66

7-
- feat(backend): dns可观测性增强调整 #2359
7+
- feat(backend): dns可观测性增强调整 [#2359](https://github.com/TencentBlueKing/blueking-dbm/issues/2359)
88

9-
- feat(backend): 日志创建支持自定义 ES 集群 #2353
9+
- feat(backend): 日志创建支持自定义 ES 集群 [#2353](https://github.com/TencentBlueKing/blueking-dbm/issues/2353)
1010

1111

1212
### 🐛 Bugfixes
1313

14-
- fix: 集群维度清理分区配置 #2360
14+
- fix: 集群维度清理分区配置 [#2360](https://github.com/TencentBlueKing/blueking-dbm/issues/2360)
1515

16-
- fix: 调整flow添加临时账号返回异常的策略 #2358
16+
- fix: 调整flow添加临时账号返回异常的策略 [#2358](https://github.com/TencentBlueKing/blueking-dbm/issues/2358)
1717

18-
- fix: 修复主从迁移流程单机器多实例端口错误问题 #2354
18+
- fix: 修复主从迁移流程单机器多实例端口错误问题 [#2354](https://github.com/TencentBlueKing/blueking-dbm/issues/2354)
1919

20-
- fix(frontend): 修复线上体验问题 #2363
20+
- fix(frontend): 修复线上体验问题 [#2363](https://github.com/TencentBlueKing/blueking-dbm/issues/2363)
2121

22-
- fix(dbm-services): fix dbha redis password service problem #2367
22+
- fix(dbm-services): fix dbha redis password service problem [#2367](https://github.com/TencentBlueKing/blueking-dbm/issues/2367)
2323

24-
- fix(backend): 导航搜索500修复 #2369
24+
- fix(backend): 导航搜索500修复 [#2369](https://github.com/TencentBlueKing/blueking-dbm/issues/2369)
2525

26-
- fix(frontend): 分区管理新建分区时执行记录显示不完整 #2371
26+
- fix(frontend): 分区管理新建分区时执行记录显示不完整 [#2371](https://github.com/TencentBlueKing/blueking-dbm/issues/2371)
2727

28-
- fix(dbm-services): auth fail monitor only support redis #2379
28+
- fix(dbm-services): auth fail monitor only support redis [#2379](https://github.com/TencentBlueKing/blueking-dbm/issues/2379)
2929

30-
- fix(frontend): 调整任务状态对应的可执行操作 #2377
30+
- fix(frontend): 调整任务状态对应的可执行操作 [#2377](https://github.com/TencentBlueKing/blueking-dbm/issues/2377)
3131

32-
- fix(frontend): redis数据复制中目标业务对应的集群列表获取问题 #2386
32+
- fix(frontend): redis数据复制中目标业务对应的集群列表获取问题 [#2386](https://github.com/TencentBlueKing/blueking-dbm/issues/2386)
3333

34-
- fix(dbm-services): 资源导入时没有转换os_type的执行逻辑异常 close #2384
34+
- fix(dbm-services): 资源导入时没有转换os_type的执行逻辑异常 close [#2384](https://github.com/TencentBlueKing/blueking-dbm/issues/2384)
3535

36-
- fix(backend): 补充加解密日志 #2390
36+
- fix(backend): 补充加解密日志 [#2390](https://github.com/TencentBlueKing/blueking-dbm/issues/2390)
3737

38-
- fix(mysql): cluster迁移端口问题 #2392
38+
- fix(mysql): cluster迁移端口问题 [#2392](https://github.com/TencentBlueKing/blueking-dbm/issues/2392)
3939

40-
- fix(frontend): 新增规格磁盘非必填设置默认值为空 #2395
40+
- fix(frontend): 新增规格磁盘非必填设置默认值为空 [#2395](https://github.com/TencentBlueKing/blueking-dbm/issues/2395)

dbm-ui/release/V1.3.0-alpha.17_20231210.md

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

33
### 🚀 Features
44

5-
- feat(dbm-services): redis add new cluster tendisssd #2423
5+
- feat(dbm-services): redis add new cluster tendisssd [#2423](https://github.com/TencentBlueKing/blueking-dbm/issues/2423)
66

7-
- feat: 新增帐号规则迁移支持mysqlPassword、检查oldPassword、合并权限的功能 #2231
7+
- feat: 新增帐号规则迁移支持mysqlPassword、检查oldPassword、合并权限的功能 [#2231](https://github.com/TencentBlueKing/blueking-dbm/issues/2231)
88

9-
- feat(redis): 监控策略集成 #2338
9+
- feat(redis): 监控策略集成 [#2338](https://github.com/TencentBlueKing/blueking-dbm/issues/2338)
1010

11-
- feat(frontend): 导航调整 #2043
11+
- feat(frontend): 导航调整 [#2043](https://github.com/TencentBlueKing/blueking-dbm/issues/2043)
1212

13-
- feat(backend): clb和北极星信息展示 #2456
13+
- feat(backend): clb和北极星信息展示 [#2456](https://github.com/TencentBlueKing/blueking-dbm/issues/2456)
1414

15-
- feat(backend): 拆分 API 部署 & proxypass接口权限统一 #2452
15+
- feat(backend): 拆分 API 部署 & proxypass接口权限统一 [#2452](https://github.com/TencentBlueKing/blueking-dbm/issues/2452)
1616

1717

1818
### 🐛 Bugfixes
1919

20-
- fix(other): 版本日志生成落后问题 #2425
20+
- fix(other): 版本日志生成落后问题 [#2425](https://github.com/TencentBlueKing/blueking-dbm/issues/2425)
2121

22-
- fix(mysql): 修复重建slave payload下发的多余端口 close #2429
22+
- fix(mysql): 修复重建slave payload下发的多余端口 close [#2429](https://github.com/TencentBlueKing/blueking-dbm/issues/2429)
2323

24-
- fix(backend): 补充riak重启单据 #2432
24+
- fix(backend): 补充riak重启单据 [#2432](https://github.com/TencentBlueKing/blueking-dbm/issues/2432)
2525

26-
- fix(frontend): 分区管理新建时自动执行确认按钮点击无效 #2433
26+
- fix(frontend): 分区管理新建时自动执行确认按钮点击无效 [#2433](https://github.com/TencentBlueKing/blueking-dbm/issues/2433)
2727

28-
- fix(dbm-services): fix polaris and clb proxy_pass url #2438
28+
- fix(dbm-services): fix polaris and clb proxy_pass url [#2438](https://github.com/TencentBlueKing/blueking-dbm/issues/2438)
2929

30-
- fix(mysql): 故障slave重建输出日志导致panic close #2445
30+
- fix(mysql): 故障slave重建输出日志导致panic close [#2445](https://github.com/TencentBlueKing/blueking-dbm/issues/2445)
3131

32-
- fix(backend): debug only #2427
32+
- fix(backend): debug only [#2427](https://github.com/TencentBlueKing/blueking-dbm/issues/2427)
3333

34-
- fix(backend): 修改dbha文件渲染配置 #2436
34+
- fix(backend): 修改dbha文件渲染配置 [#2436](https://github.com/TencentBlueKing/blueking-dbm/issues/2436)
3535

36-
- fix(backend): 补充priv-manager透传接口 #2448
36+
- fix(backend): 补充priv-manager透传接口 [#2448](https://github.com/TencentBlueKing/blueking-dbm/issues/2448)
3737

38-
- fix(frontend): 大数据扩缩容单据新增提单详情 #2382
38+
- fix(frontend): 大数据扩缩容单据新增提单详情 [#2382](https://github.com/TencentBlueKing/blueking-dbm/issues/2382)
3939

40-
- fix(frontend): db集群列表高度问题 #2453
40+
- fix(frontend): db集群列表高度问题 [#2453](https://github.com/TencentBlueKing/blueking-dbm/issues/2453)
4141

42-
- fix(backend): dumper相关协议和视图接口调整 #2180
42+
- fix(backend): dumper相关协议和视图接口调整 [#2180](https://github.com/TencentBlueKing/blueking-dbm/issues/2180)
4343

4444

4545

46-
**Full Changelog**: https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.16...1.3.0-alpha.17
46+
[Full Changelog](https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.16...1.3.0-alpha.17)

dbm-ui/release/V1.3.0-alpha.18_20231211.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,38 @@
22

33
### 🚀 Features
44

5-
- feat(backend): 日志支持自定义存储天数 #2464
5+
- feat(backend): 日志支持自定义存储天数 [#2464](https://github.com/TencentBlueKing/blueking-dbm/issues/2464)
66

7-
- feat(backend): clb和北极星信息展示 #2456
7+
- feat(backend): clb和北极星信息展示 [#2456](https://github.com/TencentBlueKing/blueking-dbm/issues/2456)
88

9-
- feat(dbm-services): 迁移spider表结构到中控 close #2388
9+
- feat(dbm-services): 迁移spider表结构到中控 close [#2388](https://github.com/TencentBlueKing/blueking-dbm/issues/2388)
1010

11-
- feat(mysql): rotatebinlog时间信息增加时区 close #2449
11+
- feat(mysql): rotatebinlog时间信息增加时区 close [#2449](https://github.com/TencentBlueKing/blueking-dbm/issues/2449)
1212

1313

1414
### 🐛 Bugfixes
1515

16-
- fix(frontend): http配置更新错误、业务选择器收藏功能 #2467
16+
- fix(frontend): http配置更新错误、业务选择器收藏功能 [#2467](https://github.com/TencentBlueKing/blueking-dbm/issues/2467)
1717

18-
- fix(frontend): mysql授权规则下支持集群备库域名 #2472
18+
- fix(frontend): mysql授权规则下支持集群备库域名 [#2472](https://github.com/TencentBlueKing/blueking-dbm/issues/2472)
1919

20-
- fix(frontend): 服务单列表刷新问题 #2455
20+
- fix(frontend): 服务单列表刷新问题 [#2455](https://github.com/TencentBlueKing/blueking-dbm/issues/2455)
2121

22-
- fix(redis): 修复几个bug #2376
22+
- fix(redis): 修复几个bug [#2376](https://github.com/TencentBlueKing/blueking-dbm/issues/2376)
2323

24-
- fix(backend): 原子更新Package信息 #2463
24+
- fix(backend): 原子更新Package信息 [#2463](https://github.com/TencentBlueKing/blueking-dbm/issues/2463)
2525

26-
- fix(frontend): db集群列表高度问题 #2453
26+
- fix(frontend): db集群列表高度问题 [#2453](https://github.com/TencentBlueKing/blueking-dbm/issues/2453)
2727

28-
- fix(backend): 集群列表支持集群ID批量过滤 #2481
28+
- fix(backend): 集群列表支持集群ID批量过滤 [#2481](https://github.com/TencentBlueKing/blueking-dbm/issues/2481)
2929

30-
- fix: 增加tbinlogdumper部署联动部署dns解析以及l5_agent #2441
30+
- fix: 增加tbinlogdumper部署联动部署dns解析以及l5_agent [#2441](https://github.com/TencentBlueKing/blueking-dbm/issues/2441)
3131

32-
- fix(frontend): 调整任务状态对应的可执行操作 #2377
32+
- fix(frontend): 调整任务状态对应的可执行操作 [#2377](https://github.com/TencentBlueKing/blueking-dbm/issues/2377)
3333

34-
- fix(mysql): 重建slave没有正确继承is_stand_by状态 close #2474
34+
- fix(mysql): 重建slave没有正确继承is_stand_by状态 close [#2474](https://github.com/TencentBlueKing/blueking-dbm/issues/2474)
3535

36-
- fix(frontend): 修复CSRF token 取值错误的问题 #2469
36+
- fix(frontend): 修复CSRF token 取值错误的问题 [#2469](https://github.com/TencentBlueKing/blueking-dbm/issues/2469)
3737

3838

39-
40-
**Full Changelog**: https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.17...1.3.0-alpha.18
39+
[Full Changelog](https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.17...1.3.0-alpha.18)
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## 1.3.0-alpha.19
2+
3+
### 🚀 Features
4+
5+
- feat(mysql): 优化库表备份返回逻辑 close [#2492](https://github.com/TencentBlueKing/blueking-dbm/issues/2492)
6+
7+
- feat(backend): 使用Makefile编译dbha close [#2489](https://github.com/TencentBlueKing/blueking-dbm/issues/2489)
8+
9+
- feat(backend): 实例状态修改按信号模式处理集群状态 [#2500](https://github.com/TencentBlueKing/blueking-dbm/issues/2500)
10+
11+
12+
### 🐛 Bugfixes
13+
14+
- fix(backend): 更新分区和权限镜像版本 [#2487](https://github.com/TencentBlueKing/blueking-dbm/issues/2487)
15+
16+
- fix(redis): 数据复制做些修复 [#2491](https://github.com/TencentBlueKing/blueking-dbm/issues/2491)
17+
18+
- fix(frontend): 单据id筛选,个人工作台交互调整,全局搜索支持ctrl+k快捷键 [#2496](https://github.com/TencentBlueKing/blueking-dbm/issues/2496)
19+
20+
- fix(backend): 执行互斥bug修复 [#2501](https://github.com/TencentBlueKing/blueking-dbm/issues/2501)
21+
22+
- fix(frontend): api接口错误拦截 [#2503](https://github.com/TencentBlueKing/blueking-dbm/issues/2503)
23+
24+
25+
26+
[Full Changelog](https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.18...1.3.0-alpha.19)

helm-charts/bk-dbm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ dependencies:
7979
description: A Helm chart for bkdbm
8080
name: bk-dbm
8181
type: application
82-
version: 1.3.0-alpha.19
83-
appVersion: 1.3.0-alpha.19
82+
version: 1.3.0-alpha.20
83+
appVersion: 1.3.0-alpha.20

0 commit comments

Comments
 (0)