From 139388d77f94f561938bb4ce61da4780387ef4a9 Mon Sep 17 00:00:00 2001 From: mikebender Date: Mon, 3 Jun 2024 10:29:27 -0400 Subject: [PATCH] v0.80.0 --- CHANGELOG.md | 13 ++++ lerna.json | 2 +- package-lock.json | 68 ++++++++++---------- packages/app-utils/CHANGELOG.md | 4 ++ packages/app-utils/package.json | 2 +- packages/auth-plugins/CHANGELOG.md | 4 ++ packages/auth-plugins/package.json | 2 +- packages/babel-preset/CHANGELOG.md | 4 ++ packages/babel-preset/package.json | 2 +- packages/chart/CHANGELOG.md | 4 ++ packages/chart/package.json | 2 +- packages/code-studio/CHANGELOG.md | 4 ++ packages/code-studio/package.json | 2 +- packages/components/CHANGELOG.md | 6 ++ packages/components/package.json | 2 +- packages/console/CHANGELOG.md | 4 ++ packages/console/package.json | 2 +- packages/dashboard-core-plugins/CHANGELOG.md | 4 ++ packages/dashboard-core-plugins/package.json | 2 +- packages/dashboard/CHANGELOG.md | 4 ++ packages/dashboard/package.json | 2 +- packages/embed-chart/CHANGELOG.md | 4 ++ packages/embed-chart/package.json | 2 +- packages/embed-grid/CHANGELOG.md | 4 ++ packages/embed-grid/package.json | 2 +- packages/embed-widget/CHANGELOG.md | 4 ++ packages/embed-widget/package.json | 2 +- packages/eslint-config/CHANGELOG.md | 4 ++ packages/eslint-config/package.json | 2 +- packages/file-explorer/CHANGELOG.md | 4 ++ packages/file-explorer/package.json | 2 +- packages/filters/CHANGELOG.md | 4 ++ packages/filters/package.json | 2 +- packages/golden-layout/CHANGELOG.md | 4 ++ packages/golden-layout/package.json | 2 +- packages/grid/CHANGELOG.md | 4 ++ packages/grid/package.json | 2 +- packages/icons/CHANGELOG.md | 4 ++ packages/icons/package.json | 2 +- packages/iris-grid/CHANGELOG.md | 7 ++ packages/iris-grid/package.json | 2 +- packages/jsapi-bootstrap/CHANGELOG.md | 4 ++ packages/jsapi-bootstrap/package.json | 2 +- packages/jsapi-components/CHANGELOG.md | 4 ++ packages/jsapi-components/package.json | 2 +- packages/jsapi-shim/CHANGELOG.md | 4 ++ packages/jsapi-shim/package.json | 2 +- packages/jsapi-utils/CHANGELOG.md | 4 ++ packages/jsapi-utils/package.json | 2 +- packages/log/CHANGELOG.md | 4 ++ packages/log/package.json | 2 +- packages/mocks/CHANGELOG.md | 4 ++ packages/mocks/package.json | 2 +- packages/plugin/CHANGELOG.md | 4 ++ packages/plugin/package.json | 2 +- packages/pouch-storage/CHANGELOG.md | 4 ++ packages/pouch-storage/package.json | 2 +- packages/prettier-config/CHANGELOG.md | 4 ++ packages/prettier-config/package.json | 2 +- packages/react-hooks/CHANGELOG.md | 4 ++ packages/react-hooks/package.json | 2 +- packages/redux/CHANGELOG.md | 4 ++ packages/redux/package.json | 2 +- packages/storage/CHANGELOG.md | 4 ++ packages/storage/package.json | 2 +- packages/stylelint-config/CHANGELOG.md | 4 ++ packages/stylelint-config/package.json | 2 +- packages/tsconfig/CHANGELOG.md | 4 ++ packages/tsconfig/package.json | 2 +- packages/utils/CHANGELOG.md | 4 ++ packages/utils/package.json | 2 +- 71 files changed, 223 insertions(+), 69 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c67db05701..4bf8f3534d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +### Bug Fixes + +- Console error when opening context menu on tree table ([#2047](https://github.com/deephaven/web-client-ui/issues/2047)) ([77bea7d](https://github.com/deephaven/web-client-ui/commit/77bea7d2badbc37eb3259a85873d6f900a07be14)) +- DH-17076 LayoutHints on TreeTables were not being applied ([#2041](https://github.com/deephaven/web-client-ui/issues/2041)) ([2977dd2](https://github.com/deephaven/web-client-ui/commit/2977dd262ae4b8dcd82e4622fb6f61b6c4e7b06e)), closes [#2035](https://github.com/deephaven/web-client-ui/issues/2035) +- e2e - docker logs fix ([#2032](https://github.com/deephaven/web-client-ui/issues/2032)) ([297ad9a](https://github.com/deephaven/web-client-ui/commit/297ad9ab765ac7859479b7b8e531f1c88f8d82db)), closes [#2031](https://github.com/deephaven/web-client-ui/issues/2031) +- e2e test status reporting incorrectly ([#2045](https://github.com/deephaven/web-client-ui/issues/2045)) ([8e6b6da](https://github.com/deephaven/web-client-ui/commit/8e6b6da4a4ccfc9bc852318e16ea5f0c4d21bf64)), closes [#2044](https://github.com/deephaven/web-client-ui/issues/2044) + +### Features + +- Re-export Spectrum button and checkbox ([#2039](https://github.com/deephaven/web-client-ui/issues/2039)) ([0e22d11](https://github.com/deephaven/web-client-ui/commit/0e22d11a6da3f189530b2ce0c8751d44097db971)) + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 2083e50476..08829cca6e 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useNx": false, - "version": "0.79.0", + "version": "0.80.0", "command": { "publish": { "distTag": "latest" diff --git a/package-lock.json b/package-lock.json index 782197fbae..c5e91c9ab6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28319,7 +28319,7 @@ }, "packages/app-utils": { "name": "@deephaven/app-utils", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "3.33.1", @@ -28408,7 +28408,7 @@ }, "packages/auth-plugins": { "name": "@deephaven/auth-plugins", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28435,7 +28435,7 @@ }, "packages/babel-preset": { "name": "@deephaven/babel-preset", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@babel/core": "^7.20.0", @@ -28450,7 +28450,7 @@ }, "packages/chart": { "name": "@deephaven/chart", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28507,7 +28507,7 @@ }, "packages/code-studio": { "name": "@deephaven/code-studio", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "3.33.1", @@ -28602,7 +28602,7 @@ }, "packages/components": { "name": "@deephaven/components", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "3.33.1", @@ -28644,7 +28644,7 @@ }, "packages/console": { "name": "@deephaven/console", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/chart": "file:../chart", @@ -28684,7 +28684,7 @@ }, "packages/dashboard": { "name": "@deephaven/dashboard", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28715,7 +28715,7 @@ }, "packages/dashboard-core-plugins": { "name": "@deephaven/dashboard-core-plugins", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/chart": "file:../chart", @@ -29152,17 +29152,17 @@ }, "packages/embed-chart": { "name": "@deephaven/embed-chart", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0" }, "packages/embed-grid": { "name": "@deephaven/embed-grid", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0" }, "packages/embed-widget": { "name": "@deephaven/embed-widget", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/app-utils": "file:../app-utils", @@ -29193,7 +29193,7 @@ }, "packages/eslint-config": { "name": "@deephaven/eslint-config", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "eslint-config-airbnb": "^19.0.4", @@ -29212,7 +29212,7 @@ }, "packages/file-explorer": { "name": "@deephaven/file-explorer", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -29238,7 +29238,7 @@ }, "packages/filters": { "name": "@deephaven/filters", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "engines": { "node": ">=16" @@ -29246,7 +29246,7 @@ }, "packages/golden-layout": { "name": "@deephaven/golden-layout", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -29266,7 +29266,7 @@ }, "packages/grid": { "name": "@deephaven/grid", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/utils": "file:../utils", @@ -29288,7 +29288,7 @@ }, "packages/icons": { "name": "@deephaven/icons", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@fortawesome/fontawesome-common-types": "^6.1.1" @@ -29305,7 +29305,7 @@ }, "packages/iris-grid": { "name": "@deephaven/iris-grid", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -29352,7 +29352,7 @@ }, "packages/jsapi-bootstrap": { "name": "@deephaven/jsapi-bootstrap", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -29372,7 +29372,7 @@ }, "packages/jsapi-components": { "name": "@deephaven/jsapi-components", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -29401,7 +29401,7 @@ }, "packages/jsapi-shim": { "name": "@deephaven/jsapi-shim", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/jsapi-types": "1.0.0-dev0.34.0", @@ -29422,7 +29422,7 @@ }, "packages/jsapi-utils": { "name": "@deephaven/jsapi-utils", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/filters": "file:../filters", @@ -29441,7 +29441,7 @@ }, "packages/log": { "name": "@deephaven/log", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "event-target-shim": "^6.0.2" @@ -29452,7 +29452,7 @@ }, "packages/mocks": { "name": "@deephaven/mocks", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "peerDependencies": { "jest": "29.x" @@ -29460,7 +29460,7 @@ }, "packages/plugin": { "name": "@deephaven/plugin", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -29510,7 +29510,7 @@ }, "packages/pouch-storage": { "name": "@deephaven/pouch-storage", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/console": "file:../console", @@ -29531,7 +29531,7 @@ }, "packages/prettier-config": { "name": "@deephaven/prettier-config", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "peerDependencies": { "prettier": "^3.0.0" @@ -29539,7 +29539,7 @@ }, "packages/react-hooks": { "name": "@deephaven/react-hooks", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "3.33.1", @@ -29558,7 +29558,7 @@ }, "packages/redux": { "name": "@deephaven/redux", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/jsapi-types": "1.0.0-dev0.34.0", @@ -29578,7 +29578,7 @@ }, "packages/storage": { "name": "@deephaven/storage", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "@deephaven/filters": "file:../filters", @@ -29594,7 +29594,7 @@ }, "packages/stylelint-config": { "name": "@deephaven/stylelint-config", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "dependencies": { "stylelint-config-prettier-scss": "^0.0.1", @@ -29606,13 +29606,13 @@ }, "packages/tsconfig": { "name": "@deephaven/tsconfig", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0" }, "packages/util": {}, "packages/utils": { "name": "@deephaven/utils", - "version": "0.79.0", + "version": "0.80.0", "license": "Apache-2.0", "engines": { "node": ">=16" diff --git a/packages/app-utils/CHANGELOG.md b/packages/app-utils/CHANGELOG.md index 469a50a9db..fe0c029e02 100644 --- a/packages/app-utils/CHANGELOG.md +++ b/packages/app-utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/app-utils + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/app-utils diff --git a/packages/app-utils/package.json b/packages/app-utils/package.json index c2b2a7e3c6..6247167f45 100644 --- a/packages/app-utils/package.json +++ b/packages/app-utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/app-utils", - "version": "0.79.0", + "version": "0.80.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 18fcd96044..5f00cd34bd 100644 --- a/packages/auth-plugins/CHANGELOG.md +++ b/packages/auth-plugins/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/auth-plugins + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/auth-plugins diff --git a/packages/auth-plugins/package.json b/packages/auth-plugins/package.json index 213cc01788..aa2c23e721 100644 --- a/packages/auth-plugins/package.json +++ b/packages/auth-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/auth-plugins", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven Auth Plugins", "keywords": [ "Deephaven", diff --git a/packages/babel-preset/CHANGELOG.md b/packages/babel-preset/CHANGELOG.md index 526771d412..89c46efd6a 100644 --- a/packages/babel-preset/CHANGELOG.md +++ b/packages/babel-preset/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/babel-preset + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/babel-preset diff --git a/packages/babel-preset/package.json b/packages/babel-preset/package.json index ae1cdb86db..69b087ec6a 100644 --- a/packages/babel-preset/package.json +++ b/packages/babel-preset/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/babel-preset", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven Babel preset", "repository": { "type": "git", diff --git a/packages/chart/CHANGELOG.md b/packages/chart/CHANGELOG.md index d2664f6cea..058e854b37 100644 --- a/packages/chart/CHANGELOG.md +++ b/packages/chart/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/chart + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/chart diff --git a/packages/chart/package.json b/packages/chart/package.json index 96f63418dd..85c82c034c 100644 --- a/packages/chart/package.json +++ b/packages/chart/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/chart", - "version": "0.79.0", + "version": "0.80.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 859e420efc..3c5bc9c195 100644 --- a/packages/code-studio/CHANGELOG.md +++ b/packages/code-studio/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/code-studio + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/code-studio/package.json b/packages/code-studio/package.json index d94287bc8c..3dd4be2386 100644 --- a/packages/code-studio/package.json +++ b/packages/code-studio/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/code-studio", - "version": "0.79.0", + "version": "0.80.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 67dd32a893..836b4d777b 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +### Features + +- Re-export Spectrum button and checkbox ([#2039](https://github.com/deephaven/web-client-ui/issues/2039)) ([0e22d11](https://github.com/deephaven/web-client-ui/commit/0e22d11a6da3f189530b2ce0c8751d44097db971)) + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/components/package.json b/packages/components/package.json index 348f8d6bf0..4adc1c90e3 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/components", - "version": "0.79.0", + "version": "0.80.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 3357b89f5e..c8d544bf85 100644 --- a/packages/console/CHANGELOG.md +++ b/packages/console/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/console + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/console/package.json b/packages/console/package.json index 353198bd47..aacf19dc82 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/console", - "version": "0.79.0", + "version": "0.80.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 54dbe87197..aebd5128a2 100644 --- a/packages/dashboard-core-plugins/CHANGELOG.md +++ b/packages/dashboard-core-plugins/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/dashboard-core-plugins + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/dashboard-core-plugins/package.json b/packages/dashboard-core-plugins/package.json index 3f1d681bfd..f31244466f 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.79.0", + "version": "0.80.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 cd6ee3fec5..4e4ca000b1 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/dashboard + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index ff4f95cc37..f42541ef18 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/dashboard", - "version": "0.79.0", + "version": "0.80.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 2f831de7ff..72e3040631 100644 --- a/packages/embed-chart/CHANGELOG.md +++ b/packages/embed-chart/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/embed-chart + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/embed-chart diff --git a/packages/embed-chart/package.json b/packages/embed-chart/package.json index e5e0241008..19d1612b80 100644 --- a/packages/embed-chart/package.json +++ b/packages/embed-chart/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-chart", - "version": "0.79.0", + "version": "0.80.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 33318f13fe..e4de92b52d 100644 --- a/packages/embed-grid/CHANGELOG.md +++ b/packages/embed-grid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/embed-grid + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/embed-grid diff --git a/packages/embed-grid/package.json b/packages/embed-grid/package.json index 946d95fdfb..c6b3a0092b 100644 --- a/packages/embed-grid/package.json +++ b/packages/embed-grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-grid", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven Embedded Grid", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/embed-widget/CHANGELOG.md b/packages/embed-widget/CHANGELOG.md index 99d2ada147..aed6279599 100644 --- a/packages/embed-widget/CHANGELOG.md +++ b/packages/embed-widget/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/embed-widget + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/embed-widget/package.json b/packages/embed-widget/package.json index 682158d9e8..594ba52188 100644 --- a/packages/embed-widget/package.json +++ b/packages/embed-widget/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-widget", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven Embedded Widget", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index 0f8792cf54..6cd46f504d 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/eslint-config + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/eslint-config diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 8407857709..083873c366 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/eslint-config", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven ESLint configuration", "repository": { "type": "git", diff --git a/packages/file-explorer/CHANGELOG.md b/packages/file-explorer/CHANGELOG.md index c19da701b3..dcd2029495 100644 --- a/packages/file-explorer/CHANGELOG.md +++ b/packages/file-explorer/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/file-explorer + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/file-explorer diff --git a/packages/file-explorer/package.json b/packages/file-explorer/package.json index 6bb91c44d9..1394451e11 100644 --- a/packages/file-explorer/package.json +++ b/packages/file-explorer/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/file-explorer", - "version": "0.79.0", + "version": "0.80.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 417dc348ba..bbbcec8dd9 100644 --- a/packages/filters/CHANGELOG.md +++ b/packages/filters/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/filters + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/filters diff --git a/packages/filters/package.json b/packages/filters/package.json index a1682a0277..ddf08d0d81 100644 --- a/packages/filters/package.json +++ b/packages/filters/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/filters", - "version": "0.79.0", + "version": "0.80.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 f9d8ea0ec0..e268470245 100644 --- a/packages/golden-layout/CHANGELOG.md +++ b/packages/golden-layout/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/golden-layout + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/golden-layout/package.json b/packages/golden-layout/package.json index bbae75c3ef..fbe2e4f7e4 100644 --- a/packages/golden-layout/package.json +++ b/packages/golden-layout/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/golden-layout", - "version": "0.79.0", + "version": "0.80.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 e035ff7bb9..ed91bcb8e5 100644 --- a/packages/grid/CHANGELOG.md +++ b/packages/grid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/grid + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/grid diff --git a/packages/grid/package.json b/packages/grid/package.json index 447a1ffcfc..efbc92b5f9 100644 --- a/packages/grid/package.json +++ b/packages/grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/grid", - "version": "0.79.0", + "version": "0.80.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 040c80a588..363c8ec46d 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/icons + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/icons diff --git a/packages/icons/package.json b/packages/icons/package.json index ae199bd00d..e1f9397f9b 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/icons", - "version": "0.79.0", + "version": "0.80.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 e38aa413ce..699e7e8aed 100644 --- a/packages/iris-grid/CHANGELOG.md +++ b/packages/iris-grid/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +### Bug Fixes + +- Console error when opening context menu on tree table ([#2047](https://github.com/deephaven/web-client-ui/issues/2047)) ([77bea7d](https://github.com/deephaven/web-client-ui/commit/77bea7d2badbc37eb3259a85873d6f900a07be14)) +- DH-17076 LayoutHints on TreeTables were not being applied ([#2041](https://github.com/deephaven/web-client-ui/issues/2041)) ([2977dd2](https://github.com/deephaven/web-client-ui/commit/2977dd262ae4b8dcd82e4622fb6f61b6c4e7b06e)), closes [#2035](https://github.com/deephaven/web-client-ui/issues/2035) + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/iris-grid/package.json b/packages/iris-grid/package.json index 3d2767ec87..bb1595c82b 100644 --- a/packages/iris-grid/package.json +++ b/packages/iris-grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/iris-grid", - "version": "0.79.0", + "version": "0.80.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 ad57aca71b..ab54fbaec9 100644 --- a/packages/jsapi-bootstrap/CHANGELOG.md +++ b/packages/jsapi-bootstrap/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/jsapi-bootstrap + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/jsapi-bootstrap diff --git a/packages/jsapi-bootstrap/package.json b/packages/jsapi-bootstrap/package.json index ca06d6e09e..17f53bd784 100644 --- a/packages/jsapi-bootstrap/package.json +++ b/packages/jsapi-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-bootstrap", - "version": "0.79.0", + "version": "0.80.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 49acf48c3d..ad06c698fd 100644 --- a/packages/jsapi-components/CHANGELOG.md +++ b/packages/jsapi-components/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/jsapi-components + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/jsapi-components diff --git a/packages/jsapi-components/package.json b/packages/jsapi-components/package.json index 712de7f593..ed160ff374 100644 --- a/packages/jsapi-components/package.json +++ b/packages/jsapi-components/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-components", - "version": "0.79.0", + "version": "0.80.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 a682e228f9..85053581f9 100644 --- a/packages/jsapi-shim/CHANGELOG.md +++ b/packages/jsapi-shim/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/jsapi-shim + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/jsapi-shim diff --git a/packages/jsapi-shim/package.json b/packages/jsapi-shim/package.json index cdb061a96a..f8ad10bfe2 100644 --- a/packages/jsapi-shim/package.json +++ b/packages/jsapi-shim/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-shim", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven JSAPI Shim", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-utils/CHANGELOG.md b/packages/jsapi-utils/CHANGELOG.md index af530ac1a5..f7fdf4ca19 100644 --- a/packages/jsapi-utils/CHANGELOG.md +++ b/packages/jsapi-utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/jsapi-utils + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/jsapi-utils/package.json b/packages/jsapi-utils/package.json index 4d4e3f4212..e2f17f474c 100644 --- a/packages/jsapi-utils/package.json +++ b/packages/jsapi-utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-utils", - "version": "0.79.0", + "version": "0.80.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 6120bc5914..d398622231 100644 --- a/packages/log/CHANGELOG.md +++ b/packages/log/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/log + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/log diff --git a/packages/log/package.json b/packages/log/package.json index 377868cd80..85638f3a44 100644 --- a/packages/log/package.json +++ b/packages/log/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/log", - "version": "0.79.0", + "version": "0.80.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 c28b7b8fca..f33b699130 100644 --- a/packages/mocks/CHANGELOG.md +++ b/packages/mocks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/mocks + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/mocks diff --git a/packages/mocks/package.json b/packages/mocks/package.json index f3f1e28e0b..c17c4585ed 100644 --- a/packages/mocks/package.json +++ b/packages/mocks/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/mocks", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven Mocks for common libraries", "repository": { "type": "git", diff --git a/packages/plugin/CHANGELOG.md b/packages/plugin/CHANGELOG.md index 7c06826337..763ed8bdc7 100644 --- a/packages/plugin/CHANGELOG.md +++ b/packages/plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/plugin + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/plugin diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 509f91de3b..d8d62956f9 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/plugin", - "version": "0.79.0", + "version": "0.80.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 e389660453..8122e0a9bb 100644 --- a/packages/pouch-storage/CHANGELOG.md +++ b/packages/pouch-storage/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/pouch-storage + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/pouch-storage diff --git a/packages/pouch-storage/package.json b/packages/pouch-storage/package.json index 06231bdd6e..c1572963bb 100644 --- a/packages/pouch-storage/package.json +++ b/packages/pouch-storage/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/pouch-storage", - "version": "0.79.0", + "version": "0.80.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 97f3e685f5..ac6f00742a 100644 --- a/packages/prettier-config/CHANGELOG.md +++ b/packages/prettier-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/prettier-config + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/prettier-config diff --git a/packages/prettier-config/package.json b/packages/prettier-config/package.json index b4d3845eda..ff6db55dac 100644 --- a/packages/prettier-config/package.json +++ b/packages/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/prettier-config", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven Prettier configuration", "repository": { "type": "git", diff --git a/packages/react-hooks/CHANGELOG.md b/packages/react-hooks/CHANGELOG.md index b88ce8567a..e449405a95 100644 --- a/packages/react-hooks/CHANGELOG.md +++ b/packages/react-hooks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/react-hooks + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) ### Bug Fixes diff --git a/packages/react-hooks/package.json b/packages/react-hooks/package.json index 51d6c24ea0..0dd6b6a6b8 100644 --- a/packages/react-hooks/package.json +++ b/packages/react-hooks/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/react-hooks", - "version": "0.79.0", + "version": "0.80.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 3fba730d5d..52ad743e08 100644 --- a/packages/redux/CHANGELOG.md +++ b/packages/redux/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/redux + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/redux diff --git a/packages/redux/package.json b/packages/redux/package.json index c2680b7061..35867ce8bf 100644 --- a/packages/redux/package.json +++ b/packages/redux/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/redux", - "version": "0.79.0", + "version": "0.80.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 b95594234f..ed3ba7dc20 100644 --- a/packages/storage/CHANGELOG.md +++ b/packages/storage/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/storage + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/storage diff --git a/packages/storage/package.json b/packages/storage/package.json index 5be8e316fd..c17bdc9125 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/storage", - "version": "0.79.0", + "version": "0.80.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 1947fe3e77..b3b1c91840 100644 --- a/packages/stylelint-config/CHANGELOG.md +++ b/packages/stylelint-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/stylelint-config + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/stylelint-config diff --git a/packages/stylelint-config/package.json b/packages/stylelint-config/package.json index bd52c3e958..e75c19d13c 100644 --- a/packages/stylelint-config/package.json +++ b/packages/stylelint-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/stylelint-config", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven Stylelint configuration", "repository": { "type": "git", diff --git a/packages/tsconfig/CHANGELOG.md b/packages/tsconfig/CHANGELOG.md index 40b166550e..339b3c99f0 100644 --- a/packages/tsconfig/CHANGELOG.md +++ b/packages/tsconfig/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/tsconfig + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/tsconfig diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index 05433b4a39..2f00aac4ec 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/tsconfig", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven TypeScript configuration", "repository": { "type": "git", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 9462e93821..b33fa46843 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.80.0](https://github.com/deephaven/web-client-ui/compare/v0.79.0...v0.80.0) (2024-06-03) + +**Note:** Version bump only for package @deephaven/utils + # [0.79.0](https://github.com/deephaven/web-client-ui/compare/v0.78.0...v0.79.0) (2024-05-24) **Note:** Version bump only for package @deephaven/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index d1ed4c603c..16d94b8484 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/utils", - "version": "0.79.0", + "version": "0.80.0", "description": "Deephaven Utils", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0",