From e6a9ae74e1d823ac2ff9242ac10a86b1f9ea6c53 Mon Sep 17 00:00:00 2001 From: xile611 Date: Wed, 11 Sep 2024 02:13:46 +0000 Subject: [PATCH 1/7] docs: generate changelog of release v0.14.5 --- 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 97b4fb9e..05e951c2 100644 --- a/docs/site/assets/changelog/en/release.md +++ b/docs/site/assets/changelog/en/release.md @@ -1,3 +1,16 @@ +# v0.14.5 + +2024-09-11 + + +**🐛 Bug fix** + +- **@visactor/vgrammar-core**: fix error of vchart when no `animate` + + + +[more detail about v0.14.5](https://github.com/VisActor/VGrammar/releases/tag/v0.14.5) + # v0.14.4 2024-09-05 diff --git a/docs/site/assets/changelog/zh/release.md b/docs/site/assets/changelog/zh/release.md index f23fa5b7..3e36abd7 100644 --- a/docs/site/assets/changelog/zh/release.md +++ b/docs/site/assets/changelog/zh/release.md @@ -1,3 +1,16 @@ +# v0.14.5 + +2024-09-11 + + +**🐛 功能修复** + +- **@visactor/vgrammar-core**: fix error of vchart when no `animate` + + + +[更多详情请查看 v0.14.5](https://github.com/VisActor/VGrammar/releases/tag/v0.14.5) + # v0.14.4 2024-09-05 From c7ccd7cfec848462aaf9bd7013ab79e4c13c0142 Mon Sep 17 00:00:00 2001 From: xile611 Date: Wed, 11 Sep 2024 10:14:50 +0800 Subject: [PATCH 2/7] fix: fix error of wordcloud when no animate --- packages/vgrammar-core/src/view/View.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/vgrammar-core/src/view/View.ts b/packages/vgrammar-core/src/view/View.ts index 2dd6e4ea..155820b1 100644 --- a/packages/vgrammar-core/src/view/View.ts +++ b/packages/vgrammar-core/src/view/View.ts @@ -1342,7 +1342,11 @@ export default class View extends EventEmitter implements IView { if (this._progressiveMarks && this._progressiveMarks.some(mark => mark.isDoingProgressive())) { const raf = vglobal.getRequestAnimationFrame(); this._progressiveRafId = raf(this.handleProgressiveFrame); - } else if (this._progressiveMarks && this._progressiveMarks.every(mark => mark.canAnimateAfterProgressive())) { + } else if ( + this._progressiveMarks && + this.animate && + this._progressiveMarks.every(mark => mark.canAnimateAfterProgressive()) + ) { this.animate.animate(); } else if (this._progressiveMarks) { this._progressiveMarks = null; From 5fa7ff4f6336d4ecf658076d7f9135d4c00b22b5 Mon Sep 17 00:00:00 2001 From: xile611 Date: Wed, 11 Sep 2024 10:38:25 +0800 Subject: [PATCH 3/7] docs: update changlog of rush --- .../fix-wordclud-aniamte_2024-09-11-02-38.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/changes/@visactor/vgrammar-core/fix-wordclud-aniamte_2024-09-11-02-38.json diff --git a/common/changes/@visactor/vgrammar-core/fix-wordclud-aniamte_2024-09-11-02-38.json b/common/changes/@visactor/vgrammar-core/fix-wordclud-aniamte_2024-09-11-02-38.json new file mode 100644 index 00000000..7be40633 --- /dev/null +++ b/common/changes/@visactor/vgrammar-core/fix-wordclud-aniamte_2024-09-11-02-38.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "fix: fix error of wordcloud 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 978abc94ec8b2306b99e3283c32b866f981d46b0 Mon Sep 17 00:00:00 2001 From: skie1997 Date: Wed, 11 Sep 2024 11:00:43 +0800 Subject: [PATCH 4/7] fix: limit of layout-try-count not as expected --- .../fix-layout-try-count_2024-09-11-03-00.json | 10 ++++++++++ packages/vgrammar-wordcloud/src/base.ts | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 common/changes/@visactor/vgrammar-core/fix-layout-try-count_2024-09-11-03-00.json diff --git a/common/changes/@visactor/vgrammar-core/fix-layout-try-count_2024-09-11-03-00.json b/common/changes/@visactor/vgrammar-core/fix-layout-try-count_2024-09-11-03-00.json new file mode 100644 index 00000000..3a42bad3 --- /dev/null +++ b/common/changes/@visactor/vgrammar-core/fix-layout-try-count_2024-09-11-03-00.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@visactor/vgrammar-core", + "comment": "fix: limit of layout-try-count not as expected", + "type": "none" + } + ], + "packageName": "@visactor/vgrammar-core" +} \ No newline at end of file diff --git a/packages/vgrammar-wordcloud/src/base.ts b/packages/vgrammar-wordcloud/src/base.ts index 507dceee..cebb289e 100644 --- a/packages/vgrammar-wordcloud/src/base.ts +++ b/packages/vgrammar-wordcloud/src/base.ts @@ -158,7 +158,7 @@ export abstract class BaseLayout implements IProgr const drawn = this.layoutWord(i); curWordTryCount++; - if (drawn || curWordTryCount >= maxSingleWordTryCount) { + if (drawn || curWordTryCount > maxSingleWordTryCount) { i++; curWordTryCount = 0; this.failCount = drawn ? 0 : this.failCount + 1; From c7c6e0d3c2382d46c6403cce09f50a0366e899c7 Mon Sep 17 00:00:00 2001 From: skie1997 Date: Wed, 11 Sep 2024 11:15:34 +0800 Subject: [PATCH 5/7] chore: add unit test --- .../__tests__/wordcloud.test.ts | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages/vgrammar-wordcloud/__tests__/wordcloud.test.ts b/packages/vgrammar-wordcloud/__tests__/wordcloud.test.ts index 39fcf4e7..bba5700d 100644 --- a/packages/vgrammar-wordcloud/__tests__/wordcloud.test.ts +++ b/packages/vgrammar-wordcloud/__tests__/wordcloud.test.ts @@ -273,3 +273,30 @@ test('Wordcloud generates wordcloud layout with rotate seed random', async () => expect(result[0].x).toBe(250); expect(result[0].y).toBe(250); }); + +test('Wordcloud layout when there is one data and make sure try count is 2', async () => { + const data = [ + { + '240829180619332': '健康', + '240830104655019': '113' + } + ]; + + const result = await transform( + { + size: [148, 69], + text: { field: '240829180619332' }, + fontSize: { field: '240830104655019' }, + fontSizeRange: [10, 50], + shape: 'square', + randomVisible: false, + shrink: true, + enlarge: true + }, + data + ); + expect(result.length).toBe(data.length); + expect(result[0].fontSize).toBeCloseTo(35.656656207978486); + expect(result[0].x).toBeCloseTo(73.45271178843568); + expect(result[0].y).toBeCloseTo(34.23038995965935); +}); From 85baac0acf4fc912fc2cc90d11f11fa95fdadcdd Mon Sep 17 00:00:00 2001 From: xile611 Date: Thu, 12 Sep 2024 15:39:45 +0800 Subject: [PATCH 6/7] fix: upgrade vrender to 0.20.4 --- 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 e61fafcd..4d8ec42e 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.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 + '@visactor/vrender': 0.20.4 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-core': 0.20.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender': 0.20.4 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.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 + '@visactor/vrender': 0.20.4 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-core': 0.20.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender': 0.20.4 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.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 + '@visactor/vrender-components': 0.20.4 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-core': 0.20.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-components': 0.20.4 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@visactor/vscale': 0.18.15 '@visactor/vutils': 0.18.15 devDependencies: @@ -340,8 +340,8 @@ importers: '@types/node': '*' '@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/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -385,9 +385,9 @@ importers: '@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 + '@visactor/vrender-components': 0.20.4 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-core': 0.20.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-components': 0.20.4 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@visactor/vscale': 0.18.15 '@visactor/vutils': 0.18.15 devDependencies: @@ -481,8 +481,8 @@ importers: '@types/node': '*' '@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/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 + '@visactor/vrender-core': 0.20.4 '@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.3 + '@visactor/vrender-core': 0.20.4 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -561,8 +561,8 @@ importers: '@types/node': '*' '@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/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -604,8 +604,8 @@ importers: '@types/node': '*' '@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/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@visactor/vutils': 0.18.15 devDependencies: '@internal/bundler': link:../../tools/bundler @@ -647,8 +647,8 @@ importers: '@types/node': '*' '@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/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@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.3: - resolution: {integrity: sha512-Lvn2wC9A9QugForwXL8qjqNRTqg8x+gH8Smc4n/g+GJ3GoWEyRfdFofzVhF4lbY0RJBrs+DYmrFrBBvpxS/wkg==} + /@visactor/vrender-components/0.20.4: + resolution: {integrity: sha512-cFW5mTV6aR5aRpRndLKXJYPXca14gR1Lwl/phizL7S1l5K7jlE9JGIIL1Fy7iocLwcKYkWQTOExX1EYHg/1/Dw==} dependencies: - '@visactor/vrender-core': 0.20.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 '@visactor/vscale': 0.18.15 '@visactor/vutils': 0.18.15 dev: false - /@visactor/vrender-core/0.20.3: - resolution: {integrity: sha512-R59SlmUZax18tme2A2UZlc70IzX0/vsmNTjkB1e5ugMRHtHon5zbu5Cq87PZCXEm18nl+CKIWUMemyeS2CT7ew==} + /@visactor/vrender-core/0.20.4: + resolution: {integrity: sha512-KyGEuxkoEI5BMC3i3T+qRstQRerK5LC5TeBpOt+GeCW3bENfmkqfiM1kbil65maypo7uf3s+cDqbpzHKcBgfpA==} dependencies: '@visactor/vutils': 0.18.15 color-convert: 2.0.1 - /@visactor/vrender-kits/0.20.3: - resolution: {integrity: sha512-rjdWgDJL1Ulfmnddgjsd23+rp+bjW++7dipmpGPt/zasoaaM72HTaRUznPD9pmBVxnCFCAzCXcRWKxkAxrx6Og==} + /@visactor/vrender-kits/0.20.4: + resolution: {integrity: sha512-s8NPjfmaHscBK0pBJbBFVlyx7nEPkrUCIkCLnwy6HE0/PvT75DqTpxkqgiPeC0xF16dd23xoDxhXKrE+IyFO7Q==} dependencies: '@resvg/resvg-js': 2.4.1 - '@visactor/vrender-core': 0.20.3 + '@visactor/vrender-core': 0.20.4 '@visactor/vutils': 0.18.15 roughjs: 4.5.2 - /@visactor/vrender/0.20.3: - resolution: {integrity: sha512-1vBq7diS4BANvFpcBEpHH6t9gH7zxPLHlwcWFDEpmpSftBvXzbfVJmX9eO/nNzSO8ClWX9KHXuYXX6D+7GZMHQ==} + /@visactor/vrender/0.20.4: + resolution: {integrity: sha512-1y7IGweaWCRjoIWvo0EBmT2a+ni2A9pCPTs9XbLJMUrNgJKAAvDXX5doNDwZm8zJPP/EMoySLhX0rtCcosM7NA==} dependencies: - '@visactor/vrender-core': 0.20.3 - '@visactor/vrender-kits': 0.20.3 + '@visactor/vrender-core': 0.20.4 + '@visactor/vrender-kits': 0.20.4 /@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 c7c0b299..77873427 100644 --- a/docs/dev-demos/package.json +++ b/docs/dev-demos/package.json @@ -20,9 +20,9 @@ "@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", + "@visactor/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4", + "@visactor/vrender": "0.20.4", "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 102e534b..8956258b 100644 --- a/docs/site/package.json +++ b/docs/site/package.json @@ -25,9 +25,9 @@ "@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", + "@visactor/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4", + "@visactor/vrender": "0.20.4", "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 53563a0d..5647ed32 100644 --- a/packages/vgrammar-core/package.json +++ b/packages/vgrammar-core/package.json @@ -40,9 +40,9 @@ "@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", - "@visactor/vrender-components": "0.20.3" + "@visactor/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4", + "@visactor/vrender-components": "0.20.4" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-hierarchy/package.json b/packages/vgrammar-hierarchy/package.json index fcfa6709..726d2dac 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.5", "@visactor/vgrammar-util": "workspace:0.14.5", - "@visactor/vrender-core": "0.20.3", - "@visactor/vrender-kits": "0.20.3" + "@visactor/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-plot/package.json b/packages/vgrammar-plot/package.json index 7f2b8b0c..46adb6a1 100644 --- a/packages/vgrammar-plot/package.json +++ b/packages/vgrammar-plot/package.json @@ -39,9 +39,9 @@ "@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" + "@visactor/vrender-components": "0.20.4", + "@visactor/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4" }, "devDependencies": { "d3-array": "1.x", diff --git a/packages/vgrammar-sankey/package.json b/packages/vgrammar-sankey/package.json index 1d7491f1..d73c7764 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.5", "@visactor/vgrammar-util": "workspace:0.14.5", - "@visactor/vrender-core": "0.20.3", - "@visactor/vrender-kits": "0.20.3" + "@visactor/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-util/package.json b/packages/vgrammar-util/package.json index b3ee962c..4e5c574c 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.3" + "@visactor/vrender-core": "0.20.4" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-venn/package.json b/packages/vgrammar-venn/package.json index ee0fc127..5a8a525d 100644 --- a/packages/vgrammar-venn/package.json +++ b/packages/vgrammar-venn/package.json @@ -36,8 +36,8 @@ "dependencies": { "@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/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4", "@visactor/vutils": "~0.18.15" }, "devDependencies": { diff --git a/packages/vgrammar-wordcloud-shape/package.json b/packages/vgrammar-wordcloud-shape/package.json index 4f371284..aac1da3b 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.5", "@visactor/vgrammar-util": "workspace:0.14.5", - "@visactor/vrender-core": "0.20.3", - "@visactor/vrender-kits": "0.20.3" + "@visactor/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-wordcloud/package.json b/packages/vgrammar-wordcloud/package.json index aaa19bb6..d81de1aa 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.5", "@visactor/vgrammar-util": "workspace:0.14.5", - "@visactor/vrender-core": "0.20.3", - "@visactor/vrender-kits": "0.20.3" + "@visactor/vrender-core": "0.20.4", + "@visactor/vrender-kits": "0.20.4" }, "devDependencies": { "@internal/bundler": "workspace:*", From 7f3e31b874cc25c39d311e92cea608ec5e5b8c14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 12 Sep 2024 07:50:03 +0000 Subject: [PATCH 7/7] build: release version 0.14.6 --- ...fix-layout-try-count_2024-09-11-03-00.json | 10 -- ...fix-wordclud-aniamte_2024-09-11-02-38.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 | 15 +++ packages/vgrammar-core/CHANGELOG.md | 12 ++- 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 +- 20 files changed, 135 insertions(+), 131 deletions(-) delete mode 100644 common/changes/@visactor/vgrammar-core/fix-layout-try-count_2024-09-11-03-00.json delete mode 100644 common/changes/@visactor/vgrammar-core/fix-wordclud-aniamte_2024-09-11-02-38.json diff --git a/common/changes/@visactor/vgrammar-core/fix-layout-try-count_2024-09-11-03-00.json b/common/changes/@visactor/vgrammar-core/fix-layout-try-count_2024-09-11-03-00.json deleted file mode 100644 index 3a42bad3..00000000 --- a/common/changes/@visactor/vgrammar-core/fix-layout-try-count_2024-09-11-03-00.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@visactor/vgrammar-core", - "comment": "fix: limit of layout-try-count not as expected", - "type": "none" - } - ], - "packageName": "@visactor/vgrammar-core" -} \ No newline at end of file diff --git a/common/changes/@visactor/vgrammar-core/fix-wordclud-aniamte_2024-09-11-02-38.json b/common/changes/@visactor/vgrammar-core/fix-wordclud-aniamte_2024-09-11-02-38.json deleted file mode 100644 index 7be40633..00000000 --- a/common/changes/@visactor/vgrammar-core/fix-wordclud-aniamte_2024-09-11-02-38.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "fix: fix error of wordcloud 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 4d8ec42e..67da3e66 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.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/vgrammar': workspace:0.14.6 + '@visactor/vgrammar-coordinate': workspace:0.14.6 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-hierarchy': workspace:0.14.6 + '@visactor/vgrammar-plot': workspace:0.14.6 + '@visactor/vgrammar-projection': workspace:0.14.6 + '@visactor/vgrammar-sankey': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 + '@visactor/vgrammar-wordcloud': workspace:0.14.6 + '@visactor/vgrammar-wordcloud-shape': workspace:0.14.6 '@visactor/vrender': 0.20.4 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 @@ -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.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/vgrammar': workspace:0.14.6 + '@visactor/vgrammar-coordinate': workspace:0.14.6 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-hierarchy': workspace:0.14.6 + '@visactor/vgrammar-plot': workspace:0.14.6 + '@visactor/vgrammar-projection': workspace:0.14.6 + '@visactor/vgrammar-sankey': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 + '@visactor/vgrammar-venn': workspace:0.14.6 + '@visactor/vgrammar-wordcloud': workspace:0.14.6 + '@visactor/vgrammar-wordcloud-shape': workspace:0.14.6 '@visactor/vrender': 0.20.4 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 @@ -153,7 +153,7 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.6 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.5 + '@visactor/vgrammar-util': workspace:0.14.6 '@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.5 - '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-coordinate': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 '@visactor/vrender-components': 0.20.4 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 @@ -279,14 +279,14 @@ importers: '@types/jest': ~29.5.0 '@types/node': '*' '@types/node-fetch': 2.6.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 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-hierarchy': workspace:0.14.6 + '@visactor/vgrammar-plot': workspace:0.14.6 + '@visactor/vgrammar-projection': workspace:0.14.6 + '@visactor/vgrammar-sankey': workspace:0.14.6 + '@visactor/vgrammar-venn': workspace:0.14.6 + '@visactor/vgrammar-wordcloud': workspace:0.14.6 + '@visactor/vgrammar-wordcloud-shape': workspace:0.14.6 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.5 - '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 '@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.5 - '@visactor/vgrammar-core': workspace:0.14.5 - '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-coordinate': workspace:0.14.6 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 '@visactor/vrender-components': 0.20.4 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 @@ -435,8 +435,8 @@ importers: '@types/d3-geo': ^1.11.1 '@types/jest': ~29.5.0 '@types/node': '*' - '@visactor/vgrammar-core': workspace:0.14.5 - '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 '@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.5 - '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 '@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.5 - '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 '@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.5 - '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 '@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.5 - '@visactor/vgrammar-util': workspace:0.14.5 + '@visactor/vgrammar-core': workspace:0.14.6 + '@visactor/vgrammar-util': workspace:0.14.6 '@visactor/vrender-core': 0.20.4 '@visactor/vrender-kits': 0.20.4 '@visactor/vscale': ~0.18.15 diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index d994b4e8..1554c663 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -1 +1 @@ -[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.14.5","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] +[{"definitionName":"lockStepVersion","policyName":"vgrammarMain","version":"0.14.6","mainProject":"@visactor/vgrammar-core","nextBump":"patch"}] diff --git a/docs/dev-demos/package.json b/docs/dev-demos/package.json index 77873427..981da04f 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.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": "workspace:0.14.6", + "@visactor/vgrammar-core": "workspace:0.14.6", + "@visactor/vgrammar-hierarchy": "workspace:0.14.6", + "@visactor/vgrammar-sankey": "workspace:0.14.6", + "@visactor/vgrammar-projection": "workspace:0.14.6", + "@visactor/vgrammar-wordcloud": "workspace:0.14.6", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.6", + "@visactor/vgrammar-plot": "workspace:0.14.6", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4", "@visactor/vrender": "0.20.4", @@ -27,8 +27,8 @@ "lodash": "4.17.21", "typescript": "4.9.5", "vite": "3.2.6", - "@visactor/vgrammar-util": "workspace:0.14.5", - "@visactor/vgrammar-coordinate": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.6", + "@visactor/vgrammar-coordinate": "workspace:0.14.6", "@vitejs/plugin-react": "3.1.0" } } diff --git a/docs/site/package.json b/docs/site/package.json index 8956258b..eebfb84c 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.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/vgrammar": "workspace:0.14.6", + "@visactor/vgrammar-core": "workspace:0.14.6", + "@visactor/vgrammar-hierarchy": "workspace:0.14.6", + "@visactor/vgrammar-sankey": "workspace:0.14.6", + "@visactor/vgrammar-projection": "workspace:0.14.6", + "@visactor/vgrammar-wordcloud": "workspace:0.14.6", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.6", + "@visactor/vgrammar-plot": "workspace:0.14.6", + "@visactor/vgrammar-util": "workspace:0.14.6", + "@visactor/vgrammar-coordinate": "workspace:0.14.6", + "@visactor/vgrammar-venn": "workspace:0.14.6", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4", "@visactor/vrender": "0.20.4", diff --git a/packages/vgrammar-coordinate/package.json b/packages/vgrammar-coordinate/package.json index b6f670de..5ecb0c99 100644 --- a/packages/vgrammar-coordinate/package.json +++ b/packages/vgrammar-coordinate/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-coordinate", - "version": "0.14.5", + "version": "0.14.6", "description": "Coordinates for VGrammar", "keywords": [ "coordinate", @@ -35,7 +35,7 @@ }, "dependencies": { "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar-util": "workspace:0.14.5" + "@visactor/vgrammar-util": "workspace:0.14.6" }, "devDependencies": { "@internal/bundler": "workspace:*", diff --git a/packages/vgrammar-core/CHANGELOG.json b/packages/vgrammar-core/CHANGELOG.json index 3e5fb577..cdcbb3a2 100644 --- a/packages/vgrammar-core/CHANGELOG.json +++ b/packages/vgrammar-core/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@visactor/vgrammar-core", "entries": [ + { + "version": "0.14.6", + "tag": "@visactor/vgrammar-core_v0.14.6", + "date": "Thu, 12 Sep 2024 07:43:11 GMT", + "comments": { + "none": [ + { + "comment": "fix: limit of layout-try-count not as expected" + }, + { + "comment": "fix: fix error of wordcloud when no animate\n\n" + } + ] + } + }, { "version": "0.14.5", "tag": "@visactor/vgrammar-core_v0.14.5", diff --git a/packages/vgrammar-core/CHANGELOG.md b/packages/vgrammar-core/CHANGELOG.md index 36cfcf9d..f548e03a 100644 --- a/packages/vgrammar-core/CHANGELOG.md +++ b/packages/vgrammar-core/CHANGELOG.md @@ -1,6 +1,16 @@ # Change Log - @visactor/vgrammar-core -This log was last generated on Sat, 07 Sep 2024 11:11:13 GMT and should not be manually modified. +This log was last generated on Thu, 12 Sep 2024 07:43:11 GMT and should not be manually modified. + +## 0.14.6 +Thu, 12 Sep 2024 07:43:11 GMT + +### Updates + +- fix: limit of layout-try-count not as expected +- fix: fix error of wordcloud when no animate + + ## 0.14.5 Sat, 07 Sep 2024 11:11:13 GMT diff --git a/packages/vgrammar-core/package.json b/packages/vgrammar-core/package.json index 5647ed32..b36dcb25 100644 --- a/packages/vgrammar-core/package.json +++ b/packages/vgrammar-core/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-core", - "version": "0.14.5", + "version": "0.14.6", "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.5", - "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-coordinate": "workspace:0.14.6", + "@visactor/vgrammar-util": "workspace:0.14.6", "@visactor/vscale": "~0.18.15", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4", diff --git a/packages/vgrammar-full/package.json b/packages/vgrammar-full/package.json index b96a16f6..9e419ba5 100644 --- a/packages/vgrammar-full/package.json +++ b/packages/vgrammar-full/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-full", - "version": "0.14.5", + "version": "0.14.6", "description": "full packages of vgrammar.", "keywords": [ "visualization", @@ -33,14 +33,14 @@ "test": "" }, "dependencies": { - "@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" + "@visactor/vgrammar-core": "workspace:0.14.6", + "@visactor/vgrammar-hierarchy": "workspace:0.14.6", + "@visactor/vgrammar-plot": "workspace:0.14.6", + "@visactor/vgrammar-projection": "workspace:0.14.6", + "@visactor/vgrammar-sankey": "workspace:0.14.6", + "@visactor/vgrammar-wordcloud": "workspace:0.14.6", + "@visactor/vgrammar-wordcloud-shape": "workspace:0.14.6", + "@visactor/vgrammar-venn": "workspace:0.14.6" }, "devDependencies": { "d3-array": "1.x", diff --git a/packages/vgrammar-hierarchy/package.json b/packages/vgrammar-hierarchy/package.json index 726d2dac..d65d073a 100644 --- a/packages/vgrammar-hierarchy/package.json +++ b/packages/vgrammar-hierarchy/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-hierarchy", - "version": "0.14.5", + "version": "0.14.6", "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.5", - "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.6", + "@visactor/vgrammar-util": "workspace:0.14.6", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4" }, diff --git a/packages/vgrammar-plot/package.json b/packages/vgrammar-plot/package.json index 46adb6a1..7f5d405d 100644 --- a/packages/vgrammar-plot/package.json +++ b/packages/vgrammar-plot/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-plot", - "version": "0.14.5", + "version": "0.14.6", "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.5", - "@visactor/vgrammar-coordinate": "workspace:0.14.5", - "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.6", + "@visactor/vgrammar-coordinate": "workspace:0.14.6", + "@visactor/vgrammar-core": "workspace:0.14.6", "@visactor/vrender-components": "0.20.4", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4" diff --git a/packages/vgrammar-projection/package.json b/packages/vgrammar-projection/package.json index 5fd04a55..e3f7a36d 100644 --- a/packages/vgrammar-projection/package.json +++ b/packages/vgrammar-projection/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-projection", - "version": "0.14.5", + "version": "0.14.6", "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.5", - "@visactor/vgrammar-core": "workspace:0.14.5", + "@visactor/vgrammar-util": "workspace:0.14.6", + "@visactor/vgrammar-core": "workspace:0.14.6", "d3-geo": "^1.12.1" }, "devDependencies": { diff --git a/packages/vgrammar-sankey/package.json b/packages/vgrammar-sankey/package.json index d73c7764..7c311230 100644 --- a/packages/vgrammar-sankey/package.json +++ b/packages/vgrammar-sankey/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-sankey", - "version": "0.14.5", + "version": "0.14.6", "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.5", - "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.6", + "@visactor/vgrammar-util": "workspace:0.14.6", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4" }, diff --git a/packages/vgrammar-util/package.json b/packages/vgrammar-util/package.json index 4e5c574c..d8c25af0 100644 --- a/packages/vgrammar-util/package.json +++ b/packages/vgrammar-util/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-util", - "version": "0.14.5", + "version": "0.14.6", "description": "The common utils functions of VGrammar", "keywords": [ "utils", diff --git a/packages/vgrammar-venn/package.json b/packages/vgrammar-venn/package.json index 5a8a525d..782c9009 100644 --- a/packages/vgrammar-venn/package.json +++ b/packages/vgrammar-venn/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-venn", - "version": "0.14.5", + "version": "0.14.6", "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.5", - "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.6", + "@visactor/vgrammar-util": "workspace:0.14.6", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4", "@visactor/vutils": "~0.18.15" diff --git a/packages/vgrammar-wordcloud-shape/package.json b/packages/vgrammar-wordcloud-shape/package.json index aac1da3b..a2dcda75 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.5", + "version": "0.14.6", "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.5", - "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.6", + "@visactor/vgrammar-util": "workspace:0.14.6", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4" }, diff --git a/packages/vgrammar-wordcloud/package.json b/packages/vgrammar-wordcloud/package.json index d81de1aa..e33223d5 100644 --- a/packages/vgrammar-wordcloud/package.json +++ b/packages/vgrammar-wordcloud/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar-wordcloud", - "version": "0.14.5", + "version": "0.14.6", "description": "WordCloud layout transform for VGrammar", "keywords": [ "wordcloud", @@ -35,8 +35,8 @@ }, "dependencies": { "@visactor/vutils": "~0.18.15", - "@visactor/vgrammar-core": "workspace:0.14.5", - "@visactor/vgrammar-util": "workspace:0.14.5", + "@visactor/vgrammar-core": "workspace:0.14.6", + "@visactor/vgrammar-util": "workspace:0.14.6", "@visactor/vrender-core": "0.20.4", "@visactor/vrender-kits": "0.20.4" }, diff --git a/packages/vgrammar/package.json b/packages/vgrammar/package.json index 000befbb..c7d606bc 100644 --- a/packages/vgrammar/package.json +++ b/packages/vgrammar/package.json @@ -1,6 +1,6 @@ { "name": "@visactor/vgrammar", - "version": "0.14.5", + "version": "0.14.6", "description": "simple package of vgrammar.", "keywords": [ "visualization", @@ -30,7 +30,7 @@ "test": "" }, "dependencies": { - "@visactor/vgrammar-core": "workspace:0.14.5" + "@visactor/vgrammar-core": "workspace:0.14.6" }, "devDependencies": { "d3-array": "1.x",