Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Releases

## Version 1.6.3

This release introduces a number of performance improvements related to rendering of children in layouts and ESM components, a number of bug fixes and a number of documentation improvements. We are pleased to welcome @malemburg as a new contributor and want to thank @s-alexey, @Coderambling, @etihwo and our core maintainer team including @hoxbro, @ahuang11, @MarcSkovMadsen and @philippjfr for their contributions to this release.

### Enhancements

- Implement smarter `Column` child rendering [#7846](https://github.com/holoviz/panel/pull/7846)
- Optimize `ReactComponent` child renders [#7828](https://github.com/holoviz/panel/pull/7828)
- Add `indent` and `soft_tabs` options to `CodeEditor` [#7831](https://github.com/holoviz/panel/pull/7831)
- Allow creating `Param.widget` without instantiating object, speeding up `Widget.from_param` [#7867](https://github.com/holoviz/panel/pull/7867)

### Bug fixes

- Fix handling of React based `AnyWidgetComponent` types [#7820](https://github.com/holoviz/panel/pull/7820)
- Cache ESM render modules [#7827](https://github.com/holoviz/panel/pull/7827)
- Check for `None` in `select` function for `PyComponent` [#7837](https://github.com/holoviz/panel/pull/7837)
- Fix for `AttributeError` in `auth.py:CodeChallenge` OAuth login [#7844](https://github.com/holoviz/panel/pull/7844)
- Fix error when `old_objects` is empty in `_get_objects()` [#7842](https://github.com/holoviz/panel/pull/7842)
- Ensure `ReactiveESM` renders elements [#7853](https://github.com/holoviz/panel/pull/7853)
- Ensure ESM shared resources are watched properly [#7856](https://github.com/holoviz/panel/pull/7856)
- Fix Material design `Tabulator` header color [#7855](https://github.com/holoviz/panel/pull/7855)
- Ensure current view and selection lookups on `Tabulator` handle `None` case [#7858](https://github.com/holoviz/panel/pull/7858)
- Ensure `Modal` events are targeted to correct model [#7860](https://github.com/holoviz/panel/pull/7860)
- Ensure `ChatFeed` has inherent height [#7861](https://github.com/holoviz/panel/pull/7861)
- Ensure `Markdown` code blocks are always left aligned [#7862](https://github.com/holoviz/panel/pull/7862)
- Gracefully handle `ECharts` delayed rendering [#7869](https://github.com/holoviz/panel/pull/7869)

### Documentation

- List version agnostic wheel URLs in WASM standalone docs [#7857](https://github.com/holoviz/panel/pull/7857)
- Correct `ClassSelector` keyword in `build_todo.md` [#7819](https://github.com/holoviz/panel/pull/7819)
- Fix documentation of `--oauth-extra-params` [#7865](https://github.com/holoviz/panel/pull/7865)
- Fix minor issues in FastAPI docs [#7866](https://github.com/holoviz/panel/pull/7866)
- Clarify OAuth redirect uri [#7868](https://github.com/holoviz/panel/pull/7868)

## Version 1.6.2

This release primarily introduces improvements for ESM and React components and refactoring to make it easy to subclass existing components. This is an effort to make it easier to provide alternative implementations for Panel components. Additionally this release includes compatibility for Bokeh 3.7, bug fixes for `TextEditor` and a variety of other bug fixes. Many thanks to our new contributor @s-alexey, our returning contributors @Coderambling and the core maintainer team including @Hoxbro, @ahuang11 and @philippjfr.
Expand Down
41 changes: 41 additions & 0 deletions doc/about/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,47 @@

See [the HoloViz blog](https://blog.holoviz.org/#category=panel) for a visual summary of the major features added in each release.

## Version 1.6.3

Date: 2025-04-23

This release introduces a number of performance improvements related to rendering of children in layouts and ESM components, a number of bug fixes and a number of documentation improvements. We are pleased to welcome @malemburg as a new contributor and want to thank @s-alexey, @Coderambling, @etihwo and our core maintainer team including @hoxbro, @ahuang11, @MarcSkovMadsen and @philippjfr for their contributions to this release.

### Enhancements

- Implement smarter `Column` child rendering [#7846](https://github.com/holoviz/panel/pull/7846)
- Optimize `ReactComponent` child renders [#7828](https://github.com/holoviz/panel/pull/7828)
- Add `indent` and `soft_tabs` options to `CodeEditor` [#7831](https://github.com/holoviz/panel/pull/7831)
- Allow creating `Param.widget` without instantiating object, speeding up `Widget.from_param` [#7867](https://github.com/holoviz/panel/pull/7867)

### Bug fixes

- Fix handling of React based `AnyWidgetComponent` types [#7820](https://github.com/holoviz/panel/pull/7820)
- Cache ESM render modules [#7827](https://github.com/holoviz/panel/pull/7827)
- Check for `None` in `select` function for `PyComponent` [#7837](https://github.com/holoviz/panel/pull/7837)
- Fix for `AttributeError` in `auth.py:CodeChallenge` OAuth login [#7844](https://github.com/holoviz/panel/pull/7844)
- Fix error when `old_objects` is empty in `_get_objects()` [#7842](https://github.com/holoviz/panel/pull/7842)
- Ensure `ReactiveESM` renders elements [#7853](https://github.com/holoviz/panel/pull/7853)
- Ensure ESM shared resources are watched properly [#7856](https://github.com/holoviz/panel/pull/7856)
- Fix Material design `Tabulator` header color [#7855](https://github.com/holoviz/panel/pull/7855)
- Ensure current view and selection lookups on `Tabulator` handle `None` case [#7858](https://github.com/holoviz/panel/pull/7858)
- Ensure `Modal` events are targeted to correct model [#7860](https://github.com/holoviz/panel/pull/7860)
- Ensure `ChatFeed` has inherent height [#7861](https://github.com/holoviz/panel/pull/7861)
- Ensure `Markdown` code blocks are always left aligned [#7862](https://github.com/holoviz/panel/pull/7862)
- Gracefully handle `ECharts` delayed rendering [#7869](https://github.com/holoviz/panel/pull/7869)

### Documentation

- List version agnostic wheel URLs in WASM standalone docs [#7857](https://github.com/holoviz/panel/pull/7857)
- Correct `ClassSelector` keyword in `build_todo.md` [#7819](https://github.com/holoviz/panel/pull/7819)
- Fix documentation of `--oauth-extra-params` [#7865](https://github.com/holoviz/panel/pull/7865)
- Fix minor issues in FastAPI docs [#7866](https://github.com/holoviz/panel/pull/7866)
- Clarify OAuth redirect uri [#7868](https://github.com/holoviz/panel/pull/7868)

## Version 1.6.2

Date: 2025-03-28

This release primarily introduces improvements for ESM and React components and refactoring to make it easy to subclass existing components. This is an effort to make it easier to provide alternative implementations for Panel components. Additionally this release includes compatibility for Bokeh 3.7, bug fixes for `TextEditor` and a variety of other bug fixes. Many thanks to our new contributor @s-alexey, our returning contributors @Coderambling and the core maintainer team including @Hoxbro, @ahuang11 and @philippjfr.

### Enhancements
Expand Down Expand Up @@ -61,6 +100,8 @@ This release primarily introduces improvements for ESM and React components and

## Version 1.6.1

Date: 2025-02-14

This patch release primarily addresses issues running Panel behind a reverse proxy, improves the developer experience of working with custom ESM bundles and adds compatibility for Plotly 6.0. Congratulations to @fabiovincenzi and @pankajp for their first contribution fixing inlining of stylesheets. Next we want to thank our returning contributors @ceball, @Azaya89 and @Coderambling as well as our core developer team including @ahuang11, @Maximlt, @hoxbro and @philippjfr for contributing to this release.

### Enhancements
Expand Down