From 14c33d989509ee4078f2e833dea4642f8b243394 Mon Sep 17 00:00:00 2001 From: Yihui Xie Date: Mon, 2 Dec 2024 08:19:51 -0600 Subject: [PATCH] close #1159: move httpuv to Suggests --- DESCRIPTION | 4 ++-- NEWS.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 3f78633b..f03825bf 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: DT Type: Package Title: A Wrapper of the JavaScript Library 'DataTables' -Version: 0.33.2 +Version: 0.33.3 Authors@R: c( person("Yihui", "Xie", role = "aut"), person("Joe", "Cheng", email = "joe@posit.co", role = c("aut", "cre")), @@ -31,7 +31,6 @@ License: GPL-3 | file LICENSE Imports: htmltools (>= 0.3.6), htmlwidgets (>= 1.3), - httpuv, jsonlite (>= 0.9.16), magrittr, crosstalk, @@ -41,6 +40,7 @@ Suggests: knitr (>= 1.8), rmarkdown, shiny (>= 1.6), + httpuv, bslib, future, testit, diff --git a/NEWS.md b/NEWS.md index 9e65aba4..ee7d268f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,6 +2,8 @@ - Added `lazyRender` parameter to `DT::datatable()`, which gives the option for the table to be rendered immediately rather than waiting for it to become visible (thanks, @Mosk915, #1156). +- Moved **httpuv** from `Imports` to `Suggests` in `DESCRIPTION` (thanks, @MichaelChirico, #1159). + # CHANGES IN DT VERSION 0.33 - Added `outputArgs` parameter to `renderDataTable`, to allow width and height to be set when using interactive R Markdown documents.