@choiceform/os-client-core 3.4.33 → 3.4.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +14 -1
- package/dist/core.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +28 -2
- package/package.json +2 -2
package/changelog.md
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
最新的格式规范,具体规则参照[os-service-umbrella 的变更日志](https://github.com/choice-form/os-service-umbrella/blob/develop/CHANGELOG.md)。
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
每次发布新版本时,需要更改 package.json 的版本号,同时需要将 changelog 中的[Unreleased]改为版本号和发布日期,并且会更改代码包中的版本名和发布日期,操作比较繁琐,所以写了个脚本来自动更改,运行`yarn release [version] [commit]`就会自动做这些更改(不填入版本号则自动递增,填入版本号时版本号不能变低,否则会报错),输入 commit 参数则会自动 git commit 版本更新的更改。
|
|
6
|
+
|
|
7
|
+
> 更改代码包中的版本名是为了在答题端调试时在控制台中打印`cfState.core`能快速看到当前使用的核心包的版本号,便于定位问题。
|
|
6
8
|
|
|
7
9
|
# changelog
|
|
8
10
|
|
|
@@ -16,6 +18,17 @@
|
|
|
16
18
|
|
|
17
19
|
### Removed
|
|
18
20
|
|
|
21
|
+
## 3.4.34 - 2022-1-24
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
|
|
25
|
+
- 自定义的 url 参数支持
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- utils 暴露获取单个答案的方法
|
|
30
|
+
- 验证题目时尝试验证所有的选项并标记错误
|
|
31
|
+
|
|
19
32
|
## 3.4.33 - 2022-1-18
|
|
20
33
|
|
|
21
34
|
### Changed
|