Skip to content

Commit

Permalink
Merge pull request #3451 from VisActor/release/1.12.13
Browse files Browse the repository at this point in the history
[Auto release] release 1.12.13
  • Loading branch information
xile611 authored Nov 22, 2024
2 parents 08a71ce + c309baa commit c864e4f
Show file tree
Hide file tree
Showing 33 changed files with 894 additions and 656 deletions.
246 changes: 123 additions & 123 deletions common/config/rush/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"definitionName":"lockStepVersion","policyName":"vchartMain","version":"1.12.12","mainProject":"@visactor/vchart","nextBump":"patch"}]
[{"definitionName":"lockStepVersion","policyName":"vchartMain","version":"1.12.13","mainProject":"@visactor/vchart","nextBump":"patch"}]
20 changes: 20 additions & 0 deletions docs/assets/changelog/en/release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# v1.12.12

2024-11-18


**🐛 Bug fix**

- **@visactor/vchart**: fix: fix the issue where modifying area.visible through updateSpec does not take effect, related [#3393](https://github.com/VisActor/VChart/issues/3393)
- **@visactor/vchart**: fix incorrect rendering when changing `direction` via updateSpec in area chart, related [#3406](https://github.com/VisActor/VChart/issues/3406)
- **@visactor/vchart**: fix zIndex of background image, fix [#3403](https://github.com/VisActor/VChart/issues/3403)
- **@visactor/vchart**: fix error of tooltip when chart is released, fix [#3428](https://github.com/VisActor/VChart/issues/3428)

**⚡ Performance optimization**

- **@visactor/vchart**: optimize the effect of break data



[more detail about v1.12.12](https://github.com/VisActor/VChart/releases/tag/v1.12.12)

# v1.12.11

2024-11-13
Expand Down
17 changes: 17 additions & 0 deletions docs/assets/changelog/zh/release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# v1.12.12

2024-11-18

**🐛 功能修复**

- **@visactor/vchart**: 修复通过 `updateSpec` 修改 `area.visible` 不生效的问题,相关 [#3393](https://github.com/VisActor/VChart/issues/3393)
- **@visactor/vchart**: 修复在面积图中通过 `updateSpec` 更改 `direction` 时渲染不正确的问题,相关 [#3406](https://github.com/VisActor/VChart/issues/3406)
- **@visactor/vchart**: 修复背景图 `zIndex` 问题,修复 [#3403](https://github.com/VisActor/VChart/issues/3403)
- **@visactor/vchart**: 修复图表释放时 `tooltip` 错误,修复 [#3428](https://github.com/VisActor/VChart/issues/3428)

**⚡ 性能优化**

- **@visactor/vchart**: 优化轴截断效果

[更多详情请查看 v1.12.12](https://github.com/VisActor/VChart/releases/tag/v1.12.12)

# v1.12.11

2024-11-13
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,4 +277,6 @@ For General charts, the default registered components are as follows:

When using semantic tags, if you need components that are not loaded by default, you only need to register the missing components.

[Note]: If there is an error similar to "No matching export in..." when using Lynx, please upgrade the version of Lynx or configure resolve.enable INodeCache to false

For reference on on-demand loading of VChart, see [related documentation](/vchart/guide/tutorial_docs/Load_on_Demand).
Original file line number Diff line number Diff line change
Expand Up @@ -277,4 +277,6 @@ lynx-vchart 本身代码都支持按需加载,当需要 VChart 按需加载的

使用语义化标签的时候,如果用到其他没有默认加载的组件,只需要注册未加载的组件即可;

【注意】:如果使用lynx出现报错类似“No matching export in ...”,请升级lynx的版本,或者配置resolve.enableINodeCache为false

VChart 按需引用参考[相关文档](/vchart/guide/tutorial_docs/Load_on_Demand)
12 changes: 6 additions & 6 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
},
"dependencies": {
"@arco-design/web-react": "2.46.1",
"@visactor/openinula-vchart": "workspace:1.12.12",
"@visactor/react-vchart": "workspace:1.12.12",
"@visactor/vchart": "workspace:1.12.12",
"@visactor/openinula-vchart": "workspace:1.12.13",
"@visactor/react-vchart": "workspace:1.12.13",
"@visactor/vchart": "workspace:1.12.13",
"@visactor/vchart-theme": "~1.6.6",
"@visactor/vmind": "1.2.4-alpha.5",
"@visactor/vutils": "~0.18.18",
"@visactor/vrender": "0.20.15",
"@visactor/vrender-kits": "0.20.15",
"@visactor/vgrammar": "0.14.15",
"@visactor/vrender": "0.20.16",
"@visactor/vrender-kits": "0.20.16",
"@visactor/vgrammar": "0.14.16",
"markdown-it": "^13.0.0",
"highlight.js": "^11.8.0",
"axios": "^1.4.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/block-vchart/block/vchart/index.js

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions packages/harmony_vchart/library/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# v1.12.12

2024-11-18


**🐛 Bug fix**

- **@visactor/vchart**: fix: fix the issue where modifying area.visible through updateSpec does not take effect, related [#3393](https://github.com/VisActor/VChart/issues/3393)
- **@visactor/vchart**: fix incorrect rendering when changing `direction` via updateSpec in area chart, related [#3406](https://github.com/VisActor/VChart/issues/3406)
- **@visactor/vchart**: fix zIndex of background image, fix [#3403](https://github.com/VisActor/VChart/issues/3403)
- **@visactor/vchart**: fix error of tooltip when chart is released, fix [#3428](https://github.com/VisActor/VChart/issues/3428)

**⚡ Performance optimization**

- **@visactor/vchart**: optimize the effect of break data



[more detail about v1.12.12](https://github.com/VisActor/VChart/releases/tag/v1.12.12)

# v1.12.11

2024-11-13
Expand Down
2 changes: 1 addition & 1 deletion packages/harmony_vchart/library/oh-package.json5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
name: '@visactor/harmony-vchart',
version: '1.12.12',
version: '1.12.13',
description: '@visactor/vchart 针对 harmonyOS 打造的图表库,拥有非常酷炫的动画能力,近20种图表类型,以及原生的渲染性能',
main: 'Index.ets',
author: {
Expand Down
Loading

0 comments on commit c864e4f

Please sign in to comment.