Skip to content

Commit 481457b

Browse files
authored
Merge pull request #4322 from hpcc-systems/release-please--branches--candidate-3.x.x
chore: release candidate-3.x.x
2 parents c2df63e + 587a9c7 commit 481457b

20 files changed

+137
-45
lines changed

.release-please-manifest.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
2-
".": "3.3.0",
2+
".": "3.3.1",
33
"packages/api": "3.3.0",
44
"packages/chart": "3.3.0",
55
"packages/codemirror": "3.2.0",
66
"packages/common": "3.3.0",
77
"packages/comms": "3.3.0",
8-
"packages/composite": "3.2.0",
8+
"packages/composite": "3.2.1",
99
"packages/dataflow": "9.3.0",
10-
"packages/dgrid": "3.2.0",
11-
"packages/dgrid-shim": "3.1.0",
10+
"packages/dgrid": "3.2.1",
11+
"packages/dgrid-shim": "3.1.1",
1212
"packages/dgrid2": "3.2.0",
13-
"packages/eclwatch": "3.2.0",
13+
"packages/eclwatch": "3.2.1",
1414
"packages/esbuild-plugins": "1.4.0",
1515
"packages/form": "3.2.0",
16-
"packages/graph": "3.2.0",
17-
"packages/html": "3.2.0",
16+
"packages/graph": "3.2.1",
17+
"packages/html": "3.2.1",
1818
"packages/layout": "3.2.0",
19-
"packages/map": "3.2.0",
19+
"packages/map": "3.2.1",
2020
"packages/markdown-it-plugins": "1.3.0",
2121
"packages/observablehq-compiler": "3.3.0",
2222
"packages/other": "3.2.0",
2323
"packages/phosphor": "3.2.0",
24-
"packages/react": "3.2.0",
24+
"packages/react": "3.2.1",
2525
"packages/timeline": "3.0.0",
2626
"packages/tree": "3.0.0",
2727
"packages/util": "3.3.0"

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [3.3.1](https://github.com/hpcc-systems/Visualization/compare/hpcc-js-v3.3.0...hpcc-js-v3.3.1) (2024-11-29)
6+
7+
8+
### Bug Fixes
9+
10+
* Nested datasets not rendering correctly ([71d18a4](https://github.com/hpcc-systems/Visualization/commit/71d18a4958fb892b49ed56cc0332542aefee8b63))
11+
* Paged dgrid failing in strict mode ([9a738c1](https://github.com/hpcc-systems/Visualization/commit/9a738c11a9e72c6204273540c0fc056b6789872b))
12+
* Revert text autosize changes ([75d7693](https://github.com/hpcc-systems/Visualization/commit/75d76939f7f28a767706ce83f8385250ce45624b))
13+
514
## [3.3.0](https://github.com/hpcc-systems/Visualization/compare/hpcc-js-v3.2.1...hpcc-js-v3.3.0) (2024-11-28)
615

716

package-lock.json

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hpcc-js",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"description": "HPCC Visualization Framework",
55
"private": true,
66
"type": "module",

packages/composite/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.2.1](https://github.com/hpcc-systems/Visualization/compare/composite-v3.2.0...composite-v3.2.1) (2024-11-29)
7+
8+
9+
### Dependencies
10+
11+
* The following workspace dependencies were updated
12+
* dependencies
13+
* @hpcc-js/dgrid bumped from ^3.2.0 to ^3.2.1
14+
* @hpcc-js/html bumped from ^3.2.0 to ^3.2.1
15+
616
## [3.2.0](https://github.com/hpcc-systems/Visualization/compare/composite-v3.1.1...composite-v3.2.0) (2024-11-28)
717

818

packages/composite/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpcc-js/composite",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "hpcc-js - Viz Composite",
55
"type": "module",
66
"main": "./dist/index.umd.cjs",
@@ -40,9 +40,9 @@
4040
"@hpcc-js/api": "^3.3.0",
4141
"@hpcc-js/chart": "^3.3.0",
4242
"@hpcc-js/common": "^3.3.0",
43-
"@hpcc-js/dgrid": "^3.2.0",
43+
"@hpcc-js/dgrid": "^3.2.1",
4444
"@hpcc-js/form": "^3.2.0",
45-
"@hpcc-js/html": "^3.2.0",
45+
"@hpcc-js/html": "^3.2.1",
4646
"@hpcc-js/util": "^3.3.0",
4747
"@hpcc-js/other": "^3.2.0",
4848
"@hpcc-js/phosphor": "^3.2.0"

packages/dgrid-shim/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
3838

3939

4040

41+
## [3.1.1](https://github.com/hpcc-systems/Visualization/compare/dgrid-shim-v3.1.0...dgrid-shim-v3.1.1) (2024-11-29)
42+
43+
44+
### Bug Fixes
45+
46+
* Paged dgrid failing in strict mode ([9a738c1](https://github.com/hpcc-systems/Visualization/commit/9a738c11a9e72c6204273540c0fc056b6789872b))
47+
4148
## [3.1.0](https://github.com/hpcc-systems/Visualization/compare/dgrid-shim-v3.0.0...dgrid-shim-v3.1.0) (2024-11-20)
4249

4350

packages/dgrid-shim/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpcc-js/dgrid-shim",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "dgrid shim",
55
"main": "dist/index.js",
66
"unpkg": "dist/index.min.js",

packages/dgrid/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
6262

6363

6464

65+
## [3.2.1](https://github.com/hpcc-systems/Visualization/compare/dgrid-v3.2.0...dgrid-v3.2.1) (2024-11-29)
66+
67+
68+
### Bug Fixes
69+
70+
* Nested datasets not rendering correctly ([71d18a4](https://github.com/hpcc-systems/Visualization/commit/71d18a4958fb892b49ed56cc0332542aefee8b63))
71+
* Paged dgrid failing in strict mode ([9a738c1](https://github.com/hpcc-systems/Visualization/commit/9a738c11a9e72c6204273540c0fc056b6789872b))
72+
73+
74+
### Dependencies
75+
76+
* The following workspace dependencies were updated
77+
* peerDependencies
78+
* @hpcc-js/dgrid-shim bumped from ^3.1.0 to ^3.1.1
79+
6580
## [3.2.0](https://github.com/hpcc-systems/Visualization/compare/dgrid-v3.1.0...dgrid-v3.2.0) (2024-11-28)
6681

6782

packages/dgrid/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpcc-js/dgrid",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "hpcc-js - Viz DGrid",
55
"type": "module",
66
"main": "./dist/index.umd.cjs",

packages/eclwatch/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.2.1](https://github.com/hpcc-systems/Visualization/compare/eclwatch-v3.2.0...eclwatch-v3.2.1) (2024-11-29)
7+
8+
9+
### Bug Fixes
10+
11+
* Nested datasets not rendering correctly ([71d18a4](https://github.com/hpcc-systems/Visualization/commit/71d18a4958fb892b49ed56cc0332542aefee8b63))
12+
* Paged dgrid failing in strict mode ([9a738c1](https://github.com/hpcc-systems/Visualization/commit/9a738c11a9e72c6204273540c0fc056b6789872b))
13+
14+
15+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* @hpcc-js/dgrid bumped from ^3.2.0 to ^3.2.1
20+
* @hpcc-js/graph bumped from ^3.2.0 to ^3.2.1
21+
622
## [3.2.0](https://github.com/hpcc-systems/Visualization/compare/eclwatch-v3.1.1...eclwatch-v3.2.0) (2024-11-28)
723

824

packages/eclwatch/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpcc-js/eclwatch",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "hpcc-js - ECL Watch",
55
"type": "module",
66
"main": "./dist/index.umd.cjs",
@@ -40,8 +40,8 @@
4040
"@hpcc-js/codemirror": "^3.2.0",
4141
"@hpcc-js/common": "^3.3.0",
4242
"@hpcc-js/comms": "^3.3.0",
43-
"@hpcc-js/dgrid": "^3.2.0",
44-
"@hpcc-js/graph": "^3.2.0",
43+
"@hpcc-js/dgrid": "^3.2.1",
44+
"@hpcc-js/graph": "^3.2.1",
4545
"@hpcc-js/layout": "^3.2.0",
4646
"@hpcc-js/phosphor": "^3.2.0",
4747
"@hpcc-js/timeline": "^3.0.0",

packages/graph/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
133133

134134

135135

136+
## [3.2.1](https://github.com/hpcc-systems/Visualization/compare/graph-v3.2.0...graph-v3.2.1) (2024-11-29)
137+
138+
139+
### Dependencies
140+
141+
* The following workspace dependencies were updated
142+
* dependencies
143+
* @hpcc-js/html bumped from ^3.2.0 to ^3.2.1
144+
* @hpcc-js/react bumped from ^3.2.0 to ^3.2.1
145+
136146
## [3.2.0](https://github.com/hpcc-systems/Visualization/compare/graph-v3.1.1...graph-v3.2.0) (2024-11-28)
137147

138148

packages/graph/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpcc-js/graph",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "hpcc-js - Viz Graph",
55
"type": "module",
66
"main": "./dist/index.umd.cjs",
@@ -40,8 +40,8 @@
4040
"dependencies": {
4141
"@hpcc-js/api": "^3.3.0",
4242
"@hpcc-js/common": "^3.3.0",
43-
"@hpcc-js/html": "^3.2.0",
44-
"@hpcc-js/react": "^3.2.0",
43+
"@hpcc-js/html": "^3.2.1",
44+
"@hpcc-js/react": "^3.2.1",
4545
"@hpcc-js/util": "^3.3.0"
4646
},
4747
"devDependencies": {

packages/html/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
4343

4444

4545

46+
## [3.2.1](https://github.com/hpcc-systems/Visualization/compare/html-v3.2.0...html-v3.2.1) (2024-11-29)
47+
48+
49+
### Dependencies
50+
51+
* The following workspace dependencies were updated
52+
* dependencies
53+
* @hpcc-js/react bumped from ^3.2.0 to ^3.2.1
54+
4655
## [3.2.0](https://github.com/hpcc-systems/Visualization/compare/html-v3.1.1...html-v3.2.0) (2024-11-28)
4756

4857

packages/html/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hpcc-js/html",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "hpcc-js - Viz HTML",
55
"type": "module",
66
"main": "./dist/index.umd.cjs",
@@ -38,7 +38,7 @@
3838
},
3939
"dependencies": {
4040
"@hpcc-js/common": "^3.3.0",
41-
"@hpcc-js/react": "^3.2.0",
41+
"@hpcc-js/react": "^3.2.1",
4242
"@hpcc-js/util": "^3.3.0"
4343
},
4444
"devDependencies": {

0 commit comments

Comments
 (0)