-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/convert response data format (#739)
* Add 'tojson' to flow's response data to adapt flow parameter value's multiplexing * 更改目标字符串的匹配方式,改用re.sub实现 * 增加对配置config.value.tojsonKey的遍历,优化正则匹配规则 * 简化匹配规则 * 功能代码调整;增加单测用例;修改版本号;调整日志输出 * 修改注释,去除单测用例中的真实数据 * 修改注释 * 修改注释 * 解决版本冲突 * 修改单测用例 * flow详情页展示增加responseData的diff入口 * resolve conflict * The DataManager supports displaying the template data and rendered data of flow's response data in diff form * correct pylint * Correct pylint * Modify the code according to the review comments * Modify the code according to the review comments * Modify code according to the pylint * Modify the code according the review * Modify front-end display error
- Loading branch information
Showing
8 changed files
with
136 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
IVERSION = (2, 11, 3) | ||
IVERSION = (2, 12, 0) | ||
VERSION = ".".join(str(i) for i in IVERSION) | ||
LYREBIRD = "Lyrebird " + VERSION |