From b0a8658471a48b2018f400da8d53079c9ef3325a Mon Sep 17 00:00:00 2001 From: mikebender Date: Mon, 16 Dec 2024 10:18:46 -0500 Subject: [PATCH] v0.85.7 --- CHANGELOG.md | 6 ++++++ lerna.json | 2 +- package-lock.json | 20 ++++++++++---------- 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/code-studio/CHANGELOG.md | 4 ++++ packages/code-studio/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-widget/CHANGELOG.md | 4 ++++ packages/embed-widget/package.json | 2 +- packages/grid/CHANGELOG.md | 6 ++++++ packages/grid/package.json | 2 +- packages/iris-grid/CHANGELOG.md | 6 ++++++ packages/iris-grid/package.json | 2 +- packages/plugin/CHANGELOG.md | 4 ++++ packages/plugin/package.json | 2 +- packages/redux/CHANGELOG.md | 4 ++++ packages/redux/package.json | 2 +- 23 files changed, 71 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d70f9166cd..412f1f3eed 100644 --- a/CHANGELOG.md +++ b/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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +### Bug Fixes + +- Input Tables cannot paste more rows than number of visible rows ([#2313](https://github.com/deephaven/web-client-ui/issues/2313)) ([bb424d1](https://github.com/deephaven/web-client-ui/commit/bb424d1cd7943e832a6790112176a7600be193a7)) + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 55bfcf5a91..00f753e7e7 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useNx": false, - "version": "0.85.6", + "version": "0.85.7", "command": { "publish": { "distTag": "release-v0.85" diff --git a/package-lock.json b/package-lock.json index 47e73437ff..5e7a294d70 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28909,7 +28909,7 @@ }, "packages/app-utils": { "name": "@deephaven/app-utils", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "3.35.1", @@ -29002,7 +29002,7 @@ }, "packages/auth-plugins": { "name": "@deephaven/auth-plugins", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -29101,7 +29101,7 @@ }, "packages/code-studio": { "name": "@deephaven/code-studio", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "3.35.1", @@ -29279,7 +29279,7 @@ }, "packages/dashboard": { "name": "@deephaven/dashboard", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -29310,7 +29310,7 @@ }, "packages/dashboard-core-plugins": { "name": "@deephaven/dashboard-core-plugins", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@deephaven/chart": "file:../chart", @@ -29757,7 +29757,7 @@ }, "packages/embed-widget": { "name": "@deephaven/embed-widget", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@deephaven/app-utils": "file:../app-utils", @@ -29861,7 +29861,7 @@ }, "packages/grid": { "name": "@deephaven/grid", - "version": "0.85.3", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@deephaven/utils": "file:../utils", @@ -29900,7 +29900,7 @@ }, "packages/iris-grid": { "name": "@deephaven/iris-grid", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -30056,7 +30056,7 @@ }, "packages/plugin": { "name": "@deephaven/plugin", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -30154,7 +30154,7 @@ }, "packages/redux": { "name": "@deephaven/redux", - "version": "0.85.6", + "version": "0.85.7", "license": "Apache-2.0", "dependencies": { "@deephaven/jsapi-types": "^1.0.0-dev0.34.0", diff --git a/packages/app-utils/CHANGELOG.md b/packages/app-utils/CHANGELOG.md index abb4cbe1e6..13f41bc0dc 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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +**Note:** Version bump only for package @deephaven/app-utils + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) **Note:** Version bump only for package @deephaven/app-utils diff --git a/packages/app-utils/package.json b/packages/app-utils/package.json index d59dc5612b..c197b6bff4 100644 --- a/packages/app-utils/package.json +++ b/packages/app-utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/app-utils", - "version": "0.85.6", + "version": "0.85.7", "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 9cb710846f..975ea4628f 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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +**Note:** Version bump only for package @deephaven/auth-plugins + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) **Note:** Version bump only for package @deephaven/auth-plugins diff --git a/packages/auth-plugins/package.json b/packages/auth-plugins/package.json index 60868db443..6e9c8efe43 100644 --- a/packages/auth-plugins/package.json +++ b/packages/auth-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/auth-plugins", - "version": "0.85.6", + "version": "0.85.7", "description": "Deephaven Auth Plugins", "keywords": [ "Deephaven", diff --git a/packages/code-studio/CHANGELOG.md b/packages/code-studio/CHANGELOG.md index 54fe169725..b8db3439ae 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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +**Note:** Version bump only for package @deephaven/code-studio + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) **Note:** Version bump only for package @deephaven/code-studio diff --git a/packages/code-studio/package.json b/packages/code-studio/package.json index bb80642c59..f11df9fa54 100644 --- a/packages/code-studio/package.json +++ b/packages/code-studio/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/code-studio", - "version": "0.85.6", + "version": "0.85.7", "description": "Deephaven Code Studio", "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 673dceef35..968cc17786 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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +**Note:** Version bump only for package @deephaven/dashboard-core-plugins + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) **Note:** Version bump only for package @deephaven/dashboard-core-plugins diff --git a/packages/dashboard-core-plugins/package.json b/packages/dashboard-core-plugins/package.json index 8b543815ce..f1097c52fe 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.85.6", + "version": "0.85.7", "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 74dad93272..06b0c0ac74 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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +**Note:** Version bump only for package @deephaven/dashboard + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) **Note:** Version bump only for package @deephaven/dashboard diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index f4de526641..bac004fa82 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/dashboard", - "version": "0.85.6", + "version": "0.85.7", "description": "Deephaven Dashboard", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/embed-widget/CHANGELOG.md b/packages/embed-widget/CHANGELOG.md index 34a00530e9..7d10022117 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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +**Note:** Version bump only for package @deephaven/embed-widget + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) **Note:** Version bump only for package @deephaven/embed-widget diff --git a/packages/embed-widget/package.json b/packages/embed-widget/package.json index 188e4f7404..e362906be2 100644 --- a/packages/embed-widget/package.json +++ b/packages/embed-widget/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-widget", - "version": "0.85.6", + "version": "0.85.7", "description": "Deephaven Embedded Widget", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/grid/CHANGELOG.md b/packages/grid/CHANGELOG.md index 0867d22516..4c9a805b9d 100644 --- a/packages/grid/CHANGELOG.md +++ b/packages/grid/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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +### Bug Fixes + +- Input Tables cannot paste more rows than number of visible rows ([#2313](https://github.com/deephaven/web-client-ui/issues/2313)) ([bb424d1](https://github.com/deephaven/web-client-ui/commit/bb424d1cd7943e832a6790112176a7600be193a7)) + ## [0.85.3](https://github.com/deephaven/web-client-ui/compare/v0.85.2...v0.85.3) (2024-07-23) ### Bug Fixes diff --git a/packages/grid/package.json b/packages/grid/package.json index 1c3eb9340a..5d7e242971 100644 --- a/packages/grid/package.json +++ b/packages/grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/grid", - "version": "0.85.3", + "version": "0.85.7", "description": "Deephaven React grid component", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/iris-grid/CHANGELOG.md b/packages/iris-grid/CHANGELOG.md index aacfbee937..14d1bd9f4a 100644 --- a/packages/iris-grid/CHANGELOG.md +++ b/packages/iris-grid/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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +### Bug Fixes + +- Input Tables cannot paste more rows than number of visible rows ([#2313](https://github.com/deephaven/web-client-ui/issues/2313)) ([bb424d1](https://github.com/deephaven/web-client-ui/commit/bb424d1cd7943e832a6790112176a7600be193a7)) + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) ### Bug Fixes diff --git a/packages/iris-grid/package.json b/packages/iris-grid/package.json index 7dc8828f93..5278659d62 100644 --- a/packages/iris-grid/package.json +++ b/packages/iris-grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/iris-grid", - "version": "0.85.6", + "version": "0.85.7", "description": "Deephaven Iris Grid", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/plugin/CHANGELOG.md b/packages/plugin/CHANGELOG.md index 55e3140e42..f378ea5489 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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +**Note:** Version bump only for package @deephaven/plugin + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) **Note:** Version bump only for package @deephaven/plugin diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 13a4b493aa..bb7741c75f 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/plugin", - "version": "0.85.6", + "version": "0.85.7", "description": "Deephaven JS Plugin Core", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/redux/CHANGELOG.md b/packages/redux/CHANGELOG.md index 0c7fbd04b6..d12a2ea805 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.85.7](https://github.com/deephaven/web-client-ui/compare/v0.85.6...v0.85.7) (2024-12-16) + +**Note:** Version bump only for package @deephaven/redux + ## [0.85.6](https://github.com/deephaven/web-client-ui/compare/v0.85.5...v0.85.6) (2024-09-27) **Note:** Version bump only for package @deephaven/redux diff --git a/packages/redux/package.json b/packages/redux/package.json index 59f2e8cb2d..104ec4eca1 100644 --- a/packages/redux/package.json +++ b/packages/redux/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/redux", - "version": "0.85.6", + "version": "0.85.7", "description": "Deephaven Redux", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0",