Skip to content

Commit

Permalink
Merge pull request #1311 from benero/bugfix_pip_upgrade
Browse files Browse the repository at this point in the history
fix: Fix version log initialization problem --bug=1308
  • Loading branch information
benero authored May 10, 2024
2 parents 5d864e1 + 2fed7f2 commit 35153dd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: 蓝鲸智云
category: 办公应用
introduction: 流程服务是蓝鲸推出的轻量级ITSM,通过可自定义设计的流程模块,覆盖IT服务中的不同管理活动或应用场景。帮助企业用户规范内部管理流程,提升沟通及管理效率。
introduction_en: bk_itsm is a lightweight ITSM created by Blueking. It covers different application scenarios in IT services through customizable workflows and help enterprise users to implement standardize IT workflow, improve communication and management efficiency.
version: 2.6.15
version: 2.6.16
language: python
is_use_celery: True
is_use_celery_with_gevent: False
Expand Down
2 changes: 1 addition & 1 deletion app_desc.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
spec_version: 2
app_version: "2.6.15"
app_version: "2.6.16"
app:
region: default
bk_app_code: bk_itsm
Expand Down
3 changes: 3 additions & 0 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [Version: 2.6.16] - 2024-05-08
【修复】修复版本日志初始化异常的问题

## [Version: 2.6.15] - 2024-04-22
【修复】修复字段联动条件判断不正确的问题

Expand Down
3 changes: 3 additions & 0 deletions docs/RELEASE_EN.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [Version: 2.6.16] - 2024-05-08
[Fixed] Fix the issue with the initialization exception in the version log.

## [Version: 2.6.15] - 2024-04-22
[Fixed] Fixed the issue where the field linkage condition judgment was incorrect.

Expand Down
2 changes: 1 addition & 1 deletion itsm/iadmin/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def init_version_log_info(cls, lang="zh-cn"):
ver_logs = content.strip().split("##")[1:]

# 用于解析markdown的工具
mk = mistune.Markdown()
mk = mistune.create_markdown()

# 遍历从文件中读取的日志信息并存入数据库
for outer_index, item in enumerate(ver_logs):
Expand Down

0 comments on commit 35153dd

Please sign in to comment.