From d2060f1e9c306a12e2bccdcc8d3c95948523ca80 Mon Sep 17 00:00:00 2001 From: xile611 Date: Thu, 5 Sep 2024 03:55:34 +0000 Subject: [PATCH 1/7] docs: generate changelog of release v0.14.3 --- docs/site/assets/changelog/en/release.md | 13 +++++++++++++ docs/site/assets/changelog/zh/release.md | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/docs/site/assets/changelog/en/release.md b/docs/site/assets/changelog/en/release.md index 12f55d00..97796f8e 100644 --- a/docs/site/assets/changelog/en/release.md +++ b/docs/site/assets/changelog/en/release.md @@ -1,3 +1,16 @@ +# v0.14.3 + +2024-09-05 + + +**What's Changed** + + + +**Full Changelog**: https://github.com/VisActor/VGrammar/compare/v0.14.2...v0.14.3 + +[more detail about v0.14.3](https://github.com/VisActor/VGrammar/releases/tag/v0.14.3) + # v0.12.9 2024-04-23 diff --git a/docs/site/assets/changelog/zh/release.md b/docs/site/assets/changelog/zh/release.md index 34687879..2e710b8b 100644 --- a/docs/site/assets/changelog/zh/release.md +++ b/docs/site/assets/changelog/zh/release.md @@ -1,3 +1,16 @@ +# v0.14.3 + +2024-09-05 + + +**What's Changed** + + + +**Full Changelog**: https://github.com/VisActor/VGrammar/compare/v0.14.2...v0.14.3 + +[更多详情请查看 v0.14.3](https://github.com/VisActor/VGrammar/releases/tag/v0.14.3) + # v0.12.9 2024-04-23 From 6dc9116b5dcb5cbac547ed63ef69cc3d9ca7470b Mon Sep 17 00:00:00 2001 From: Rui-Sun Date: Thu, 5 Sep 2024 16:25:54 +0800 Subject: [PATCH 2/7] chore: enlarge bugserver trigger intercal --- packages/vgrammar-full/scripts/trigger-test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vgrammar-full/scripts/trigger-test.ts b/packages/vgrammar-full/scripts/trigger-test.ts index e99a9aff..4f5149a7 100644 --- a/packages/vgrammar-full/scripts/trigger-test.ts +++ b/packages/vgrammar-full/scripts/trigger-test.ts @@ -9,7 +9,7 @@ const BUG_SERVER_HOST = 'https://bug-server.zijieapi.com'; const PRODUCT = 'VisActor/VGrammar'; const CHECK_SCM_BUILD_INTERVAL_MS = 10 * 1000; const CHECK_SCM_BUILD_MAX_COUNT = 30; -const CHECK_PHOTO_TEST_INTERVAL_MS = 10 * 1000; +const CHECK_PHOTO_TEST_INTERVAL_MS = 30 * 1000; const CHECK_PHOTO_TEST_MAX_COUNT = 100; const API_END_POINT = '/api/ci/trigger'; const API_URL = `${BUG_SERVER_HOST}${API_END_POINT}`; From 7b598d9b5ce21e4eb23538375e8c152479886bd1 Mon Sep 17 00:00:00 2001 From: xile611 Date: Thu, 5 Sep 2024 08:27:12 +0000 Subject: [PATCH 3/7] docs: generate changelog of release v0.14.4 --- docs/site/assets/changelog/en/release.md | 16 ++++++++++++++++ docs/site/assets/changelog/zh/release.md | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/docs/site/assets/changelog/en/release.md b/docs/site/assets/changelog/en/release.md index 97796f8e..97b4fb9e 100644 --- a/docs/site/assets/changelog/en/release.md +++ b/docs/site/assets/changelog/en/release.md @@ -1,3 +1,19 @@ +# v0.14.4 + +2024-09-05 + + +**What's Changed** + +* feat: upgrade vrender version by @neuqzxy in https://github.com/VisActor/VGrammar/pull/533 +* [Auto Sync] Sync the code from branch main to branch develop after release 0.14.3 by @github-actions in https://github.com/VisActor/VGrammar/pull/535 +* [Auto release] release 0.14.4 by @github-actions in https://github.com/VisActor/VGrammar/pull/537 + + +**Full Changelog**: https://github.com/VisActor/VGrammar/compare/v0.14.3...v0.14.4 + +[more detail about v0.14.4](https://github.com/VisActor/VGrammar/releases/tag/v0.14.4) + # v0.14.3 2024-09-05 diff --git a/docs/site/assets/changelog/zh/release.md b/docs/site/assets/changelog/zh/release.md index 2e710b8b..f23fa5b7 100644 --- a/docs/site/assets/changelog/zh/release.md +++ b/docs/site/assets/changelog/zh/release.md @@ -1,3 +1,19 @@ +# v0.14.4 + +2024-09-05 + + +**What's Changed** + +* feat: upgrade vrender version by @neuqzxy in https://github.com/VisActor/VGrammar/pull/533 +* [Auto Sync] Sync the code from branch main to branch develop after release 0.14.3 by @github-actions in https://github.com/VisActor/VGrammar/pull/535 +* [Auto release] release 0.14.4 by @github-actions in https://github.com/VisActor/VGrammar/pull/537 + + +**Full Changelog**: https://github.com/VisActor/VGrammar/compare/v0.14.3...v0.14.4 + +[更多详情请查看 v0.14.4](https://github.com/VisActor/VGrammar/releases/tag/v0.14.4) + # v0.14.3 2024-09-05 From b1f24320ffad04a8374f83bf3a609d40138f3441 Mon Sep 17 00:00:00 2001 From: xile611 Date: Thu, 5 Sep 2024 16:21:32 +0800 Subject: [PATCH 4/7] fix: fix error of vchart when no `animate` --- packages/vgrammar-core/src/view/View.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vgrammar-core/src/view/View.ts b/packages/vgrammar-core/src/view/View.ts index 34e0aff1..2dd6e4ea 100644 --- a/packages/vgrammar-core/src/view/View.ts +++ b/packages/vgrammar-core/src/view/View.ts @@ -977,7 +977,7 @@ export default class View extends EventEmitter implements IView { }; markNodes.forEach(node => { const mark = node.mark; - if (mark.animate && mark.animate.getAnimatorCount() === 0) { + if (!mark.animate || mark.animate.getAnimatorCount() === 0) { releaseUp(node); } else { mark.addEventListener('animationEnd', () => { From 160b60f537bf0c849e290e832cfedea7e660148d Mon Sep 17 00:00:00 2001 From: xile611 Date: Thu, 5 Sep 2024 16:47:47 +0800 Subject: [PATCH 5/7] docs: update changlog of rush --- .../vgrammar-core/develop_2024-09-05-08-47.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/changes/@visactor/vgrammar-core/develop_2024-09-05-08-47.json diff --git a/common/changes/@visactor/vgrammar-core/develop_2024-09-05-08-47.json b/common/changes/@visactor/vgrammar-core/develop_2024-09-05-08-47.json new file mode 100644 index 00000000..78d53d0f --- /dev/null +++ b/common/changes/@visactor/vgrammar-core/develop_2024-09-05-08-47.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "fix: fix error of vchart when no `animate`\n\n", + "type": "none", + "packageName": "@visactor/vgrammar-core" + } + ], + "packageName": "@visactor/vgrammar-core", + "email": "dingling112@gmail.com" +} \ No newline at end of file From 2f148b2e44674bb5fc40e7416fdb811314cafa69 Mon Sep 17 00:00:00 2001 From: xile611 Date: Sat, 7 Sep 2024 19:07:24 +0800 Subject: [PATCH 6/7] fix: upgrade vrender to 0.20.3 --- common/config/rush/pnpm-lock.yaml | 118 +++++++++--------- docs/dev-demos/package.json | 6 +- docs/site/package.json | 6 +- packages/vgrammar-core/package.json | 6 +- packages/vgrammar-hierarchy/package.json | 4 +- packages/vgrammar-plot/package.json | 6 +- packages/vgrammar-sankey/package.json | 4 +- packages/vgrammar-util/package.json | 2 +- packages/vgrammar-venn/package.json | 4 +- .../vgrammar-wordcloud-shape/package.json | 4 +- packages/vgrammar-wordcloud/package.json | 4 +- 11 files changed, 82 insertions(+), 82 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 4d10ee32..a35c673e 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -19,9 +19,9 @@ importers: '@visactor/vgrammar-util': workspace:0.14.4 '@visactor/vgrammar-wordcloud': workspace:0.14.4 '@visactor/vgrammar-wordcloud-shape': workspace:0.14.4 - '@visactor/vrender': 0.20.2 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender': 0.20.3 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 '@vitejs/plugin-react': 3.1.0 d3-scale-chromatic: ^3.0.0 @@ -41,9 +41,9 @@ importers: '@visactor/vgrammar-util': link:../../packages/vgrammar-util '@visactor/vgrammar-wordcloud': link:../../packages/vgrammar-wordcloud '@visactor/vgrammar-wordcloud-shape': link:../../packages/vgrammar-wordcloud-shape - '@visactor/vrender': 0.20.2 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender': 0.20.3 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': 0.18.15 '@vitejs/plugin-react': 3.1.0_vite@3.2.6 d3-scale-chromatic: 3.1.0 @@ -71,9 +71,9 @@ importers: '@visactor/vgrammar-venn': workspace:0.14.4 '@visactor/vgrammar-wordcloud': workspace:0.14.4 '@visactor/vgrammar-wordcloud-shape': workspace:0.14.4 - '@visactor/vrender': 0.20.2 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender': 0.20.3 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 '@vitejs/plugin-react': 3.1.0 axios: ^1.4.0 @@ -109,9 +109,9 @@ importers: '@visactor/vgrammar-venn': link:../../packages/vgrammar-venn '@visactor/vgrammar-wordcloud': link:../../packages/vgrammar-wordcloud '@visactor/vgrammar-wordcloud-shape': link:../../packages/vgrammar-wordcloud-shape - '@visactor/vrender': 0.20.2 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender': 0.20.3 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': 0.18.15 axios: 1.6.8 highlight.js: 11.9.0 @@ -231,9 +231,9 @@ importers: '@visactor/vdataset': ~0.18.15 '@visactor/vgrammar-coordinate': workspace:0.14.4 '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vrender-components': 0.20.2 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-components': 0.20.3 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vscale': ~0.18.15 '@visactor/vutils': ~0.18.15 eslint: ~8.18.0 @@ -246,9 +246,9 @@ importers: '@visactor/vdataset': 0.18.15 '@visactor/vgrammar-coordinate': link:../vgrammar-coordinate '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-components': 0.20.2 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-components': 0.20.3 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vscale': 0.18.15 '@visactor/vutils': 0.18.15 devDependencies: @@ -340,8 +340,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.14.4 '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 eslint: ~8.18.0 jest: ~29.5.0 @@ -352,8 +352,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -385,9 +385,9 @@ importers: '@visactor/vgrammar-coordinate': workspace:0.14.4 '@visactor/vgrammar-core': workspace:0.14.4 '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vrender-components': 0.20.2 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-components': 0.20.3 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vscale': ~0.18.15 '@visactor/vutils': ~0.18.15 d3-array: 1.x @@ -401,9 +401,9 @@ importers: '@visactor/vgrammar-coordinate': link:../vgrammar-coordinate '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-components': 0.20.2 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-components': 0.20.3 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vscale': 0.18.15 '@visactor/vutils': 0.18.15 devDependencies: @@ -481,8 +481,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.14.4 '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 eslint: ~8.18.0 jest: ~29.5.0 @@ -493,8 +493,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -522,7 +522,7 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vrender-core': 0.20.2 + '@visactor/vrender-core': 0.20.3 '@visactor/vutils': ~0.18.15 eslint: ~8.18.0 jest: ~29.5.0 @@ -531,7 +531,7 @@ importers: typescript: 4.9.5 vite: 3.2.6 dependencies: - '@visactor/vrender-core': 0.20.2 + '@visactor/vrender-core': 0.20.3 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -561,8 +561,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.14.4 '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 eslint: ~8.18.0 jest: ~29.5.0 @@ -573,8 +573,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -604,8 +604,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.14.4 '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 eslint: ~8.18.0 jest: ~29.5.0 @@ -616,8 +616,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -647,8 +647,8 @@ importers: '@types/node': '*' '@visactor/vgrammar-core': workspace:0.14.4 '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vscale': ~0.18.15 '@visactor/vutils': ~0.18.15 eslint: ~8.18.0 @@ -660,8 +660,8 @@ importers: dependencies: '@visactor/vgrammar-core': link:../vgrammar-core '@visactor/vgrammar-util': link:../vgrammar-util - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vscale': 0.18.15 '@visactor/vutils': 0.18.15 devDependencies: @@ -3448,34 +3448,34 @@ packages: topojson-client: 3.1.0 dev: false - /@visactor/vrender-components/0.20.2: - resolution: {integrity: sha512-V63YeWJnP/8IXaU7MSaw/X0lJr3CD3xwXEq7RHZPRACryfhtC+XpZRmpMMRtALkOIHq/aBWDDYRAkrKZU4YLUQ==} + /@visactor/vrender-components/0.20.3: + resolution: {integrity: sha512-Lvn2wC9A9QugForwXL8qjqNRTqg8x+gH8Smc4n/g+GJ3GoWEyRfdFofzVhF4lbY0RJBrs+DYmrFrBBvpxS/wkg==} dependencies: - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 '@visactor/vscale': 0.18.15 '@visactor/vutils': 0.18.15 dev: false - /@visactor/vrender-core/0.20.2: - resolution: {integrity: sha512-by8VWBFZhmBCNcKD7R8toCx1ect0GlL8IdPQLpng12+yED1Mc4VQwIG8pNkLEgbgepOxn3OUqnpAy+xeKh0Uwg==} + /@visactor/vrender-core/0.20.3: + resolution: {integrity: sha512-R59SlmUZax18tme2A2UZlc70IzX0/vsmNTjkB1e5ugMRHtHon5zbu5Cq87PZCXEm18nl+CKIWUMemyeS2CT7ew==} dependencies: '@visactor/vutils': 0.18.15 color-convert: 2.0.1 - /@visactor/vrender-kits/0.20.2: - resolution: {integrity: sha512-TVzkisDEJr1nYXFBVUowJ6gYi8BUPU2+5KlZ/+r3dxiG5KfaONRxcztzeqPW5lhlNL7DhV2tPWcBaDlMKb4hgw==} + /@visactor/vrender-kits/0.20.3: + resolution: {integrity: sha512-rjdWgDJL1Ulfmnddgjsd23+rp+bjW++7dipmpGPt/zasoaaM72HTaRUznPD9pmBVxnCFCAzCXcRWKxkAxrx6Og==} dependencies: '@resvg/resvg-js': 2.4.1 - '@visactor/vrender-core': 0.20.2 + '@visactor/vrender-core': 0.20.3 '@visactor/vutils': 0.18.15 roughjs: 4.5.2 - /@visactor/vrender/0.20.2: - resolution: {integrity: sha512-Q1YzeVg5K91q+JqFganc0ch3IWbDvkNsP6JbG7pGjbDwAneZBBcBCitNJnNh3S8dGJG3FsGygq8dveTAB7NiTQ==} + /@visactor/vrender/0.20.3: + resolution: {integrity: sha512-1vBq7diS4BANvFpcBEpHH6t9gH7zxPLHlwcWFDEpmpSftBvXzbfVJmX9eO/nNzSO8ClWX9KHXuYXX6D+7GZMHQ==} dependencies: - '@visactor/vrender-core': 0.20.2 - '@visactor/vrender-kits': 0.20.2 + '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-kits': 0.20.3 /@visactor/vscale/0.18.15: resolution: {integrity: sha512-09dDWc6muJbOMxzp4odCsyLjqAF6u3BOx9kAJJ0tEpKE1AuHL4BTejNe697mJAnXqAo2ynAA+dn+cgWYiW1WQg==} diff --git a/docs/dev-demos/package.json b/docs/dev-demos/package.json index 3f4a48c7..dc2e01a5 100644 --- a/docs/dev-demos/package.json +++ b/docs/dev-demos/package.json @@ -20,9 +20,9 @@ "@visactor/vgrammar-wordcloud": "workspace:0.14.4", "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.4", "@visactor/vgrammar-plot": "workspace:0.14.4", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2", - "@visactor/vrender": "0.20.2", + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3", + "@visactor/vrender": "0.20.3", "d3-scale-chromatic": "^3.0.0", "lodash": "4.17.21", "typescript": "4.9.5", diff --git a/docs/site/package.json b/docs/site/package.json index 7557cac1..a74839db 100644 --- a/docs/site/package.json +++ b/docs/site/package.json @@ -25,9 +25,9 @@ "@visactor/vgrammar-util": "workspace:0.14.4", "@visactor/vgrammar-coordinate": "workspace:0.14.4", "@visactor/vgrammar-venn": "workspace:0.14.4", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2", - "@visactor/vrender": "0.20.2", + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3", + "@visactor/vrender": "0.20.3", "markdown-it": "^13.0.0", "highlight.js": "^11.8.0", "axios": "^1.4.0", diff --git a/packages/vgrammar-core/package.json b/packages/vgrammar-core/package.json index 706caeb0..0c75ef8b 100644 --- a/packages/vgrammar-core/package.json +++ b/packages/vgrammar-core/package.json @@ -40,9 +40,9 @@ "@visactor/vgrammar-coordinate": "workspace:0.14.4", "@visactor/vgrammar-util": "workspace:0.14.4", "@visactor/vscale": "~0.18.15", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2", - "@visactor/vrender-components": "0.20.2" + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3", + "@visactor/vrender-components": "0.20.3" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-hierarchy/package.json b/packages/vgrammar-hierarchy/package.json index e8fe7bc2..708af3b6 100644 --- a/packages/vgrammar-hierarchy/package.json +++ b/packages/vgrammar-hierarchy/package.json @@ -41,8 +41,8 @@ "@visactor/vutils": "~0.18.15", "@visactor/vgrammar-core": "workspace:0.14.4", "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2" + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-plot/package.json b/packages/vgrammar-plot/package.json index d42c4680..788ceebf 100644 --- a/packages/vgrammar-plot/package.json +++ b/packages/vgrammar-plot/package.json @@ -39,9 +39,9 @@ "@visactor/vgrammar-util": "workspace:0.14.4", "@visactor/vgrammar-coordinate": "workspace:0.14.4", "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vrender-components": "0.20.2", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2" + "@visactor/vrender-components": "0.20.3", + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3" }, "devDependencies": { "d3-array": "1.x", diff --git a/packages/vgrammar-sankey/package.json b/packages/vgrammar-sankey/package.json index 3a092803..c846feab 100644 --- a/packages/vgrammar-sankey/package.json +++ b/packages/vgrammar-sankey/package.json @@ -39,8 +39,8 @@ "@visactor/vutils": "~0.18.15", "@visactor/vgrammar-core": "workspace:0.14.4", "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2" + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-util/package.json b/packages/vgrammar-util/package.json index d889628f..597d9c12 100644 --- a/packages/vgrammar-util/package.json +++ b/packages/vgrammar-util/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@visactor/vutils": "~0.18.15", - "@visactor/vrender-core": "0.20.2" + "@visactor/vrender-core": "0.20.3" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-venn/package.json b/packages/vgrammar-venn/package.json index c28dcd78..e65af13a 100644 --- a/packages/vgrammar-venn/package.json +++ b/packages/vgrammar-venn/package.json @@ -36,8 +36,8 @@ "dependencies": { "@visactor/vgrammar-core": "workspace:0.14.4", "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2", + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3", "@visactor/vutils": "~0.18.15" }, "devDependencies": { diff --git a/packages/vgrammar-wordcloud-shape/package.json b/packages/vgrammar-wordcloud-shape/package.json index 4289083e..4088933c 100644 --- a/packages/vgrammar-wordcloud-shape/package.json +++ b/packages/vgrammar-wordcloud-shape/package.json @@ -38,8 +38,8 @@ "@visactor/vscale": "~0.18.15", "@visactor/vgrammar-core": "workspace:0.14.4", "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2" + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-wordcloud/package.json b/packages/vgrammar-wordcloud/package.json index aaca2933..92488fff 100644 --- a/packages/vgrammar-wordcloud/package.json +++ b/packages/vgrammar-wordcloud/package.json @@ -37,8 +37,8 @@ "@visactor/vutils": "~0.18.15", "@visactor/vgrammar-core": "workspace:0.14.4", "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vrender-core": "0.20.2", - "@visactor/vrender-kits": "0.20.2" + "@visactor/vrender-core": "0.20.3", + "@visactor/vrender-kits": "0.20.3" }, "devDependencies": { "@internal/bundler": "workspace:*", From 1754ef53cd6a3195a367abbe4664814706c95c50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Sep 2024 11:17:02 +0000 Subject: [PATCH 7/7] build: release version 0.14.5 --- .../develop_2024-09-05-08-47.json | 11 --- common/config/rush/pnpm-lock.yaml | 96 +++++++++---------- common/config/rush/version-policies.json | 2 +- docs/dev-demos/package.json | 20 ++-- docs/site/package.json | 22 ++--- packages/vgrammar-coordinate/package.json | 4 +- packages/vgrammar-core/CHANGELOG.json | 12 +++ packages/vgrammar-core/CHANGELOG.md | 11 ++- packages/vgrammar-core/package.json | 6 +- packages/vgrammar-full/package.json | 18 ++-- packages/vgrammar-hierarchy/package.json | 6 +- packages/vgrammar-plot/package.json | 8 +- packages/vgrammar-projection/package.json | 6 +- packages/vgrammar-sankey/package.json | 6 +- packages/vgrammar-util/package.json | 2 +- packages/vgrammar-venn/package.json | 6 +- .../vgrammar-wordcloud-shape/package.json | 6 +- packages/vgrammar-wordcloud/package.json | 6 +- packages/vgrammar/package.json | 4 +- 19 files changed, 131 insertions(+), 121 deletions(-) delete mode 100644 common/changes/@visactor/vgrammar-core/develop_2024-09-05-08-47.json diff --git a/common/changes/@visactor/vgrammar-core/develop_2024-09-05-08-47.json b/common/changes/@visactor/vgrammar-core/develop_2024-09-05-08-47.json deleted file mode 100644 index 78d53d0f..00000000 --- a/common/changes/@visactor/vgrammar-core/develop_2024-09-05-08-47.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "fix: fix error of vchart when no `animate`\n\n", - "type": "none", - "packageName": "@visactor/vgrammar-core" - } - ], - "packageName": "@visactor/vgrammar-core", - "email": "dingling112@gmail.com" -} \ No newline at end of file diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index a35c673e..e61fafcd 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -9,16 +9,16 @@ importers: specifiers: '@internal/eslint-config': workspace:* '@internal/ts-config': workspace:* - '@visactor/vgrammar': workspace:0.14.4 - '@visactor/vgrammar-coordinate': workspace:0.14.4 - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-hierarchy': workspace:0.14.4 - '@visactor/vgrammar-plot': workspace:0.14.4 - '@visactor/vgrammar-projection': workspace:0.14.4 - '@visactor/vgrammar-sankey': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vgrammar-wordcloud': workspace:0.14.4 - '@visactor/vgrammar-wordcloud-shape': workspace:0.14.4 + '@visactor/vgrammar': workspace:0.14.5 + '@visactor/vgrammar-coordinate': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-hierarchy': workspace:0.14.5 + '@visactor/vgrammar-plot': workspace:0.14.5 + '@visactor/vgrammar-projection': workspace:0.14.5 + '@visactor/vgrammar-sankey': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-wordcloud': workspace:0.14.5 + '@visactor/vgrammar-wordcloud-shape': workspace:0.14.5 '@visactor/vrender': 0.20.3 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 @@ -60,17 +60,17 @@ importers: '@types/markdown-it': ^13.0.0 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - '@visactor/vgrammar': workspace:0.14.4 - '@visactor/vgrammar-coordinate': workspace:0.14.4 - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-hierarchy': workspace:0.14.4 - '@visactor/vgrammar-plot': workspace:0.14.4 - '@visactor/vgrammar-projection': workspace:0.14.4 - '@visactor/vgrammar-sankey': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 - '@visactor/vgrammar-venn': workspace:0.14.4 - '@visactor/vgrammar-wordcloud': workspace:0.14.4 - '@visactor/vgrammar-wordcloud-shape': workspace:0.14.4 + '@visactor/vgrammar': workspace:0.14.5 + '@visactor/vgrammar-coordinate': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-hierarchy': workspace:0.14.5 + '@visactor/vgrammar-plot': workspace:0.14.5 + '@visactor/vgrammar-projection': workspace:0.14.5 + '@visactor/vgrammar-sankey': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-venn': workspace:0.14.5 + '@visactor/vgrammar-wordcloud': workspace:0.14.5 + '@visactor/vgrammar-wordcloud-shape': workspace:0.14.5 '@visactor/vrender': 0.20.3 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 @@ -153,7 +153,7 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.4 + '@visactor/vgrammar-core': workspace:0.14.5 d3-array: 1.x eslint: ~8.18.0 jest: ~29.5.0 @@ -191,7 +191,7 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vutils': ~0.18.15 eslint: ~8.18.0 jest: ~29.5.0 @@ -229,8 +229,8 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@visactor/vdataset': ~0.18.15 - '@visactor/vgrammar-coordinate': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-coordinate': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vrender-components': 0.20.3 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 @@ -279,14 +279,14 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@types/node-fetch': 2.6.4 - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-hierarchy': workspace:0.14.4 - '@visactor/vgrammar-plot': workspace:0.14.4 - '@visactor/vgrammar-projection': workspace:0.14.4 - '@visactor/vgrammar-sankey': workspace:0.14.4 - '@visactor/vgrammar-venn': workspace:0.14.4 - '@visactor/vgrammar-wordcloud': workspace:0.14.4 - '@visactor/vgrammar-wordcloud-shape': workspace:0.14.4 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-hierarchy': workspace:0.14.5 + '@visactor/vgrammar-plot': workspace:0.14.5 + '@visactor/vgrammar-projection': workspace:0.14.5 + '@visactor/vgrammar-sankey': workspace:0.14.5 + '@visactor/vgrammar-venn': workspace:0.14.5 + '@visactor/vgrammar-wordcloud': workspace:0.14.5 + '@visactor/vgrammar-wordcloud-shape': workspace:0.14.5 d3-array: 1.x eslint: ~8.18.0 form-data: ~4.0.0 @@ -338,8 +338,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 @@ -382,9 +382,9 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-coordinate': workspace:0.14.4 - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-coordinate': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vrender-components': 0.20.3 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 @@ -435,8 +435,8 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vutils': ~0.18.15 d3-array: 1.x d3-geo: ^1.12.1 @@ -479,8 +479,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 @@ -559,8 +559,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 @@ -602,8 +602,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 '@visactor/vutils': ~0.18.15 @@ -645,8 +645,8 @@ importers: '@rushstack/eslint-patch': ~1.1.4 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.4 - '@visactor/vgrammar-util': workspace:0.14.4 + '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-util': workspace:0.14.5 '@visactor/vrender-core': 0.20.3 '@visactor/vrender-kits': 0.20.3 '@visactor/vscale': ~0.18.15 diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 588612f0..d994b4e8 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -1 +1 @@ -[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.14.4","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] +[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.14.5","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] diff --git a/docs/dev-demos/package.json b/docs/dev-demos/package.json index dc2e01a5..c7c0b299 100644 --- a/docs/dev-demos/package.json +++ b/docs/dev-demos/package.json @@ -12,14 +12,14 @@ "@internal/eslint-config": "workspace:*", "@internal/ts-config": "workspace:*", "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar": "workspace:0.14.4", - "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vgrammar-hierarchy": "workspace:0.14.4", - "@visactor/vgrammar-sankey": "workspace:0.14.4", - "@visactor/vgrammar-projection": "workspace:0.14.4", - "@visactor/vgrammar-wordcloud": "workspace:0.14.4", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.4", - "@visactor/vgrammar-plot": "workspace:0.14.4", + "@visactor/vgrammar": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-hierarchy": "workspace:0.14.5", + "@visactor/vgrammar-sankey": "workspace:0.14.5", + "@visactor/vgrammar-projection": "workspace:0.14.5", + "@visactor/vgrammar-wordcloud": "workspace:0.14.5", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.5", + "@visactor/vgrammar-plot": "workspace:0.14.5", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3", "@visactor/vrender": "0.20.3", @@ -27,8 +27,8 @@ "lodash": "4.17.21", "typescript": "4.9.5", "vite": "3.2.6", - "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vgrammar-coordinate": "workspace:0.14.4", + "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-coordinate": "workspace:0.14.5", "@vitejs/plugin-react": "3.1.0" } } diff --git a/docs/site/package.json b/docs/site/package.json index a74839db..102e534b 100644 --- a/docs/site/package.json +++ b/docs/site/package.json @@ -14,17 +14,17 @@ "dependencies": { "@arco-design/web-react": "2.46.1", "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar": "workspace:0.14.4", - "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vgrammar-hierarchy": "workspace:0.14.4", - "@visactor/vgrammar-sankey": "workspace:0.14.4", - "@visactor/vgrammar-projection": "workspace:0.14.4", - "@visactor/vgrammar-wordcloud": "workspace:0.14.4", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.4", - "@visactor/vgrammar-plot": "workspace:0.14.4", - "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vgrammar-coordinate": "workspace:0.14.4", - "@visactor/vgrammar-venn": "workspace:0.14.4", + "@visactor/vgrammar": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-hierarchy": "workspace:0.14.5", + "@visactor/vgrammar-sankey": "workspace:0.14.5", + "@visactor/vgrammar-projection": "workspace:0.14.5", + "@visactor/vgrammar-wordcloud": "workspace:0.14.5", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.5", + "@visactor/vgrammar-plot": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-coordinate": "workspace:0.14.5", + "@visactor/vgrammar-venn": "workspace:0.14.5", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3", "@visactor/vrender": "0.20.3", diff --git a/packages/vgrammar-coordinate/package.json b/packages/vgrammar-coordinate/package.json index 38a7b4b9..b6f670de 100644 --- a/packages/vgrammar-coordinate/package.json +++ b/packages/vgrammar-coordinate/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-coordinate", - "version": "0.14.4", + "version": "0.14.5", "description": "Coordinates for VGrammar", "keywords": [ "coordinate", @@ -35,7 +35,7 @@ }, "dependencies": { "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar-util": "workspace:0.14.4" + "@visactor/vgrammar-util": "workspace:0.14.5" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-core/CHANGELOG.json b/packages/vgrammar-core/CHANGELOG.json index 35813468..3e5fb577 100644 --- a/packages/vgrammar-core/CHANGELOG.json +++ b/packages/vgrammar-core/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@visactor/vgrammar-core", "entries": [ + { + "version": "0.14.5", + "tag": "@visactor/vgrammar-core_v0.14.5", + "date": "Sat, 07 Sep 2024 11:11:13 GMT", + "comments": { + "none": [ + { + "comment": "fix: fix error of vchart when no `animate`\n\n" + } + ] + } + }, { "version": "0.14.4", "tag": "@visactor/vgrammar-core_v0.14.4", diff --git a/packages/vgrammar-core/CHANGELOG.md b/packages/vgrammar-core/CHANGELOG.md index 727e41e0..36cfcf9d 100644 --- a/packages/vgrammar-core/CHANGELOG.md +++ b/packages/vgrammar-core/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log - @visactor/vgrammar-core -This log was last generated on Thu, 05 Sep 2024 04:10:51 GMT and should not be manually modified. +This log was last generated on Sat, 07 Sep 2024 11:11:13 GMT and should not be manually modified. + +## 0.14.5 +Sat, 07 Sep 2024 11:11:13 GMT + +### Updates + +- fix: fix error of vchart when no `animate` + + ## 0.14.4 Thu, 05 Sep 2024 04:10:51 GMT diff --git a/packages/vgrammar-core/package.json b/packages/vgrammar-core/package.json index 0c75ef8b..53563a0d 100644 --- a/packages/vgrammar-core/package.json +++ b/packages/vgrammar-core/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-core", - "version": "0.14.4", + "version": "0.14.5", "description": "VGrammar is a visual grammar library", "keywords": [ "grammar", @@ -37,8 +37,8 @@ "dependencies": { "@visactor/vutils": "~0.18.15", "@visactor/vdataset": "~0.18.15", - "@visactor/vgrammar-coordinate": "workspace:0.14.4", - "@visactor/vgrammar-util": "workspace:0.14.4", + "@visactor/vgrammar-coordinate": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.5", "@visactor/vscale": "~0.18.15", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3", diff --git a/packages/vgrammar-full/package.json b/packages/vgrammar-full/package.json index 06f92bbc..b96a16f6 100644 --- a/packages/vgrammar-full/package.json +++ b/packages/vgrammar-full/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-full", - "version": "0.14.4", + "version": "0.14.5", "description": "full packages of vgrammar.", "keywords": [ "visualization", @@ -33,14 +33,14 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vgrammar-hierarchy": "workspace:0.14.4", - "@visactor/vgrammar-plot": "workspace:0.14.4", - "@visactor/vgrammar-projection": "workspace:0.14.4", - "@visactor/vgrammar-sankey": "workspace:0.14.4", - "@visactor/vgrammar-wordcloud": "workspace:0.14.4", - "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.4", - "@visactor/vgrammar-venn": "workspace:0.14.4" + "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-hierarchy": "workspace:0.14.5", + "@visactor/vgrammar-plot": "workspace:0.14.5", + "@visactor/vgrammar-projection": "workspace:0.14.5", + "@visactor/vgrammar-sankey": "workspace:0.14.5", + "@visactor/vgrammar-wordcloud": "workspace:0.14.5", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.5", + "@visactor/vgrammar-venn": "workspace:0.14.5" }, "devDependencies": { "d3-array": "1.x", diff --git a/packages/vgrammar-hierarchy/package.json b/packages/vgrammar-hierarchy/package.json index 708af3b6..fcfa6709 100644 --- a/packages/vgrammar-hierarchy/package.json +++ b/packages/vgrammar-hierarchy/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-hierarchy", - "version": "0.14.4", + "version": "0.14.5", "description": "Layout of hierarchical data for VGrammar", "keywords": [ "hierarchy", @@ -39,8 +39,8 @@ }, "dependencies": { "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vgrammar-util": "workspace:0.14.4", + "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.5", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3" }, diff --git a/packages/vgrammar-plot/package.json b/packages/vgrammar-plot/package.json index 788ceebf..7f2b8b0c 100644 --- a/packages/vgrammar-plot/package.json +++ b/packages/vgrammar-plot/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-plot", - "version": "0.14.4", + "version": "0.14.5", "description": "Plots of vgrammar.", "keywords": [ "plot", @@ -36,9 +36,9 @@ "dependencies": { "@visactor/vscale": "~0.18.15", "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vgrammar-coordinate": "workspace:0.14.4", - "@visactor/vgrammar-core": "workspace:0.14.4", + "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-coordinate": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.5", "@visactor/vrender-components": "0.20.3", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3" diff --git a/packages/vgrammar-projection/package.json b/packages/vgrammar-projection/package.json index 5697c89d..5fd04a55 100644 --- a/packages/vgrammar-projection/package.json +++ b/packages/vgrammar-projection/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-projection", - "version": "0.14.4", + "version": "0.14.5", "description": "Projections for map, used in VGrammar.", "keywords": [ "projection", @@ -35,8 +35,8 @@ }, "dependencies": { "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar-util": "workspace:0.14.4", - "@visactor/vgrammar-core": "workspace:0.14.4", + "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.5", "d3-geo": "^1.12.1" }, "devDependencies": { diff --git a/packages/vgrammar-sankey/package.json b/packages/vgrammar-sankey/package.json index c846feab..1d7491f1 100644 --- a/packages/vgrammar-sankey/package.json +++ b/packages/vgrammar-sankey/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-sankey", - "version": "0.14.4", + "version": "0.14.5", "description": "Layout of sankey chart, used by VGrammar", "keywords": [ "sankey", @@ -37,8 +37,8 @@ }, "dependencies": { "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vgrammar-util": "workspace:0.14.4", + "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.5", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3" }, diff --git a/packages/vgrammar-util/package.json b/packages/vgrammar-util/package.json index 597d9c12..b3ee962c 100644 --- a/packages/vgrammar-util/package.json +++ b/packages/vgrammar-util/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-util", - "version": "0.14.4", + "version": "0.14.5", "description": "The common utils functions of VGrammar", "keywords": [ "utils", diff --git a/packages/vgrammar-venn/package.json b/packages/vgrammar-venn/package.json index e65af13a..ee0fc127 100644 --- a/packages/vgrammar-venn/package.json +++ b/packages/vgrammar-venn/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-venn", - "version": "0.14.4", + "version": "0.14.5", "description": "Venn layout transform for VGrammar", "keywords": [ "venn", @@ -34,8 +34,8 @@ "test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vgrammar-util": "workspace:0.14.4", + "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.5", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3", "@visactor/vutils": "~0.18.15" diff --git a/packages/vgrammar-wordcloud-shape/package.json b/packages/vgrammar-wordcloud-shape/package.json index 4088933c..4f371284 100644 --- a/packages/vgrammar-wordcloud-shape/package.json +++ b/packages/vgrammar-wordcloud-shape/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-wordcloud-shape", - "version": "0.14.4", + "version": "0.14.5", "description": "Layout WordCloud in specified shape, this is a transform for VGrammar.", "keywords": [ "wordcloud", @@ -36,8 +36,8 @@ "dependencies": { "@visactor/vutils": "~0.18.15", "@visactor/vscale": "~0.18.15", - "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vgrammar-util": "workspace:0.14.4", + "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.5", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3" }, diff --git a/packages/vgrammar-wordcloud/package.json b/packages/vgrammar-wordcloud/package.json index 92488fff..aaa19bb6 100644 --- a/packages/vgrammar-wordcloud/package.json +++ b/packages/vgrammar-wordcloud/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-wordcloud", - "version": "0.14.4", + "version": "0.14.5", "description": "WordCloud layout transform for VGrammar", "keywords": [ "wordcloud", @@ -35,8 +35,8 @@ }, "dependencies": { "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar-core": "workspace:0.14.4", - "@visactor/vgrammar-util": "workspace:0.14.4", + "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.5", "@visactor/vrender-core": "0.20.3", "@visactor/vrender-kits": "0.20.3" }, diff --git a/packages/vgrammar/package.json b/packages/vgrammar/package.json index a0c9c1d7..000befbb 100644 --- a/packages/vgrammar/package.json +++ b/packages/vgrammar/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar", - "version": "0.14.4", + "version": "0.14.5", "description": "simple package of vgrammar.", "keywords": [ "visualization", @@ -30,7 +30,7 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.14.4" + "@visactor/vgrammar-core": "workspace:0.14.5" }, "devDependencies": { "d3-array": "1.x",