Holoviews Versions Save

With Holoviews, your data visualizes itself.

v1.15.3

1 year ago

This release contains a small number of important bug fixes and adds support for Python 3.11. Many thanks to our maintainers @Hoxbro, @maximlt and @jlstevens.

Bug Fixes:

  • Fix for empty opts warning and incorrect clearing semantics (#5496)
  • Fix potential race condition in the Options system (#5535)

Enhancements:

  • Add support to Python 3.11 (#5513)
  • Cleanup the top __init__ module (#5516)

Documentation:

  • Fixes to release notes and CHANGELOG (#5506)

v1.15.2

1 year ago

This release contains a small number of important bug fixes. Many thanks to @stanwest for his contribution and thank you to our maintainers @Hoxbro, @maximlt, @jlstevens, @jbednar, and @philippjfr.

Bug fixes:

  • Fix support for jupyterlite (#5502)
  • Improve error message for hv.opts without a plotting backend (#5494)
  • Fix warnings exposed in CI logs (#5470)
  • Thanks to @maximlt for various CI fixes (#5484, #5498, #5485)

Enhancement:

  • Allow Dimension objects to accept a dictionary specification (#5333)
  • Refactor to remove iterrows for loop from connect_edges_pd (#5473)

Deprecations:

Promoted DeprecationWarning to FutureWarning when using pandas DataFrames with non-string column names. This will not change any functionality but will start warning users about functionality that will be deprecated in future.

  • Upgrade warning for invalid dataframe column names (#5472)

v1.15.1

1 year ago

This release contains a small number of important bug fixes. Many thanks to all our new contributors @MarcSkovMadsen, @j-svensmark, @ceball, @droumis, @ddrinka, @Jhsmit and @stanwest as well as a special thanks to @Hoxbro for his many bug fixes. An additional thank you goes out to @maximlt, @philippjfr, @jbednar and @jlstevens for ongoing maintenance and support.

Enhancements:

  • Sort output of decimate operation so that it can be used with connected Elements (Curve, Area, etc.) (#5452)
  • Ensure HoloViews is importable from a pyodide webworker (#5410)
  • Add support for stepwise Area plots (#5390)
  • Better error message for hv.Cycle when incompatible backend activated (#5379)
  • Improvements to VSCode notebook support (#5398)
  • Protect matplotlib tests from global styles (#5311)
  • Faster hashing for arrays and pandas objects (#5455)
  • Add pre-commit hooks to CI actions and fixes to pytest configuration (#5385, #5440)

Bug Fixes:

  • Allow import of numpy 1.12 (#5367)
  • Fixes handling of iterables in Overlays (#5320)
  • Always return a string when using hv.Dimension.pprint_value (#5383)
  • Support widgets in slices for loc and iloc (#5352)
  • Take account of labeled dimension in Bokeh plotting classes (#5404)
  • Fix handling of pandas Period ranges (#5393)
  • Fixed declaration of Scatter to Selection1DExpr (#5413)
  • Ensure rangesupdate event fires on all plots with linked axes (#5465)
  • Fixed fallback to shapely spatial select (#5468)
  • Many thanks to @Hoxbro for many miscellaneous plotting fixes, including fixes to plotting of BoxWhisker, VectorField elements (#5397, #5450, #5400, #5409, #5460))
  • Fixes to documentation building GitHub Action (#5320, (#5320))

Documentation:

  • Introduced module documentation (#5362)
  • Remove Python 2 references from README (#5365)
  • Update call to panel add_periodic_callback in Bokeh gallery example (#5436)
  • Added reference to example in RangeToolLink (#5435)

API:

In future, HoloViews will not allow non-string values for pandas DataFrame column names. This deprecation cycle starts by issuing a DeprecationWarning that should not be visible to users.

  • Issue DeprecationWarning for invalid DataFrame column types (#5457)

v1.15.0

1 year ago

This is a major release with a large number of new features and bug fixes, as well as updates to Python and Panel compatibility.

Many thanks to the numerous users who filed bug reports, tested development versions, and contributed a number of new features and bug fixes, including special thanks to @ablythed @ahuang11 @douglas-raillard-arm @FloLangenfeld @HoxBro @ianthomas23 @jenssss @pepijndevos @peterroelants @stas-sl @Yura52 for their contributions. In addition, thanks to the maintainers @jbednar, @maximlt, @jlstevens and @philippjfr for contributing to this release.

Compatibility:

  • Python 2 support has finally been dropped with 1.14.9 as the last release supporting Python 2
  • HoloViews now requires panel >0.13.1 (https://github.com/holoviz/holoviews/pull/4329)
  • Colormaps for the output of the datashade operation have changed to address https://github.com/holoviz/datashader/issues/357; see rescale_discrete_levels below. To revert to the old colorbar behavior, set ColorbarPlot.rescale_discrete_levels = False in the bokeh or mpl plotting modules as appropriate.
  • Updated Sankey algorithm means that some users may need to update the node_padding parameter for plots generated with earlier releases.

Major features:

After a long period of hotfix releases for the 1.14.9 series, many new features on the master branch have been released. Features relating to datashader support, linked selection and improvements to the Bokeh plotting backend are called out in their own sections.

Datashader features:

The following new features have been added to the datashader support in HoloViews, mainly focused on Datashader's new support for antialiasing lines as well as the new rescale_discrete_levels colormapping option.

New linked selection features:

New features for the Bokeh plotting backend:

Other enhancements:

Bug fixes:

Documentation:

The following improvements to the documentation have been made:

Testing infrastructure:

Many thanks to @maximlt for his work maintaining and fixing the testing infrastructure across too many PRs to list here.

v1.14.9

2 years ago

This release contains a small number of important bug fixes as well as support for the newly added antialiasing option for line rendering in datashader. Many thanks to @andriyot, @Hoxbro, @pepijndevos, @stas-sl, @TheoMathurin, @maximlt, @jlstevens, @jbednar, and @philippjfr.

Enhancements:

  • Improvements to extension loading, improving visual appearance in JupyterLab when no logo is used and a check to avoid loading unnecessary JavaScript (#5216, #5249)
  • Add support for setting antialiased line_width on datashader line aggregation as well as pixel_ratio setting (#5264, #5288)
  • Added options to customize hover line_width|cap|dash properties (#5211)
  • Restored Python 2 compatibility that lapsed due to lack of CI testing since 1.14.3. This is expected to be the last release with Python 2 support. (#5298)

Bug fixes:

  • Fix to respect series order in stacked area plot (#5236)
  • Support buffer streams of unspecified length (#5247)
  • Fixed log axis lower bound when data minimum is <= 0 (#5246)
  • Declared GitHub project URL in setup.py (#5227)
  • Fixed streaming Psutil example application (#5243)
  • Respecting Renderer’s center property for HoloViews pane (#5197)
  • Fix vmin/vmax deprecation in HeatMap plot for matplotlib > 3.3 (#5300)

Documentation:

  • Updated Large data guide to reflect changes in Datashader and antialiasing support (#5267, #5290)

v1.14.8

2 years ago

February 15, 2022

This release contains a small number of important bug fixes as well as fixes required for Python 3.9 and 3.10 support. Many thanks to @Hoxbro, @maximlt, @jlstevens, @jbednar, and @philippjfr.

Bug fixes:

  • Fixed xarray validation for aliased coordinate (#5169)
  • Fixed xaxis/yaxis options with Matplotlib (#5200)
  • Fixed nested widgets by handling list or tuple values in resolve_dependent_value utility (#5184)
  • Fixed issue handling multiple widgets without names (#5185)
  • Fix overlay of two-level categorical plots and HLine (#5203)
  • Added support for Ibis > 2.0 (#5204)
  • Allow lower dimensional views on arbitrary dimensioned elements (#5208)
  • Fix escaping of HTML on Div element (#5209)
  • Miscellaneous fixes to unit tests, including cudf test fixes as well as addition of Python 3.9 and 3.10 to the test matrix (#5166, #5199, #5201, #5206)

v1.14.7

2 years ago

This release contains a small number of important bug fixes. Many thanks to @douglas-raillard-arm, @jenssss, @w31t1, @Hoxbro, @martinfleis, @maximlt, @jlstevens, @jbednar, and @philippjfr.

Bug fixes:

  • Support xyzservices.TileProvider as hv.Tiles input (#5062)
  • Allow reversed layout/overlay binary operators for + and * to be used with custom objects (#5073)
  • Fix internal numpy.round usage (#5095)
  • Remove dependency on recent Panel release by importing bokeh version from util module (#5103)
  • Add missing bounds for the cache_size Parameter (#5105)
  • Add current_key property to DynamicMap (#5106)
  • Pin freetype on Windows to avoid matplotlib error (#5109)
  • Handle the empty string as a group name (#5131)
  • Do not merge partially overlapping Stream callbacks (#5133)
  • Fix Violin matplotlib rendering with non-finite values (#5135)
  • Fix matplotlib colorbar labeling for dim expressions (#5137)
  • Fix datetime clipping on RangeXY stream (#5138)
  • Ensure FreehandDraw renders when styles are set (#5139)
  • Validate dimensionality of xarray interface data (#5140)
  • Preserve cols when overlaying on layout (#5141)
  • Fix Bars legend error when overlaid with annotation (#5142)
  • Fix plotly Bar plots containing NaNs (#5143)
  • Do not raise deprecated .opts warning for empty groups (#5144)
  • Handle unsigned integer dtype in datashader aggregate operation (#5149)
  • Delay projection comparison to optimize geoviews (#5152)
  • Utility to convert datetime64 to int64 and test suite maintenance (#5157)
  • Fix for Contours consistent of empty and nonempty paths (#5162)
  • Fixed docs:
    • Fix fig_bounds description in Plotting_with_Matplotlib.ipynb (#4983)
    • Fix broken link in Gridded user guide (#5098)
  • Improved docs:
    • Switch to the Pydata Sphinx theme (#5163)

v1.14.6

2 years ago

This is a hotfix release with a number of important bug fixes. Most importantly, this version supports the recent Bokeh 2.4.0 release. Many thanks to @geronimos, @peterroelants, @douglas-raillard-arm, @philippjfr, and @jlstevens for contributing the fixes in this release.

Bug fixes:

  • Compatibility for bokeh 2.4 and fixes to processing of falsey properties and visible style property (#5059, #5063)
  • Stricter validation of data.interface before calling subclass (#5050)
  • Fix to prevent options being ignored in some cases (#5016)
  • Improvements to linked selections including support for linked selection lasso for cudf and improved warnings (#5044, #5051)
  • Respect apply_ranges at range computation level (#5081)
  • Keep ordering of kdim when stacking Areas (#4971)
  • Apply hover postprocessor on updates (#5039)

v1.14.5

2 years ago

This is a hotfix release with a number of important bug fixes. Most importantly, this version supports for the recent pandas 1.3.0 release. Many thanks to @kgullikson88, @philippjfr and @jlstevens for contributing the fixes in this release.

Bug fixes:

  • Support for pandas>=1.3 (#5013)
  • Various bug fixes relating to dim transforms including the use of parameters in slices and the use of getattribute (#4993, #5001, #5005)

v1.14.4

3 years ago

This release primarily focuses on a number of bug fixes. Many thanks to @Hoxbro, @nitrocalcite, @brl0, @hyamanieu, @rafiyr, @jbednar, @jlstevens and @philippjfr for contributing.

Enhancements:

  • Reenable SaveTool for plots with Tiles (#4922)
  • Enable dask TriMesh rasterization using datashader (#4935)
  • Use dataframe index for TriMesh node indices (#4936)

Bug fixes:

  • Fix hover for stacked Bars (#4892)
  • Check before dereferencing Bokeh colormappers (#4902)
  • Fix multiple parameterized inputs to dim (#4903)
  • Fix floating point error when generating bokeh Palettes (#4911)
  • Fix bug using dimensions with label on Bars (#4929)
  • Do not reverse colormaps with '_r' suffix a second time (#4931)
  • Fix remapping of Params stream parameter names (#4932)
  • Ensure Area.stack keeps labels (#4937)

Documentation:

  • Updated Dashboards user guide to show pn.bind first (#4907)
  • Updated docs to correctly declare Scatter kdims (#4914)

Compatibility:

Unfortunately a number of tile sources are no longer publicly available. Attempting to use these tile sources will now issue warnings unless hv.config.raise_deprecated_tilesource_exception is set to True in which case exceptions will be raised instead.

  • The Wikipedia tile source is no longer available as it is no longer being served outside the wikimedia domain. As one of the most frequently used tile sources, HoloViews now issues a warning and switches to the OpenStreetMap (OSM) tile source instead.
  • The CartoMidnight and CartoEco tile sources are no longer publicly available. Attempting to use these tile sources will result in a deprecation warning.