From d796f83098115d892d76db814ff368be91b5c4c8 Mon Sep 17 00:00:00 2001 From: mikebender Date: Fri, 15 Sep 2023 09:09:06 -0400 Subject: [PATCH] v0.49.0 --- CHANGELOG.md | 30 +++++++++ lerna.json | 2 +- package-lock.json | 68 ++++++++++---------- packages/app-utils/CHANGELOG.md | 8 +++ packages/app-utils/package.json | 2 +- packages/auth-plugins/CHANGELOG.md | 8 +++ packages/auth-plugins/package.json | 2 +- packages/babel-preset/CHANGELOG.md | 8 +++ packages/babel-preset/package.json | 2 +- packages/chart/CHANGELOG.md | 8 +++ packages/chart/package.json | 2 +- packages/code-studio/CHANGELOG.md | 19 ++++++ packages/code-studio/package.json | 2 +- packages/components/CHANGELOG.md | 8 +++ packages/components/package.json | 2 +- packages/console/CHANGELOG.md | 8 +++ packages/console/package.json | 2 +- packages/dashboard-core-plugins/CHANGELOG.md | 8 +++ packages/dashboard-core-plugins/package.json | 2 +- packages/dashboard/CHANGELOG.md | 8 +++ packages/dashboard/package.json | 2 +- packages/embed-chart/CHANGELOG.md | 8 +++ packages/embed-chart/package.json | 2 +- packages/embed-grid/CHANGELOG.md | 8 +++ packages/embed-grid/package.json | 2 +- packages/eslint-config/CHANGELOG.md | 8 +++ packages/eslint-config/package.json | 2 +- packages/file-explorer/CHANGELOG.md | 8 +++ packages/file-explorer/package.json | 2 +- packages/filters/CHANGELOG.md | 8 +++ packages/filters/package.json | 2 +- packages/golden-layout/CHANGELOG.md | 8 +++ packages/golden-layout/package.json | 2 +- packages/grid/CHANGELOG.md | 11 ++++ packages/grid/package.json | 2 +- packages/icons/CHANGELOG.md | 8 +++ packages/icons/package.json | 2 +- packages/iris-grid/CHANGELOG.md | 24 +++++++ packages/iris-grid/package.json | 2 +- packages/jsapi-bootstrap/CHANGELOG.md | 8 +++ packages/jsapi-bootstrap/package.json | 2 +- packages/jsapi-components/CHANGELOG.md | 8 +++ packages/jsapi-components/package.json | 2 +- packages/jsapi-shim/CHANGELOG.md | 8 +++ packages/jsapi-shim/package.json | 2 +- packages/jsapi-types/CHANGELOG.md | 8 +++ packages/jsapi-types/package.json | 2 +- packages/jsapi-utils/CHANGELOG.md | 8 +++ packages/jsapi-utils/package.json | 2 +- packages/log/CHANGELOG.md | 8 +++ packages/log/package.json | 2 +- packages/mocks/CHANGELOG.md | 8 +++ packages/mocks/package.json | 2 +- packages/plugin/CHANGELOG.md | 11 ++++ packages/plugin/package.json | 2 +- packages/pouch-storage/CHANGELOG.md | 8 +++ packages/pouch-storage/package.json | 2 +- packages/prettier-config/CHANGELOG.md | 8 +++ packages/prettier-config/package.json | 2 +- packages/react-hooks/CHANGELOG.md | 8 +++ packages/react-hooks/package.json | 2 +- packages/redux/CHANGELOG.md | 8 +++ packages/redux/package.json | 2 +- packages/storage/CHANGELOG.md | 8 +++ packages/storage/package.json | 2 +- packages/stylelint-config/CHANGELOG.md | 8 +++ packages/stylelint-config/package.json | 2 +- packages/tsconfig/CHANGELOG.md | 8 +++ packages/tsconfig/package.json | 2 +- packages/utils/CHANGELOG.md | 8 +++ packages/utils/package.json | 2 +- 71 files changed, 404 insertions(+), 69 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6e27d73c..eca7c9956 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,36 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + + +### Bug Fixes + +* Plugin peer dependencies do not get versions from lerna ([#1517](https://github.com/deephaven/web-client-ui/issues/1517)) ([322f6ff](https://github.com/deephaven/web-client-ui/commit/322f6ff7d2ef949774bab61527e5e1c32f344da6)) +* Table overflow button has lower priority than grid tokens ([#1510](https://github.com/deephaven/web-client-ui/issues/1510)) ([32e6d20](https://github.com/deephaven/web-client-ui/commit/32e6d208d0977092f315caa122b8ab23f0fc110a)), closes [#1480](https://github.com/deephaven/web-client-ui/issues/1480) + + +### Code Refactoring + +* Improve table saver to always use the correct service worker ([#1515](https://github.com/deephaven/web-client-ui/issues/1515)) ([2488e52](https://github.com/deephaven/web-client-ui/commit/2488e52fdeda16604be2516c30782d6127be9317)), closes [#766](https://github.com/deephaven/web-client-ui/issues/766) + + +### Features + +* Update go to row panel's row number with cursorRow ([#1508](https://github.com/deephaven/web-client-ui/issues/1508)) ([23ab5cc](https://github.com/deephaven/web-client-ui/commit/23ab5cc0f798304a274ed2de2473cc9c74ca84cb)), closes [#1406](https://github.com/deephaven/web-client-ui/issues/1406) + + +### BREAKING CHANGES + +* `TableSaver` now expects the service worker to send it +a complete URL for download instead of just a file name. DHE will need +to adjust its `serviceWorker.js` to incorporate the same changes from +this PR. + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) diff --git a/lerna.json b/lerna.json index 354067b81..ed59c6bec 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useNx": false, - "version": "0.48.0", + "version": "0.49.0", "command": { "publish": { "distTag": "latest" diff --git a/package-lock.json b/package-lock.json index 702ca608a..1e0fa3491 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27919,7 +27919,7 @@ }, "packages/app-utils": { "name": "@deephaven/app-utils", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/auth-plugins": "file:../auth-plugins", @@ -27998,7 +27998,7 @@ }, "packages/auth-plugins": { "name": "@deephaven/auth-plugins", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28026,7 +28026,7 @@ }, "packages/babel-preset": { "name": "@deephaven/babel-preset", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@babel/core": "^7.20.0", @@ -28041,7 +28041,7 @@ }, "packages/chart": { "name": "@deephaven/chart", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/icons": "file:../icons", @@ -28072,7 +28072,7 @@ }, "packages/code-studio": { "name": "@deephaven/code-studio", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/app-utils": "file:../app-utils", @@ -28165,7 +28165,7 @@ }, "packages/components": { "name": "@deephaven/components", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "^3.29.0", @@ -28204,7 +28204,7 @@ }, "packages/console": { "name": "@deephaven/console", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/chart": "file:../chart", @@ -28244,7 +28244,7 @@ }, "packages/dashboard": { "name": "@deephaven/dashboard", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28275,7 +28275,7 @@ }, "packages/dashboard-core-plugins": { "name": "@deephaven/dashboard-core-plugins", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/chart": "file:../chart", @@ -28339,7 +28339,7 @@ }, "packages/embed-chart": { "name": "@deephaven/embed-chart", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/app-utils": "file:../app-utils", @@ -28362,7 +28362,7 @@ }, "packages/embed-grid": { "name": "@deephaven/embed-grid", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/app-utils": "file:../app-utils", @@ -28385,7 +28385,7 @@ }, "packages/eslint-config": { "name": "@deephaven/eslint-config", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "eslint-config-airbnb": "^19.0.4", @@ -28404,7 +28404,7 @@ }, "packages/file-explorer": { "name": "@deephaven/file-explorer", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28430,7 +28430,7 @@ }, "packages/filters": { "name": "@deephaven/filters", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "engines": { "node": ">=16" @@ -28438,7 +28438,7 @@ }, "packages/golden-layout": { "name": "@deephaven/golden-layout", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28457,7 +28457,7 @@ }, "packages/grid": { "name": "@deephaven/grid", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/utils": "file:../utils", @@ -28479,7 +28479,7 @@ }, "packages/icons": { "name": "@deephaven/icons", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@fortawesome/fontawesome-common-types": "^6.1.1" @@ -28496,7 +28496,7 @@ }, "packages/iris-grid": { "name": "@deephaven/iris-grid", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28541,7 +28541,7 @@ }, "packages/jsapi-bootstrap": { "name": "@deephaven/jsapi-bootstrap", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28561,7 +28561,7 @@ }, "packages/jsapi-components": { "name": "@deephaven/jsapi-components", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28590,7 +28590,7 @@ }, "packages/jsapi-shim": { "name": "@deephaven/jsapi-shim", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/jsapi-types": "file:../jsapi-types", @@ -28602,7 +28602,7 @@ }, "packages/jsapi-types": { "name": "@deephaven/jsapi-types", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "engines": { "node": ">=16" @@ -28610,7 +28610,7 @@ }, "packages/jsapi-utils": { "name": "@deephaven/jsapi-utils", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/filters": "file:../filters", @@ -28629,7 +28629,7 @@ }, "packages/log": { "name": "@deephaven/log", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "event-target-shim": "^6.0.2" @@ -28640,7 +28640,7 @@ }, "packages/mocks": { "name": "@deephaven/mocks", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "peerDependencies": { "jest": "29.x" @@ -28648,7 +28648,7 @@ }, "packages/plugin": { "name": "@deephaven/plugin", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28689,7 +28689,7 @@ }, "packages/pouch-storage": { "name": "@deephaven/pouch-storage", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/console": "file:../console", @@ -28710,7 +28710,7 @@ }, "packages/prettier-config": { "name": "@deephaven/prettier-config", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "peerDependencies": { "prettier": "^3.0.0" @@ -28718,7 +28718,7 @@ }, "packages/react-hooks": { "name": "@deephaven/react-hooks", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "^3.29.0", @@ -28736,7 +28736,7 @@ }, "packages/redux": { "name": "@deephaven/redux", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/jsapi-types": "file:../jsapi-types", @@ -28754,7 +28754,7 @@ }, "packages/storage": { "name": "@deephaven/storage", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "@deephaven/filters": "file:../filters", @@ -28770,7 +28770,7 @@ }, "packages/stylelint-config": { "name": "@deephaven/stylelint-config", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "dependencies": { "stylelint-config-prettier-scss": "^0.0.1", @@ -28782,13 +28782,13 @@ }, "packages/tsconfig": { "name": "@deephaven/tsconfig", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0" }, "packages/util": {}, "packages/utils": { "name": "@deephaven/utils", - "version": "0.48.0", + "version": "0.49.0", "license": "Apache-2.0", "engines": { "node": ">=16" diff --git a/packages/app-utils/CHANGELOG.md b/packages/app-utils/CHANGELOG.md index 8907ed1f8..a1c229007 100644 --- a/packages/app-utils/CHANGELOG.md +++ b/packages/app-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/app-utils + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/app-utils diff --git a/packages/app-utils/package.json b/packages/app-utils/package.json index 415ba8370..88649e070 100644 --- a/packages/app-utils/package.json +++ b/packages/app-utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/app-utils", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven App Utils", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/auth-plugins/CHANGELOG.md b/packages/auth-plugins/CHANGELOG.md index 127b0127b..c0a1c905e 100644 --- a/packages/auth-plugins/CHANGELOG.md +++ b/packages/auth-plugins/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/auth-plugins + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/auth-plugins diff --git a/packages/auth-plugins/package.json b/packages/auth-plugins/package.json index 2a9ffa0ea..804be5c5e 100644 --- a/packages/auth-plugins/package.json +++ b/packages/auth-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/auth-plugins", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Auth Plugins", "keywords": [ "Deephaven", diff --git a/packages/babel-preset/CHANGELOG.md b/packages/babel-preset/CHANGELOG.md index fa8c68f5f..5a9c51cae 100644 --- a/packages/babel-preset/CHANGELOG.md +++ b/packages/babel-preset/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/babel-preset + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/babel-preset diff --git a/packages/babel-preset/package.json b/packages/babel-preset/package.json index 965c8488b..1a97da6f6 100644 --- a/packages/babel-preset/package.json +++ b/packages/babel-preset/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/babel-preset", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Babel preset", "repository": { "type": "git", diff --git a/packages/chart/CHANGELOG.md b/packages/chart/CHANGELOG.md index 45d0a3b98..696b6c72d 100644 --- a/packages/chart/CHANGELOG.md +++ b/packages/chart/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/chart + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/chart diff --git a/packages/chart/package.json b/packages/chart/package.json index 299cd2ae8..b402af83e 100644 --- a/packages/chart/package.json +++ b/packages/chart/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/chart", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Chart", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/code-studio/CHANGELOG.md b/packages/code-studio/CHANGELOG.md index 9e2233a66..23df8cf8d 100644 --- a/packages/code-studio/CHANGELOG.md +++ b/packages/code-studio/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + + +### Code Refactoring + +* Improve table saver to always use the correct service worker ([#1515](https://github.com/deephaven/web-client-ui/issues/1515)) ([2488e52](https://github.com/deephaven/web-client-ui/commit/2488e52fdeda16604be2516c30782d6127be9317)), closes [#766](https://github.com/deephaven/web-client-ui/issues/766) + + +### BREAKING CHANGES + +* `TableSaver` now expects the service worker to send it +a complete URL for download instead of just a file name. DHE will need +to adjust its `serviceWorker.js` to incorporate the same changes from +this PR. + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/code-studio diff --git a/packages/code-studio/package.json b/packages/code-studio/package.json index 5813b20e4..7a3649bce 100644 --- a/packages/code-studio/package.json +++ b/packages/code-studio/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/code-studio", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Code Studio", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index aa59f0b68..ccfd52ae1 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/components + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/components diff --git a/packages/components/package.json b/packages/components/package.json index 416d1b3f0..95fe29010 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/components", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven React component library", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/console/CHANGELOG.md b/packages/console/CHANGELOG.md index 8ef1456f1..43ba6abb8 100644 --- a/packages/console/CHANGELOG.md +++ b/packages/console/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/console + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/console diff --git a/packages/console/package.json b/packages/console/package.json index df4f50a23..3060b0f88 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/console", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Console", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/dashboard-core-plugins/CHANGELOG.md b/packages/dashboard-core-plugins/CHANGELOG.md index 8515aaff1..58a04cba0 100644 --- a/packages/dashboard-core-plugins/CHANGELOG.md +++ b/packages/dashboard-core-plugins/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/dashboard-core-plugins + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) diff --git a/packages/dashboard-core-plugins/package.json b/packages/dashboard-core-plugins/package.json index 4fb5ab34f..21d67f8e8 100644 --- a/packages/dashboard-core-plugins/package.json +++ b/packages/dashboard-core-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/dashboard-core-plugins", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Dashboard Core Plugins", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/dashboard/CHANGELOG.md b/packages/dashboard/CHANGELOG.md index a2603ad35..d298e3c2f 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/dashboard + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/dashboard diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 8884a3b5a..e35dae266 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/dashboard", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Dashboard", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/embed-chart/CHANGELOG.md b/packages/embed-chart/CHANGELOG.md index aef7f6bbd..a9efab1aa 100644 --- a/packages/embed-chart/CHANGELOG.md +++ b/packages/embed-chart/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/embed-chart + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/embed-chart diff --git a/packages/embed-chart/package.json b/packages/embed-chart/package.json index 04204ca4d..27d56598d 100644 --- a/packages/embed-chart/package.json +++ b/packages/embed-chart/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-chart", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Embedded Chart", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/embed-grid/CHANGELOG.md b/packages/embed-grid/CHANGELOG.md index 32ab53c5d..7d4d9df0d 100644 --- a/packages/embed-grid/CHANGELOG.md +++ b/packages/embed-grid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/embed-grid + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/embed-grid diff --git a/packages/embed-grid/package.json b/packages/embed-grid/package.json index 2c1ed5b47..2ec71e39e 100644 --- a/packages/embed-grid/package.json +++ b/packages/embed-grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-grid", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Embedded Grid", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index 74068a72d..edc97add2 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/eslint-config + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/eslint-config diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 39791149f..550253210 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/eslint-config", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven ESLint configuration", "repository": { "type": "git", diff --git a/packages/file-explorer/CHANGELOG.md b/packages/file-explorer/CHANGELOG.md index b49aad5a2..136e7497c 100644 --- a/packages/file-explorer/CHANGELOG.md +++ b/packages/file-explorer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/file-explorer + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/file-explorer diff --git a/packages/file-explorer/package.json b/packages/file-explorer/package.json index baf62b1d6..556c1494c 100644 --- a/packages/file-explorer/package.json +++ b/packages/file-explorer/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/file-explorer", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven File Explorer React component", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/filters/CHANGELOG.md b/packages/filters/CHANGELOG.md index 0ec5b65d1..0a3aa5ce6 100644 --- a/packages/filters/CHANGELOG.md +++ b/packages/filters/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/filters + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/filters diff --git a/packages/filters/package.json b/packages/filters/package.json index 3801311c5..1f8021e1b 100644 --- a/packages/filters/package.json +++ b/packages/filters/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/filters", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Filters", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/golden-layout/CHANGELOG.md b/packages/golden-layout/CHANGELOG.md index 671fc8e71..752d45463 100644 --- a/packages/golden-layout/CHANGELOG.md +++ b/packages/golden-layout/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/golden-layout + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/golden-layout diff --git a/packages/golden-layout/package.json b/packages/golden-layout/package.json index ab74ea523..e8cc8362a 100644 --- a/packages/golden-layout/package.json +++ b/packages/golden-layout/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/golden-layout", - "version": "0.48.0", + "version": "0.49.0", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", "description": "A multi-screen javascript Layout manager", diff --git a/packages/grid/CHANGELOG.md b/packages/grid/CHANGELOG.md index 61aed3939..356980549 100644 --- a/packages/grid/CHANGELOG.md +++ b/packages/grid/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + + +### Bug Fixes + +* Table overflow button has lower priority than grid tokens ([#1510](https://github.com/deephaven/web-client-ui/issues/1510)) ([32e6d20](https://github.com/deephaven/web-client-ui/commit/32e6d208d0977092f315caa122b8ab23f0fc110a)), closes [#1480](https://github.com/deephaven/web-client-ui/issues/1480) + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/grid diff --git a/packages/grid/package.json b/packages/grid/package.json index b9f83df76..8781faa09 100644 --- a/packages/grid/package.json +++ b/packages/grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/grid", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven React grid component", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 6683b8206..8206b6020 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/icons + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/icons diff --git a/packages/icons/package.json b/packages/icons/package.json index 9a3f3a1bc..c3397ad0d 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/icons", - "version": "0.48.0", + "version": "0.49.0", "description": "Icons used in Deephaven client apps. Extends vscode-codicons to be font-awesome svg-core compatible and adds additional icons in a similar style.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/iris-grid/CHANGELOG.md b/packages/iris-grid/CHANGELOG.md index b1f2a7bf3..5e889f0fe 100644 --- a/packages/iris-grid/CHANGELOG.md +++ b/packages/iris-grid/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + + +### Code Refactoring + +* Improve table saver to always use the correct service worker ([#1515](https://github.com/deephaven/web-client-ui/issues/1515)) ([2488e52](https://github.com/deephaven/web-client-ui/commit/2488e52fdeda16604be2516c30782d6127be9317)), closes [#766](https://github.com/deephaven/web-client-ui/issues/766) + + +### Features + +* Update go to row panel's row number with cursorRow ([#1508](https://github.com/deephaven/web-client-ui/issues/1508)) ([23ab5cc](https://github.com/deephaven/web-client-ui/commit/23ab5cc0f798304a274ed2de2473cc9c74ca84cb)), closes [#1406](https://github.com/deephaven/web-client-ui/issues/1406) + + +### BREAKING CHANGES + +* `TableSaver` now expects the service worker to send it +a complete URL for download instead of just a file name. DHE will need +to adjust its `serviceWorker.js` to incorporate the same changes from +this PR. + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) diff --git a/packages/iris-grid/package.json b/packages/iris-grid/package.json index e1298fe6d..8154de5aa 100644 --- a/packages/iris-grid/package.json +++ b/packages/iris-grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/iris-grid", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Iris Grid", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-bootstrap/CHANGELOG.md b/packages/jsapi-bootstrap/CHANGELOG.md index e5e8af20f..7de5c1344 100644 --- a/packages/jsapi-bootstrap/CHANGELOG.md +++ b/packages/jsapi-bootstrap/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/jsapi-bootstrap + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) diff --git a/packages/jsapi-bootstrap/package.json b/packages/jsapi-bootstrap/package.json index e15e314c3..beeda1ce2 100644 --- a/packages/jsapi-bootstrap/package.json +++ b/packages/jsapi-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-bootstrap", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven JSAPI Bootstrap", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-components/CHANGELOG.md b/packages/jsapi-components/CHANGELOG.md index ca6f956e3..f04a05d5e 100644 --- a/packages/jsapi-components/CHANGELOG.md +++ b/packages/jsapi-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/jsapi-components + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/jsapi-components diff --git a/packages/jsapi-components/package.json b/packages/jsapi-components/package.json index 9c172977f..f791dd9d8 100644 --- a/packages/jsapi-components/package.json +++ b/packages/jsapi-components/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-components", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven JSAPI Components", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-shim/CHANGELOG.md b/packages/jsapi-shim/CHANGELOG.md index 10c015b2f..b526e8a0d 100644 --- a/packages/jsapi-shim/CHANGELOG.md +++ b/packages/jsapi-shim/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/jsapi-shim + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/jsapi-shim diff --git a/packages/jsapi-shim/package.json b/packages/jsapi-shim/package.json index eae7cd791..63d00992b 100644 --- a/packages/jsapi-shim/package.json +++ b/packages/jsapi-shim/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-shim", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven JSAPI Shim", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-types/CHANGELOG.md b/packages/jsapi-types/CHANGELOG.md index c5dddafe7..d1b585a23 100644 --- a/packages/jsapi-types/CHANGELOG.md +++ b/packages/jsapi-types/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/jsapi-types + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/jsapi-types diff --git a/packages/jsapi-types/package.json b/packages/jsapi-types/package.json index cdcea4402..6e4d69098 100644 --- a/packages/jsapi-types/package.json +++ b/packages/jsapi-types/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-types", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven JSAPI Types", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-utils/CHANGELOG.md b/packages/jsapi-utils/CHANGELOG.md index 06fa42981..c346d60ca 100644 --- a/packages/jsapi-utils/CHANGELOG.md +++ b/packages/jsapi-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/jsapi-utils + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/jsapi-utils diff --git a/packages/jsapi-utils/package.json b/packages/jsapi-utils/package.json index b1ca3e77b..00a401650 100644 --- a/packages/jsapi-utils/package.json +++ b/packages/jsapi-utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-utils", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven JSAPI Utils", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/log/CHANGELOG.md b/packages/log/CHANGELOG.md index 9d4e76f73..b9dc117be 100644 --- a/packages/log/CHANGELOG.md +++ b/packages/log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/log + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/log diff --git a/packages/log/package.json b/packages/log/package.json index ad82be83c..acae3fe9a 100644 --- a/packages/log/package.json +++ b/packages/log/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/log", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Logger", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/mocks/CHANGELOG.md b/packages/mocks/CHANGELOG.md index cbdb5a05f..6de1ba9e7 100644 --- a/packages/mocks/CHANGELOG.md +++ b/packages/mocks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/mocks + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/mocks diff --git a/packages/mocks/package.json b/packages/mocks/package.json index 25584cc7b..619a8b026 100644 --- a/packages/mocks/package.json +++ b/packages/mocks/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/mocks", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Mocks for common libraries", "repository": { "type": "git", diff --git a/packages/plugin/CHANGELOG.md b/packages/plugin/CHANGELOG.md index 9450e9469..a9bf4987d 100644 --- a/packages/plugin/CHANGELOG.md +++ b/packages/plugin/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + + +### Bug Fixes + +* Plugin peer dependencies do not get versions from lerna ([#1517](https://github.com/deephaven/web-client-ui/issues/1517)) ([322f6ff](https://github.com/deephaven/web-client-ui/commit/322f6ff7d2ef949774bab61527e5e1c32f344da6)) + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/plugin diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 62d4ecfa7..b11674c3a 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/plugin", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven JS Plugin Core", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/pouch-storage/CHANGELOG.md b/packages/pouch-storage/CHANGELOG.md index 18e19e882..0aca86e9f 100644 --- a/packages/pouch-storage/CHANGELOG.md +++ b/packages/pouch-storage/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/pouch-storage + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/pouch-storage diff --git a/packages/pouch-storage/package.json b/packages/pouch-storage/package.json index d3533dd5b..b48481ea4 100644 --- a/packages/pouch-storage/package.json +++ b/packages/pouch-storage/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/pouch-storage", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Storage based on PouchDB", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/prettier-config/CHANGELOG.md b/packages/prettier-config/CHANGELOG.md index 885e13ff2..ee9799db1 100644 --- a/packages/prettier-config/CHANGELOG.md +++ b/packages/prettier-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/prettier-config + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/prettier-config diff --git a/packages/prettier-config/package.json b/packages/prettier-config/package.json index 6576dd487..f3270af88 100644 --- a/packages/prettier-config/package.json +++ b/packages/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/prettier-config", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Prettier configuration", "repository": { "type": "git", diff --git a/packages/react-hooks/CHANGELOG.md b/packages/react-hooks/CHANGELOG.md index 70fafe40b..7f70d2f76 100644 --- a/packages/react-hooks/CHANGELOG.md +++ b/packages/react-hooks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/react-hooks + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/react-hooks diff --git a/packages/react-hooks/package.json b/packages/react-hooks/package.json index 09107e8b8..348194e01 100644 --- a/packages/react-hooks/package.json +++ b/packages/react-hooks/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/react-hooks", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven React hooks library", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/redux/CHANGELOG.md b/packages/redux/CHANGELOG.md index e239c0067..5105cb08e 100644 --- a/packages/redux/CHANGELOG.md +++ b/packages/redux/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/redux + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/redux diff --git a/packages/redux/package.json b/packages/redux/package.json index 60cd38bb9..d41cea909 100644 --- a/packages/redux/package.json +++ b/packages/redux/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/redux", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Redux", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/storage/CHANGELOG.md b/packages/storage/CHANGELOG.md index d9079f8c9..d00c8f9d5 100644 --- a/packages/storage/CHANGELOG.md +++ b/packages/storage/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/storage + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/storage diff --git a/packages/storage/package.json b/packages/storage/package.json index e824bd6d9..f77bb79c6 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/storage", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Storage abstract classes for storing app data", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/stylelint-config/CHANGELOG.md b/packages/stylelint-config/CHANGELOG.md index 90b60c70f..4fef0542d 100644 --- a/packages/stylelint-config/CHANGELOG.md +++ b/packages/stylelint-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/stylelint-config + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/stylelint-config diff --git a/packages/stylelint-config/package.json b/packages/stylelint-config/package.json index 9794d5775..f07407a34 100644 --- a/packages/stylelint-config/package.json +++ b/packages/stylelint-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/stylelint-config", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Stylelint configuration", "repository": { "type": "git", diff --git a/packages/tsconfig/CHANGELOG.md b/packages/tsconfig/CHANGELOG.md index 765790922..fdfa39823 100644 --- a/packages/tsconfig/CHANGELOG.md +++ b/packages/tsconfig/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/tsconfig + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/tsconfig diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index 0550c5a23..f6b370d95 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/tsconfig", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven TypeScript configuration", "repository": { "type": "git", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 2c9fd8f91..44a27dd14 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.49.0](https://github.com/deephaven/web-client-ui/compare/v0.48.0...v0.49.0) (2023-09-15) + +**Note:** Version bump only for package @deephaven/utils + + + + + # [0.48.0](https://github.com/deephaven/web-client-ui/compare/v0.47.0...v0.48.0) (2023-09-12) **Note:** Version bump only for package @deephaven/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index 1e940a952..69e8527c1 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/utils", - "version": "0.48.0", + "version": "0.49.0", "description": "Deephaven Utils", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0",