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: NEWS.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,25 @@
1
-
# teal 0.15.2.9091
1
+
# teal 0.15.2.9131
2
2
3
3
### New features
4
4
5
5
* Possible to call `ui_teal` and `srv_teal` directly in any application by delivering `data` argument as a `reactive` returning `teal_data` object. #669
6
+
* Since introduction of `ui_teal` and `srv_teal` functions `id` argument in `init` is being deprecated. #1438
7
+
* Introduce `ui_session_info` and `srv_session_info` shiny module to create the user session info and teal app lockfile download button.
6
8
* Introduced `teal_transform_module` to provide a way to interactively modify data delivered to `teal_module`'s `server` and to decorate module outputs. #1228#1384
7
9
* Introduced a new argument `once = FALSE` in `teal_data_module` to possibly reload data during a run time.
8
10
* Possibility to download lockfile to restore app session for reproducibility. #479
9
-
* Introduced a function `set_datanames()` to change a `datanames` of the `teal_module`.
10
11
* Datasets which name starts with `.` are ignored when `module`'s `datanames` is set as `"all"`.
11
12
* Added warning when reserved `datanames`, such as `all` and `.raw_data` are being used.
13
+
* Added `add_custom_server()` to allow adding custom server logic to the main shiny server function of a teal app.
12
14
13
15
### Breaking changes
14
16
15
17
* Setting `datanames()` on `data` passed to teal application no longer has effect. In order to change `teal_module`'s
16
18
`datanames` one should modify `module$datanames`.
17
-
*The `landing_popup_module()`needs to be passed as the `landing_popup` argument of `init` instead of being passed as a module of the `modules` argument of `init`.
19
+
*`landing_popup_module()`is deprecated. Please use `add_landing_modal()` function to add a landing popup for your teal application.
18
20
*`teal` no longer re-export `%>%`. Please load `library(magrittr)` instead or use `|>` from `base`.
21
+
*`build_app_title` will be removed in the future release. Please use the `modify_title()` function to change the title for your teal application.
22
+
* The `title`, `header`, and `footer` arguments of the `init()` function are deprecated. Please use the `modify_title`, `modify_header`, and `modify_footer` respectively.
0 commit comments