From 354e94321135d997d7b99ca602eaf3c786d4cee7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 19:24:04 +0000 Subject: [PATCH] Update web version 0.62.0 (#5114) Release notes https://github.com/deephaven/web-client-ui/releases/tag/v0.62.0 # [0.62.0](https://github.com/deephaven/web-client-ui/compare/v0.61.1...v0.62.0) (2024-02-05) ### Features * Add ObjectFetcher context and useObjectFetcher hook ([#1753](https://github.com/deephaven/web-client-ui/issues/1753)) ([2cd46ce](https://github.com/deephaven/web-client-ui/commit/2cd46ce2d5107553d3f91933294638a5fb183245)) ### BREAKING CHANGES * - `useConnection` is moved from `jsapi-components` package to `app-utils` package - Should only be used at the app level, as there could be multiple connections - `WidgetDefinition` has been renamed to `WidgetDescriptor` Co-authored-by: deephaven-internal --- web/client-ui/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/client-ui/Dockerfile b/web/client-ui/Dockerfile index 5dd566abed0..738490eec27 100644 --- a/web/client-ui/Dockerfile +++ b/web/client-ui/Dockerfile @@ -2,10 +2,10 @@ FROM deephaven/node:local-build WORKDIR /usr/src/app # Most of the time, these versions are the same, except in cases where a patch only affects one of the packages -ARG WEB_VERSION=0.61.1 -ARG GRID_VERSION=0.61.1 -ARG CHART_VERSION=0.61.1 -ARG WIDGET_VERSION=0.61.1 +ARG WEB_VERSION=0.62.0 +ARG GRID_VERSION=0.62.0 +ARG CHART_VERSION=0.62.0 +ARG WIDGET_VERSION=0.62.0 # Pull in the published code-studio package from npmjs and extract is RUN set -eux; \