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: v5.2.3 #6395

Merged
merged 2 commits into from
Aug 12, 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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [5.2.3](https://github.com/antvis/g2/compare/5.2.2...5.2.3) (2024-08-12)


### Bug Fixes

* **tooltip:** replaceChildren compatible with lower versions ([#321](https://github.com/antvis/component/pull/321))


### Features

* export registerSymbol ([#6381](https://github.com/antvis/g2/issues/6381)) ([38b6711](https://github.com/antvis/g2/commit/38b6711619ef741be2604b41f0526867d38cb80d))



## [5.2.2](https://github.com/antvis/g2/compare/5.2.1...5.2.2) (2024-07-25)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img src="https://gw.alipayobjects.com/zos/antfincdn/R8sN%24GNdh6/language.svg" width="18"> English | [简体中文](./README.zh-CN.md)

<h1 align="center">
<b>G2 5.0</b>
<b>G2</b>
</h1>

<div align="center">
Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img src="https://gw.alipayobjects.com/zos/antfincdn/R8sN%24GNdh6/language.svg" width="18"> [English](./README.md) | 简体中文

<h1 align="center">
<b>G2 5.0</b>
<b>G2</b>
</h1>

<div align="center">
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Installing third-party modules by tnpm or cnpm will name modules with underscore as prefix.
// In this case _{module} is also necessary.
const esm = ['internmap', 'd3-*', 'lodash-es']
const esm = ['internmap', 'd3-*', 'lodash-es', 'chroma-js']
.map((d) => `_${d}|${d}`)
.join('|');

Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g2",
"version": "5.2.2",
"version": "5.2.3",
"description": "the Grammar of Graphics in Javascript",
"license": "MIT",
"main": "lib/index.js",
Expand Down Expand Up @@ -65,7 +65,6 @@
"@antv/g": "^6.0.0",
"@antv/g-canvas": "^2.0.0",
"@antv/g-plugin-dragndrop": "^2.0.0",
"@antv/path-util": "^3.0.1",
"@antv/scale": "^0.4.12",
"@antv/util": "^3.3.5",
"d3-array": "^3.2.4",
Expand All @@ -77,7 +76,6 @@
"d3-path": "^3.1.0",
"d3-scale-chromatic": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-voronoi": "^1.1.4",
"flru": "^1.0.2",
"fmin": "^0.0.2",
"pdfast": "^0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.2",
"version": "5.2.3",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
Expand Down
Loading