Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: v4.2.11 #6112

Merged
merged 2 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 22 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,29 @@
#### 4.2.11 (2024-03-06)

##### Chores

- v4.2.10 ([#4776](https://github.com/antvis/g2/pull/4776)) ([dcd27ec2](https://github.com/antvis/g2/commit/dcd27ec25d22e9efe0afc8b7ae05bfb704cd2c54))

##### Documentation Changes

- fix chart.zh.md ([#5726](https://github.com/antvis/g2/pull/5726)) ([9f8db503](https://github.com/antvis/g2/commit/9f8db5030860513e58c64723f587122f7c4404fb))

##### Bug Fixes

- **label:** 图表开启 label 配置,多次 render 后卸载图表导致报错([#6104](https://github.com/antvis/g2/pull/6104)) ([#6107](https://github.com/antvis/g2/pull/6107)) ([a8eabbcd](https://github.com/antvis/g2/commit/a8eabbcd8df26cace86090c94379373b98f07c04))
- **animate:**
- 修复饼图动画无角度变化时其余属性未更新问题 ([#5892](https://github.com/antvis/g2/pull/5892)) ([f6ce41e9](https://github.com/antvis/g2/commit/f6ce41e90247010ff4ccbd40bbb4bc4d17d8977f))
- 部分动画覆盖 callback 配置导致外部的 callback 配置失效 ([#4678](https://github.com/antvis/g2/pull/4678)) ([9d1a25f1](https://github.com/antvis/g2/commit/9d1a25f15ba2cca594ee57d817a8f05ce5a80e60))
- **interval:** 设置 backgroundShape capture 为 true, 避免交互时被捕捉(如 element-selected) ([#4714](https://github.com/antvis/g2/pull/4714)) ([c717014d](https://github.com/antvis/g2/commit/c717014dfa8220635ded10c966f5bd577212ce96))
- 修复 sibling-x-filter,sibling-y-filter 过滤全部数据的问题 ([#4617](https://github.com/antvis/g2/pull/4617)) ([bc57583f](https://github.com/antvis/g2/commit/bc57583f8c2ac9e36d2fb0c8e444a192f8ce3267))

#### 4.2.10 (2023-03-16)

##### Bug Fixes

* **interval:** 设置backgroundShape capture 为 true, 避免交互时被捕捉(如 element-selected) ([#4714](https://github.com/antvis/g2/pull/4714)) ([c717014d](https://github.com/antvis/g2/commit/c717014dfa8220635ded10c966f5bd577212ce96))
* **animate:** 部分动画覆盖 callback 配置导致外部的 callback 配置失效 ([#4678](https://github.com/antvis/g2/pull/4678)) ([9d1a25f1](https://github.com/antvis/g2/commit/9d1a25f15ba2cca594ee57d817a8f05ce5a80e60))
* 修复 sibling-x-filter,sibling-y-filter 过滤全部数据的问题 ([#4617](https://github.com/antvis/g2/pull/4617)) ([bc57583f](https://github.com/antvis/g2/commit/bc57583f8c2ac9e36d2fb0c8e444a192f8ce3267))
- **interval:** 设置 backgroundShape capture 为 true, 避免交互时被捕捉(如 element-selected) ([#4714](https://github.com/antvis/g2/pull/4714)) ([c717014d](https://github.com/antvis/g2/commit/c717014dfa8220635ded10c966f5bd577212ce96))
- **animate:** 部分动画覆盖 callback 配置导致外部的 callback 配置失效 ([#4678](https://github.com/antvis/g2/pull/4678)) ([9d1a25f1](https://github.com/antvis/g2/commit/9d1a25f15ba2cca594ee57d817a8f05ce5a80e60))
- 修复 sibling-x-filter,sibling-y-filter 过滤全部数据的问题 ([#4617](https://github.com/antvis/g2/pull/4617)) ([bc57583f](https://github.com/antvis/g2/commit/bc57583f8c2ac9e36d2fb0c8e444a192f8ce3267))

#### 4.2.9 (2023-02-02)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g2",
"version": "4.2.10",
"version": "4.2.11",
"description": "the Grammar of Graphics in Javascript",
"main": "lib/index.js",
"module": "esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* G2 的一个壳子,不包含 Geometry,由开发者自己定义和引入 */

export const VERSION = '4.2.10';
export const VERSION = '4.2.11';

// 核心基类导出
export { Chart, View, Event } from './chart'; // Chart, View 类
Expand Down
Loading