Skip to content

Commit d0025b0

Browse files
authored
Add CHANGELOG for v1.14.2 (#4850)
1 parent 2200351 commit d0025b0

2 files changed

Lines changed: 142 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 73 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,72 @@
1+
Version 1.14.2
2+
==============
3+
4+
This release adds support for Bokeh 2.3, introduces a number of minor
5+
enhancements, miscellaneous documentation improvements and a good number
6+
of bug fixes.
7+
8+
Many thanks to the many contributors to this release, whether directly
9+
by submitting PRs or by reporting issues and making
10+
suggestions. Specifically, we would like to thank @philippjfr for the
11+
Bokeh 2.3 compatibility updates, @kcpevey, @timgates42, and @scottstanie
12+
for documentation improvements as well as @Hoxbro and @LunarLanding for
13+
various bug fixes. In addition, thanks to the maintainers @jbednar,
14+
@jlstevens and @philippjfr for contributing to this release.
15+
16+
Enhancements:
17+
18+
- Bokeh 2.3 compatibility
19+
([#4805](https://github.com/holoviz/holoviews/pull/4805),
20+
[#4809](https://github.com/holoviz/holoviews/pull/4809))
21+
- Supporting dictionary streams parameter in DynamicMaps and operations
22+
([#4787](https://github.com/holoviz/holoviews/pull/4787),
23+
[#4818](https://github.com/holoviz/holoviews/pull/4818),
24+
[#4822](https://github.com/holoviz/holoviews/pull/4822))
25+
- Support spatialpandas DaskGeoDataFrame
26+
([#4792](https://github.com/holoviz/holoviews/pull/4792))
27+
- Disable zoom on axis for geographic plots
28+
([#4812](https://github.com/holoviz/holoviews/pull/4812)
29+
- Add support for non-aligned data in Area stack classmethod
30+
([#4836](https://github.com/holoviz/holoviews/pull/4836))
31+
- Handle arrays and datetime ticks
32+
([#4831](https://github.com/holoviz/holoviews/pull/4831))
33+
- Support single-value numpy array as input to HLine and VLine
34+
([#4798](https://github.com/holoviz/holoviews/pull/4798))
35+
36+
Bug fixes:
37+
38+
- Ensure link_inputs parameter on operations is passed to apply
39+
([#4795](https://github.com/holoviz/holoviews/pull/4795))
40+
- Fix for muted option on overlaid Bokeh plots
41+
([#4830](https://github.com/holoviz/holoviews/pull/4830))
42+
- Check for nested dim dependencies
43+
([#4785](https://github.com/holoviz/holoviews/pull/4785))
44+
- Fixed np.nanmax call when computing ranges
45+
([#4847](https://github.com/holoviz/holoviews/pull/4847))
46+
- Fix for Dimension pickling
47+
([#4843](https://github.com/holoviz/holoviews/pull/4843))
48+
- Fixes for dask backed elements in plotting
49+
([#4813](https://github.com/holoviz/holoviews/pull/4813))
50+
- Handle isfinite for NumPy and Pandas masked arrays
51+
([#4817](https://github.com/holoviz/holoviews/pull/4817))
52+
- Fix plotting Graph on top of Tiles/Annotation
53+
([#4828](https://github.com/holoviz/holoviews/pull/4828))
54+
- Miscellaneous fixes for the Bokeh plotting extension
55+
([#4814](https://github.com/holoviz/holoviews/pull/4814),
56+
[#4839](https://github.com/holoviz/holoviews/pull/4839))
57+
- Miscellaneous fixes for index based linked selections
58+
([#4776](https://github.com/holoviz/holoviews/pull/4776))
59+
60+
Documentation:
61+
62+
- Expanded on Tap Stream example in Reference Gallery
63+
[#4782](https://github.com/holoviz/holoviews/pull/4782)
64+
- Miscellaneous typo and broken link fixes
65+
([#4783](https://github.com/holoviz/holoviews/pull/4783),
66+
[#4827](https://github.com/holoviz/holoviews/pull/4827),
67+
[#4844](https://github.com/holoviz/holoviews/pull/4844),
68+
[#4811](https://github.com/holoviz/holoviews/pull/4811))
69+
170
Version 1.14.1
271
==============
372

@@ -50,8 +119,8 @@ Major features:
50119
([#4686](https://github.com/holoviz/holoviews/pull/4686))
51120
- New IbisInterface
52121
([#4517](https://github.com/holoviz/holoviews/pull/4517))
53-
- Greatly improved Datashader `rasterize()`
54-
([#4567](https://github.com/holoviz/holoviews/pull/4567)).
122+
- Greatly improved Datashader `rasterize()`
123+
([#4567](https://github.com/holoviz/holoviews/pull/4567)).
55124
Previously, many of the features of Datashader were available only
56125
through `datashade`, which rendered data all the way to RGB pixels
57126
and thus prevented many client-side Bokeh features like hover,
@@ -63,7 +132,7 @@ Major features:
63132
the [Large Data User
64133
Guide](https://holoviews.org/user_guide/Large_Data.html) for more
65134
information.
66-
135+
67136
Enhancements:
68137

69138
- Implemented datashader aggregation of Rectangles
@@ -114,7 +183,7 @@ Compatibility:
114183
- Set histogram `normed` option to False by default
115184
([#4258](https://github.com/holoviz/holoviews/pull/4258))
116185
- The default colormap in holoviews is now 'kbc_r' instead of
117-
'fire'; see issue
186+
'fire'; see issue
118187
[#3500](https://github.com/holoviz/holoviews/issues/3500) for details.
119188
This change was made mainly because the highest value of the fire colormap
120189
is white, which meant data was often not visible against a white

doc/releases.rst

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,75 @@ Releases
44
Version 1.14
55
~~~~~~~~~~~~
66

7+
Version 1.14.2
8+
==============
9+
10+
This release adds support for Bokeh 2.3, introduces a number of minor
11+
enhancements, miscellaneous documentation improvements and a good number
12+
of bug fixes.
13+
14+
Many thanks to the many contributors to this release, whether directly
15+
by submitting PRs or by reporting issues and making suggestions.
16+
Specifically, we would like to thank @philippjfr for the Bokeh 2.3
17+
compatibility updates, @kcpevey, @timgates42, and @scottstanie for
18+
documentation improvements as well as @Hoxbro and @LunarLanding for
19+
various bug fixes. In addition, thanks to the maintainers @jbednar,
20+
@jlstevens and @philippjfr for contributing to this release.
21+
22+
Enhancements:
23+
24+
- Bokeh 2.3 compatibility
25+
(`#4805 <https://github.com/holoviz/holoviews/pull/4805>`__,
26+
`#4809 <https://github.com/holoviz/holoviews/pull/4809>`__)
27+
- Supporting dictionary streams parameter in DynamicMaps and operations
28+
(`#4787 <https://github.com/holoviz/holoviews/pull/4787>`__,
29+
`#4818 <https://github.com/holoviz/holoviews/pull/4818>`__,
30+
`#4822 <https://github.com/holoviz/holoviews/pull/4822>`__)
31+
- Support spatialpandas DaskGeoDataFrame
32+
(`#4792 <https://github.com/holoviz/holoviews/pull/4792>`__)
33+
- Disable zoom on axis for geographic plots
34+
(`#4812 <https://github.com/holoviz/holoviews/pull/4812>`__
35+
- Add support for non-aligned data in Area stack classmethod
36+
(`#4836 <https://github.com/holoviz/holoviews/pull/4836>`__)
37+
- Handle arrays and datetime ticks
38+
(`#4831 <https://github.com/holoviz/holoviews/pull/4831>`__)
39+
- Support single-value numpy array as input to HLine and VLine
40+
(`#4798 <https://github.com/holoviz/holoviews/pull/4798>`__)
41+
42+
Bug fixes:
43+
44+
- Ensure link_inputs parameter on operations is passed to apply
45+
(`#4795 <https://github.com/holoviz/holoviews/pull/4795>`__)
46+
- Fix for muted option on overlaid Bokeh plots
47+
(`#4830 <https://github.com/holoviz/holoviews/pull/4830>`__)
48+
- Check for nested dim dependencies
49+
(`#4785 <https://github.com/holoviz/holoviews/pull/4785>`__)
50+
- Fixed np.nanmax call when computing ranges
51+
(`#4847 <https://github.com/holoviz/holoviews/pull/4847>`__)
52+
- Fix for Dimension pickling
53+
(`#4843 <https://github.com/holoviz/holoviews/pull/4843>`__)
54+
- Fixes for dask backed elements in plotting
55+
(`#4813 <https://github.com/holoviz/holoviews/pull/4813>`__)
56+
- Handle isfinite for NumPy and Pandas masked arrays
57+
(`#4817 <https://github.com/holoviz/holoviews/pull/4817>`__)
58+
- Fix plotting Graph on top of Tiles/Annotation
59+
(`#4828 <https://github.com/holoviz/holoviews/pull/4828>`__)
60+
- Miscellaneous fixes for the Bokeh plotting extension
61+
(`#4814 <https://github.com/holoviz/holoviews/pull/4814>`__,
62+
`#4839 <https://github.com/holoviz/holoviews/pull/4839>`__)
63+
- Miscellaneous fixes for index based linked selections
64+
(`#4776 <https://github.com/holoviz/holoviews/pull/4776>`__)
65+
66+
Documentation:
67+
68+
- Expanded on Tap Stream example in Reference Gallery
69+
`#4782 <https://github.com/holoviz/holoviews/pull/4782>`__
70+
- Miscellaneous typo and broken link fixes
71+
(`#4783 <https://github.com/holoviz/holoviews/pull/4783>`__,
72+
`#4827 <https://github.com/holoviz/holoviews/pull/4827>`__,
73+
`#4844 <https://github.com/holoviz/holoviews/pull/4844>`__,
74+
`#4811 <https://github.com/holoviz/holoviews/pull/4811>`__)
75+
776
Version 1.14.1
877
==============
978

0 commit comments

Comments
 (0)