Skip to content

Commit

Permalink
feat(backend): 自动归档版本日志到仓库中 #2515
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangzhw8 committed Dec 12, 2023
1 parent 04362b5 commit a69f441
Show file tree
Hide file tree
Showing 15 changed files with 343 additions and 296 deletions.
2 changes: 1 addition & 1 deletion .github/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
],
"sort": "ASC",
"template": "${{CHANGELOG}}\n**Full Changelog**: https://github.com/${{OWNER}}/${{REPO}}/compare/${{FROM_TAG}}...${{TO_TAG}}",
"template": "${{CHANGELOG}}[Full Changelog](https://github.com/${{OWNER}}/${{REPO}}/compare/${{FROM_TAG}}...${{TO_TAG}})",
"pr_template": "- ${{TITLE}}\n",
"empty_template": "- no changes",
"label_extractor": [
Expand Down
34 changes: 27 additions & 7 deletions .github/workflows/auto_create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,22 @@ jobs:
name: Checkout
uses: actions/checkout@v2

- name: Get latest tag
id: latest-tag
- id: get-current-branch
name: Get current branch
run: |
git fetch --all --tags
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "latest_tag=$LATEST_TAG" >> $GITHUB_OUTPUT
current_branch=$(git branch --show-current)
echo "current_branch=$current_branch" >> $GITHUB_OUTPUT
- name: Run read-yaml action
id: yaml-data
- id: get-latest-tag
name: Get latest tag
run: |
git fetch --all --tags
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "latest_tag=$latest_tag" >> $GITHUB_OUTPUT
- id: yaml-data
name: Run read-yaml action
uses: jbutcher5/read-yaml@main
with:
file: 'helm-charts/bk-dbm/Chart.yaml'
Expand All @@ -50,7 +57,7 @@ jobs:
configuration: ".github/configuration.json"
commitMode: true
ignorePreReleases: false
fromTag: ${{ steps.latest-tag.outputs.latest_tag }}
fromTag: ${{ steps.get-latest-tag.outputs.latest_tag }}
toTag: ${{ steps.yaml-data.outputs.data }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -66,3 +73,16 @@ jobs:
body: ${{ steps.build-release-log.outputs.changelog }}
draft: false
prerelease: true

- name: Auto Add Release File
id: add-release-file
run: |
filename="dbm-ui/release/${{ steps.yaml-data.outputs.data }}_$(date +%Y%m%d).md"
echo -e "## ${{ steps.yaml-data.outputs.data }}\n\n" > ${filename}
echo -e "${{ steps.build-release-log.outputs.changelog }}" >> ${filename}
sed -i -E 's/#([0-9]+)/[#\1](https:\/\/github.com\/TencentBlueKing\/blueking-dbm\/issues\/\1)/g' ${filename}
git config --global user.email github-actions@users.noreply.github.com
git config --global user.name github-actions
git add .
git commit -m "minor: release version ${{ steps.yaml-data.outputs.data }}"
git push origin ${{ steps.get-current-branch.outputs.current_branch }}
2 changes: 1 addition & 1 deletion dbm-ui/backend/components/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def _send_request(self, params, headers, use_admin=False):
# 结果层面的处理结果
try:
response_result = raw_response.json()
logger.info("third-open-api-debug[%s]: response_result = %s", self.url, response_result)
logger.debug("third-open-api-debug[%s]: response_result = %s", self.url, response_result)
except AttributeError:
error_message = "data api response not json format url->[{}] content->[{}]".format(
self.url,
Expand Down
4 changes: 3 additions & 1 deletion dbm-ui/backend/ticket/flow_manager/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,11 @@ def run(self):
except Exception as err: # pylint: disable=broad-except
self.run_error_status_handler(err)
return
else:
try:
self.create_cluster_operate_records()
self.create_instance_operate_records()
except Exception as err: # pylint: disable=broad-except
logger.warning("create operate record error, {}".format(err))

self.run_status_handler(flow_obj_id)

Expand Down
404 changes: 202 additions & 202 deletions dbm-ui/release/V1.3.0-alpha.13_20231204.md

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions dbm-ui/release/V1.3.0-alpha.14_20231205.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,40 @@

### 🔥 Refactors

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


### 🚀 Features

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

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

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


### 🐛 Bugfixes

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

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

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

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

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

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

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

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

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

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

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

- fix(backend): 资源池申请增加localtion参数 #2326
- fix(backend): 资源池申请增加localtion参数 [#2326](https://github.com/TencentBlueKing/blueking-dbm/issues/2326)
20 changes: 10 additions & 10 deletions dbm-ui/release/V1.3.0-alpha.15_20231207.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@

### 🔥 Refactors

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


### 🚀 Features

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


### 🐛 Bugfixes

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

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

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

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

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

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

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

- fix(backend): 审计中心 resource 错误的问题 #2342
- fix(backend): 审计中心 resource 错误的问题 [#2342](https://github.com/TencentBlueKing/blueking-dbm/issues/2342)
34 changes: 17 additions & 17 deletions dbm-ui/release/V1.3.0-alpha.16_20231207.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,39 @@

### 🚀 Features

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

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

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


### 🐛 Bugfixes

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

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

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

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

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

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

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

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

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

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

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

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

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

- fix(frontend): 新增规格磁盘非必填设置默认值为空 #2395
- fix(frontend): 新增规格磁盘非必填设置默认值为空 [#2395](https://github.com/TencentBlueKing/blueking-dbm/issues/2395)
38 changes: 19 additions & 19 deletions dbm-ui/release/V1.3.0-alpha.17_20231210.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,45 @@

### 🚀 Features

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

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

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

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

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

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


### 🐛 Bugfixes

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

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

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

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

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

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

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

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

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

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

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

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



**Full Changelog**: https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.16...1.3.0-alpha.17
[Full Changelog](https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.16...1.3.0-alpha.17)
33 changes: 16 additions & 17 deletions dbm-ui/release/V1.3.0-alpha.18_20231211.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,38 @@

### 🚀 Features

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

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

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

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


### 🐛 Bugfixes

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

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

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

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

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

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

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

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

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

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

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



**Full Changelog**: https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.17...1.3.0-alpha.18
[Full Changelog](https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.17...1.3.0-alpha.18)
26 changes: 26 additions & 0 deletions dbm-ui/release/V1.3.0-alpha.19_20231211.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## 1.3.0-alpha.19

### 🚀 Features

- feat(mysql): 优化库表备份返回逻辑 close [#2492](https://github.com/TencentBlueKing/blueking-dbm/issues/2492)

- feat(backend): 使用Makefile编译dbha close [#2489](https://github.com/TencentBlueKing/blueking-dbm/issues/2489)

- feat(backend): 实例状态修改按信号模式处理集群状态 [#2500](https://github.com/TencentBlueKing/blueking-dbm/issues/2500)


### 🐛 Bugfixes

- fix(backend): 更新分区和权限镜像版本 [#2487](https://github.com/TencentBlueKing/blueking-dbm/issues/2487)

- fix(redis): 数据复制做些修复 [#2491](https://github.com/TencentBlueKing/blueking-dbm/issues/2491)

- fix(frontend): 单据id筛选,个人工作台交互调整,全局搜索支持ctrl+k快捷键 [#2496](https://github.com/TencentBlueKing/blueking-dbm/issues/2496)

- fix(backend): 执行互斥bug修复 [#2501](https://github.com/TencentBlueKing/blueking-dbm/issues/2501)

- fix(frontend): api接口错误拦截 [#2503](https://github.com/TencentBlueKing/blueking-dbm/issues/2503)



[Full Changelog](https://github.com/TencentBlueKing/blueking-dbm/compare/1.3.0-alpha.18...1.3.0-alpha.19)
4 changes: 2 additions & 2 deletions helm-charts/bk-dbm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@ dependencies:
description: A Helm chart for bkdbm
name: bk-dbm
type: application
version: 1.3.0-alpha.19
appVersion: 1.3.0-alpha.19
version: 1.3.0-alpha.20
appVersion: 1.3.0-alpha.20
Loading

0 comments on commit a69f441

Please sign in to comment.