Skip to content

Latest commit

 

History

History
407 lines (252 loc) · 21.4 KB

CHANGELOG.md

File metadata and controls

407 lines (252 loc) · 21.4 KB

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

0.49.1 (2023-09-27)

Note: Version bump only for package @deephaven/code-studio

0.49.0 (2023-09-15)

Code Refactoring

  • Improve table saver to always use the correct service worker (#1515) (2488e52), closes #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 (2023-09-12)

Note: Version bump only for package @deephaven/code-studio

0.47.0 (2023-09-08)

Features

0.46.1 (2023-09-01)

Bug Fixes

0.46.0 (2023-08-18)

Bug Fixes

Build System

  • @deephaven/icons: Properly package icons and remove unnecessary files in dist (#1437) (ec7ccef)

BREAKING CHANGES

  • Monaco will need to be upgraded to ^0.41.0 in Enterprise to ensure compatibility

Tests Performed

  • Console Input
    • Cmd+F does nothing
    • Intellisense can be closed via Esc
  • Log tab
    • Esc does not close find input
    • Esc does clear selection when focus is in the log content
  • Code Editor
  • Verified that newline with leading space no longer crashes the browser tab a a
  • Wrote some Python code. Intellisense, syntax highlighting, and general typing experience seemed as expected
    • Execute full code + selected code successfully
  • @deephaven/icons: Any imports/aliasing to @deephaven/icons/dist should be removed and just read the package contents normally (e.g. DHE jest and vite configs for using community packages locally). See the changes to vite and jest configs in this change for how to update

0.45.1 (2023-08-01)

Note: Version bump only for package @deephaven/code-studio

0.45.0 (2023-07-31)

Note: Version bump only for package @deephaven/code-studio

0.44.1 (2023-07-11)

Note: Version bump only for package @deephaven/code-studio

0.44.0 (2023-07-07)

Bug Fixes

  • Use user permissions for iframes instead of query parameters (#1400) (8cf2bbd), closes #1337

0.43.0 (2023-07-07)

Bug Fixes

  • Use user permissions for iframes instead of query parameters (#1400) (8cf2bbd), closes #1337

0.42.0 (2023-06-29)

Reverts

0.41.1 (2023-06-08)

Bug Fixes

0.41.0 (2023-06-08)

Note: Version bump only for package @deephaven/code-studio

0.40.4 (2023-06-02)

Bug Fixes

  • DH-14657 Disconnect handling increase debounce timeout (#1347) (66bdad8)
  • panels menu should only open downwards (#1340) (a25be7f)

0.40.3 (2023-05-31)

Note: Version bump only for package @deephaven/code-studio

0.40.2 (2023-05-31)

Bug Fixes

  • Worker plugin definitions, optional panel wrapper for Dashboards (#1329) (c32ffbc)

0.40.1 (2023-05-24)

Note: Version bump only for package @deephaven/code-studio

0.40.0 (2023-05-19)

Bug Fixes

  • Search icon styleguide using prefixed string (#1300) (0d02ab9)

0.39.0 (2023-05-15)

Features

Reverts

BREAKING CHANGES

    • Components IrisGrid, Chart, ChartBuilder, AdvancedFilterCreator, GotoRow, IrisGridModelUpdater, TableCSVExporter get the JSAPI reference from the model prop. dh prop removed.
  • makeApi props in IrisGridPanel and ChartPanel removed.
  • Components Console, ConsoleMenu, ConsoleStatusBar now require the JSAPI instance in the dh prop.
  • ConsoleUtils: static methods isTableType, isWidgetType, isOpenableType, isFigureType, isPandas require JSAPI instance passed in the first argument.
  • SessionUtils: static methods createSessionWrapper, loadSessionWrapper require JSAPI instance passed in the first argument.
  • Class IrisGridModel requires JSAPI instance passed in the constructor args.
  • Components DashboardLayout, ObjectIcon has to be wrapped in ApiContext.Provider passing the JSAPI instance.
    • Class Formatter requires the JSAPI instance as the first argument.
  • Classes DateTimeColumnFormatter, DecimalColumnFormatter, IntegerColumnFormatter, TableColumnFormatter: static method isValid and constructor require the JSAPI instance in the first argument.
  • Component Chart requires the JSAPI instance passed in the new prop dh.
  • WidgetUtils: methods createChartModel, createGridModel methods require the JSAPI instance passed in the first argument.
  • Components DateTimeOptions, TableInput, useViewportData have to be wrapped in ApiContext.Provider passing the JSAPI instance.
  • SettingsUtils: methods isValidFormat and isFormatRuleValidForSave require the JSAPI instance passed in the first argument.
  • SessionUtils: methods createConnection, createCoreClient require the JSAPI instance passed in the first argument.
  • TableUtils static methods applyCustomColumns, applyFilter, applyNeverFilter, applySort converted to instance methods.
  • Components DropdownFilterPanel, Linker now get the JSAPI instance from redux store.
  • DecimalFormatContextMenu.getOptions, IntegerFormatContextMenu.getOptions now require the JSAPI instance in the first argument.
    • DateUtils static methods makeDateWrapper, getNextDate , parseDateRange now require the JSAPI object as the first argument.
  • IrisGridUtils static methods dehydrateIrisGridState, hydrateIrisGridState, hydrateQuickFilters, dehydrateAdvancedFilters, hydrateAdvancedFilters, dehydrateAdvancedFilterOptions, hydrateAdvancedFilterOptions, dehydratePendingDataMap, hydratePendingDataMap, dehydrateValue, hydrateValue, dehydrateDateTime, hydrateDateTime, hydrateLong, hydrateSort, applyTableSettings, getFiltersFromInputFilters, rangeSetFromRanges converted to instance methods. Consumers now need to create an IrisGridUtils instance and pass the JSAPI object to the constructor.
  • TableUtils static methods makeQuickFilter, makeQuickFilterFromComponent, makeQuickNumberFilter, makeQuickTextFilter, makeQuickBooleanFilter, makeQuickDateFilter, makeQuickDateFilterWithOperation, makeQuickCharFilter, makeAdvancedFilter, makeAdvancedValueFilter, makeFilterValue, makeFilterRawValue, makeValue, makeSelectValueFilter converted to instance methods. Consumers now need to create a TableUtils instance and pass the JSAPI object to the constructor.
  • IrisGridTableModel, IrisGridTableModelTemplate, IrisGridProxyModel constructors require the JSAPI object in the first argument.
  • IrisGridTestUtils.makeModel, IrisGridModelFactory.makeModel now require the JSAPI object in the first argument.
  • IrisGridContextMenuHandler constructor requires the JSAPI object in the second argument.
  • IrisGridPanel requires a new makeApi prop, a function that resolves with the JSAPI instance.
  • CrossColumnSearch.createSearchFilter requires the JSAPI object argument.
  • Components AdvancedFilterCreatorSelectValue, AdvancedFilterCreatorSelectValueList, ChartBuilder, GotoRow, IrisGrid, IrisGridModelUpdater, IrisGridPartitionSelector, PartitionSelectorSearch, TableCSVExporter, TableSaver, TreeTableViewportUpdater, RowFormatEditor, ColumnFormatEditor, ConditionEditor now require the JSAPI object passed in the new prop dh.
  • Components AdvancedFilterCreator, AdvancedFilterCreatorFilterItem require the TableUtils instance pass in the new prop tableUtils.
  • ConditionalFormattingUtils static methods getFormatColumns, isDateConditionValid require the JSAPI object in the first argument.
  • ConditionalFormattingAPIUtils static method makeRowFormatColumn requires the JSAPI object in the first argument.
    • ChartUtils class now needs to be instantiated with a JSAPI object, most of the methods converted from static to instance methods.
  • All ChartModelFactory methods require JSAPI object as the first argument.
  • FigureChartModel constructor requires JSAPI object as the first argument.

0.38.0 (2023-05-03)

Bug Fixes

Features

0.37.3 (2023-04-25)

Note: Version bump only for package @deephaven/code-studio

0.37.2 (2023-04-25)

Note: Version bump only for package @deephaven/code-studio

0.37.1 (2023-04-25)

Note: Version bump only for package @deephaven/code-studio

0.37.0 (2023-04-20)

Features

0.36.0 (2023-04-14)

Features

  • Display workerName and processInfoId in the console status bar (#1173) (85ce600)
  • Pass optional envoyPrefix query param to CoreClient constructor (#1219) (8b1e58c)

0.35.0 (2023-04-04)

Features

0.34.0 (2023-03-31)

Features

0.33.0 (2023-03-28)

Code Refactoring

BREAKING CHANGES

  • Renamed renderFileListItem to FileListItem. Renamed RenderFileListItemProps to FileListItemProps. Removed exports for ConsolePlugin.assertIsConsolePluginProps, GridPlugin.SUPPORTED_TYPES, FileList.getPathFromItem, FileList.DRAG_HOVER_TIMEOUT, FileList.getItemIcon, Grid.directionForKey, GotoRow.isIrisGridProxyModel, and Aggregations.SELECTABLE_OPTIONS. These were all only being consumed within their own file and are not consumed in enterprise
  • Selector Type removed from redux

0.32.0 (2023-03-10)

Note: Version bump only for package @deephaven/code-studio

0.31.1 (2023-03-03)

Note: Version bump only for package @deephaven/code-studio

0.31.0 (2023-03-03)

Bug Fixes

  • Add react-dom, redux and react-redux to remote component dependencies (#1127) (d6c8a98)
  • Fix the style guide (#1119) (e4a75a1)

Features

  • Improve text labels based on suggestions from chatGPT (#1118) (d852e49)

0.30.1 (2023-02-16)

Note: Version bump only for package @deephaven/code-studio

0.30.0 (2023-02-13)

Features

BREAKING CHANGES

  • The JS API packaged as a module is now required for the code-studio, embed-grid, and embed-chart applications. Existing (Enterprise) applications should be able to use jsapi-shim still and load the JS API using the old method.

0.29.1 (2023-02-10)

Note: Version bump only for package @deephaven/code-studio

0.29.0 (2023-02-03)

Note: Version bump only for package @deephaven/code-studio