add release note

This commit is contained in:
金戟
2021-05-22 01:24:40 +08:00
parent fcbdb7275b
commit ef3891bd57
4 changed files with 11 additions and 3 deletions

View File

@@ -20,9 +20,7 @@
`TestableMock`正在持续迭代演进,以下版本计划可能在开发过程中发生调整
- `0.6` 当前版本,正在开发中的功能包括:
- 支持全局参数配置Mock容器映射关系 [#105](https://github.com/alibaba/testable-mock/issues/105)
- 支持Mock Lambada语句中的方法引用 [#36](https://github.com/alibaba/testable-mock/issues/36)
- 完善Mock功能的防代码重构机制 [#5](https://github.com/alibaba/testable-mock/issues/5)
- 其他进行中的工作内容参考[Issue](https://github.com/alibaba/testable-mock/issues)清单
- `0.7` 主要计划包括:
- 增加DAO层逻辑的单元测试辅助 [介绍](https://alibaba.github.io/testable-mock/#/zh-cn/doc/verify-sql)

View File

@@ -12,7 +12,7 @@ Usage Document: https://alibaba.github.io/testable-mock/#/en-us/
`TestableMock` is still under heavy development, the following version plans may be adjusted during the iteration
- `v0.6` it's the current version, refer to the [issue](https://github.com/alibaba/testable-mock/issues) list for the work in progress
- `v0.7` better anti-refactor support of mocking, allow quick mock all method in specified class
- `v0.7` better anti-refactoring support of mocking, allow quick mock all method in specified class
- `v1.0` all functions are stable, a brand-new start
## Directory Structure

View File

@@ -1,5 +1,10 @@
# Release Note
## 0.6.6
- support global package path mapping for easier mocking code of 3rd packages
- complete mock target checking, improve resistance to code refactoring
- fix a log disorder issue of mock class handler
## 0.6.5
- fix an issue cause `OmniConstructor` fail to handle classes like Date and BigDecimal
- fix an issue of `PrivateAccessor` fail to invoke method with single array parameter

View File

@@ -1,5 +1,10 @@
# Release Note
## 0.6.6
- 支持全局参数配置Mock容器的包路径映射便于Mock三方包内的代码issue-105
- 实现Mock功能的防代码重构机制issue-5
- 解决Mock类的调试日志内容有时会错位的问题
## 0.6.5
- 修复`OmniConstructor`对某些系统类型的兼容问题issue-145
- 修复`PrivateAccessor`无法调用仅有数组类型参数方法的问题issue-152