You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22-27Lines changed: 22 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,78 +7,73 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [1.5.0] - 2025-09-08
9
9
10
-
### Breaking changes
11
-
12
-
* The `ui.Chat` and `ui.MarkdownStream` components are now imported from the new `shinychat` library. Future versions of `shinychat` will likely deprecate and remove some features from `Chat`. If you still want to use those features with the latest Shiny, we suggest pinning `shinychat` to it's initial release (v0.1.0). (#2051)
13
-
14
10
### New features
15
11
16
-
* Added `ui.insert_nav_panel()`, `ui.remove_nav_panel()`, and `ui.update_nav_panel()` to support dynamic navigation. (#90)
12
+
* Added AI-powered test generator for Shiny applications. Use `shiny add test` to automatically generate comprehensive Playwright tests for your apps using AI models from Anthropic or OpenAI. (#2041)
17
13
18
14
*`ui.sidebar()` is now interactively resizable. (#2020)
19
15
20
-
*`navset_card_*()`now has a `full_screen` option to support `card()`'s existing full-screen functionality. (#1451)
16
+
*`ui.sidebar()`gains a `fillable` argument to support vertical fill behavior in sidebars. (#2077)
21
17
22
-
*`ui.update_*()` functions now accept `ui.TagChild` (i.e., HTML) as input to the `label` and `icon` arguments. (#2020)
18
+
*Added `ui.insert_nav_panel()`, `ui.remove_nav_panel()`, and `ui.update_nav_panel()` to support dynamic navigation. (#90)
23
19
24
-
* Added support for python 3.13. (#1711)
20
+
*`navset_card_*()` now gains a `full_screen` option. (#1451)
21
+
22
+
*`ui.update_*()` functions now accept `ui.TagChild` (i.e., HTML) as input to the `label` and `icon` arguments. (#2020)
25
23
26
24
* The `.output_*()` methods of the `ClientData` class (e.g., `session.clientdata.output_height()`) can now be called without an `id` when called inside a `@render` function. (#1978)
27
25
28
26
*`playwright.controller.InputActionButton` gains a `expect_icon()` method. As a result, the already existing `expect_label()` no longer includes the icon. (#2020)
29
27
30
-
### Changes
28
+
### Breaking changes
29
+
30
+
* The `ui.Chat` and `ui.MarkdownStream` components are now imported from the new `shinychat` library. Future versions of `shinychat` will likely deprecate and remove some features from `Chat`. If you still want to use those features with the latest Shiny, we suggest pinning `shinychat` to it's initial release (v0.1.0). (#2051)
31
31
32
32
*`express.ui.insert_accordion_panel()`'s function signature has changed to be more ergonomic. Now you can pass the `panel_title` and `panel_contents` directly instead of `ui.hold()`ing the `ui.accordion_panel()` context manager. (#2042)
33
33
34
34
### Improvements
35
35
36
-
*`input_date()`, `input_date_range()`, `update_date()`, and `update_date_range()` now supports `""` for values, mins, and maxes. In this case, no date will be specified on the client. (#1713) (#1689)
37
-
38
-
* Restricted the allowable types of the `choices` parameter of `input_select()`, `input_selectize()`, `update_select()`, and `update_selectize()` to actual set of allowable types (previously, the type was suggesting HTML-like values were supported). (#2048)
39
-
40
36
* Improved the styling and readability of markdown tables rendered by `ui.Chat()` and `ui.MarkdownStream()`. (#1973)
41
37
42
-
*`selectize`, `remove_button`, and `options` parameters of `ui.input_select()` have been deprecated; use `ui.input_selectize()` instead. (Thanks, @ErdaradunGaztea!) (#1947)
38
+
*`input_date()`, `input_date_range()`, `update_date()`, and `update_date_range()` now support `""` for values, mins, and maxes. In this case, no date will be specified on the client. (#1713) (#1689)
43
39
44
-
*Added `timeout_secs` parameter to `create_app_fixture`to allow testing apps with longer startup times. (#2033)
40
+
*Restricted the allowable types of the `choices` parameter of `input_select()`, `input_selectize()`, `update_select()`, and `update_selectize()`to actual set of allowable types (previously, the type was suggesting HTML-like values were supported). (#2048)
45
41
46
42
* Added module support for `session.clientdata` methods. This allows you to access client data values in Shiny modules without needing to namespace the keys explicitly. (#1978)
47
43
48
-
*Add support for selecting menu items in `Navset` controllers to improve dropdown navigation test coverage. (#2066)
44
+
*Added `timeout_secs` parameter to `create_app_fixture`to allow testing apps with longer startup times. (#2033)
49
45
50
-
*Fixed false positive warning in `layout_columns()` about number of widths vs elements. (#1704)
46
+
*Add support for selecting menu items in `Navset` controllers to improve dropdown navigation test coverage. (#2066)
51
47
52
-
*When errors occur in a bookmarking context, they are now reported in the Python console. (#2076)
48
+
*Python 3.13 is now offically supported and tested. (#1711)
53
49
54
50
### Bug fixes
55
51
52
+
*`include_js()` and `include_css()` now work as expected in multi-user settings and also when multiple files from the same directory are included. (#2061, #2069)
53
+
56
54
* Fixed numerous issues related to programmatically updating selectize options. (#2053)
57
55
*`update_selectize(options=...)` no longer gets ignored when `server=False` (the default).
58
56
*`update_selectize(options=...)` now works as expected in a module.
59
57
60
-
* Fixed an issue with `update_selectize()`to properly display labels with HTML reserved characters like "&" (#1330)
58
+
* Fixed an issue with `update_selectize(server=True)`not properly displaying labels with HTML reserved characters like "&" (#1330)
61
59
62
60
* Fixed an issue with `ui.Chat()` sometimes wanting to scroll a parent element. (#1996)
63
61
64
-
* Explicitly call out module usage in UI input bookmark button documentation. (#1983)
65
-
66
-
* Fix missing session when trying to display an error duing bookmarking. (#1984)
62
+
* Fix several issues with bookmarking error reporting and documentation. (#2076, #1984, #1983)
67
63
68
64
*`input_date()` and `input_date_range()` once again use the client's (not the server) current date as the default `value`. (#2060)
69
65
70
-
* Fixed `set()` method of `InputSelectize` controller so it clears existing selections before applying new values. (#2024)
71
-
72
-
*`include_js()` and `include_css()` now work as expected when trying to include multiple files from the same directory. (#2069)
66
+
* Fixed false positive warning in `layout_columns()` about number of widths vs elements. (#1704)
73
67
74
-
*`include_js()`and `include_css()` now correctly handle file permissions in multi-user settings. (#2061)
68
+
*Fixed `set()`method of the `InputSelectize` test controller so it clears existing selections before applying new values. (#2024)
75
69
76
70
### Deprecations
77
71
78
-
*`ui.update_navs()`has been deprecated in favor of `ui.update_navset()`. (#2047)
72
+
*`ui.update_navs()`is deprecated in favor of `ui.update_navset()`. (#2047)
79
73
80
74
*`ui.panel_well()` is deprecated in favor of `ui.card()`. (#2038)
81
75
76
+
*`selectize`, `remove_button`, and `options` parameters of `ui.input_select()` have been deprecated; use `ui.input_selectize()` instead. (Thanks, @ErdaradunGaztea!) (#1947)
0 commit comments