pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/R-DT



Module Name:    pkgsrc
Committed By:   mef
Date:           Wed Jan  1 15:06:34 UTC 2025

Modified Files:
        pkgsrc/textproc/R-DT: Makefile distinfo

Log Message:
(textproc/R-DT) Updated 0.28 to 0.33

(w3m -dump -T text https://github.com/rstudio/DT/releases/)
DT 0.33
04 Apr, 2024
  * Added outputArgs parameter to renderDataTable, to allow width and height to
    be set when using interactive R Markdown documents.

  * Fixed a bug in renderDT()'s evaluation of ... arguments when quoted = TRUE
    (#1130).

  * Maintain selected columns/rows/cells upon re-render (thanks, @epruesse, #
    1125).

  * The maintainer of this package has been changed from Yihui Xie (@yihui) to
    Joe Cheng (@jcheng5).

DT 0.32
19 Feb, 2024
  * Fixed a bug that caused the column used for grouping with the RowGroup
    extension to change when relocated by the ColReorder extension (thanks,
    @isthisthat, @mikmart, #1109).

  * Fixed the bug that replaceData() failed to work with data that has no
    column names (thanks, @mmuurr, #1108).

  * updateSearch() now sets the slider values based on the new search string
    for numeric columns (thanks, @mikmart, #1110).

  * The searchCols option now sets the slider values for numeric columns when
    server = TRUE (thanks, @alexvpickering, @mikmart, #998).

  * Added server-side processing support for the SearchBuilder extension
    (thanks, @AhmedKhaled945, @shrektan, @mikmart, #963).

  * Fixed a bug that caused the date picker widget from the DateTime extension
    to render incorrectly (thanks, @mikmart, #1116).

  * Column formatting now also applies to range labels shown on filter sliders
    (thanks, @GitChub, @mikmart, #247).

  * Added support for passing custom configuration for initializing filter
    widgets in JavaScript. Use the filter parameter to datatable() in the form
    filter = list(settings = list(select = ..., slider = ...)) (thanks,
    @yogat3ch, @DavidBlairs, @mikmart, #1072, #1083).

DT 0.31
09 Dec, 2023

  * Upgraded DataTables version to 1.13.6 (thanks, @stla, #1091).

  * Searching and sorting work now when columns are re-ordered by the
    ColReorder extension (thanks, @ashbaldry #1096, @gergness #534,
    @nmoraesmunter #921, @isthisthat #1069).

  * Fixed disabling selection on hyperlink clicks (thanks, @guoci, #1093).

  * Fixed an error for R >= 4.3.0 (thanks, @AntoineMichelet, #1095).

DT 0.30
08 Dec 2023

  * Fixed a bug that when using updateSearch(), the clear button inside the
    input box doesn't show up, and the table doesn't update when the input is
    cleared (thanks, @DavidBlairs, #1082).

  * Added support for a list of Booleans as input to the class argument of
    DT::datatable() when style = 'bootstrap' (thanks, @pedropark99, #1089). In
    other words, you can now select the Bootstrap classes you want to use at
    DT::datatable() by using a list of Booleans that select the classes you
    want to use. In the example below, we are producing an HTML table that uses
    the stripe and hover Bootstrap classes:

    DT::datatable(mtcars, class = list(stripe = TRUE, compact = FALSE, hover = TRUE), style = "bootstrap")

  * Handle NULL return from bslib::theme_version() (thanks, @slodge-work, #1090
    ).

DT 0.29
29 Aug,2023

  * Support Bootstrap 5 with datatable(style = "auto") (thanks, @gadenbuie, #
    1074).

  * Fixed a bug that searching would fail when the keyword contains special
    characters such as & (thanks, @dfriend21 @olivier7121, #1075).

  * Deleted () after eval in a JS comment to prevent Google from treating it as
    malware, which is just a false alarm (thanks, @gorkang, #1080).


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/R-DT/Makefile \
    pkgsrc/textproc/R-DT/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/R-DT/Makefile
diff -u pkgsrc/textproc/R-DT/Makefile:1.6 pkgsrc/textproc/R-DT/Makefile:1.7
--- pkgsrc/textproc/R-DT/Makefile:1.6   Thu Jul  6 14:17:17 2023
+++ pkgsrc/textproc/R-DT/Makefile       Wed Jan  1 15:06:34 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2023/07/06 14:17:17 mef Exp $
+# $NetBSD: Makefile,v 1.7 2025/01/01 15:06:34 mef Exp $
 
 R_PKGNAME=     DT
-R_PKGVER=      0.28
+R_PKGVER=      0.33
 CATEGORIES=    textproc
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -13,10 +13,18 @@ DEPENDS+=   R-promises>=1.0.1:../../parall
 DEPENDS+=      R-htmltools>=0.3.6:../../textproc/R-htmltools
 DEPENDS+=      R-jsonlite>=0.9.16:../../textproc/R-jsonlite
 DEPENDS+=      R-htmlwidgets>=1.3:../../www/R-htmlwidgets
+DEPENDS+=      R-httpuv-[0-9]*:../../www/R-httpuv
 DEPENDS+=      R-crosstalk-[0-9]*:../../textproc/R-crosstalk
 DEPENDS+=      R-jquerylib-[0-9]*:../../www/R-jquerylib
 
+# Packages suggested but not available: 'future'
+
+TEST_DEPENDS+= R-R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
+#EST_DEPENDS+= R-future-[0-9]*:../../wip/R-future
 TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
+TEST_DEPENDS+= R-shiny-[0-9]*:../../www/R-shiny
+TEST_DEPENDS+= R-testit-[0-9]*:../../devel/R-testit
+TEST_DEPENDS+= R-tibble-[0-9]*:../../math/R-tibble
 
 USE_LANGUAGES= # none
 
Index: pkgsrc/textproc/R-DT/distinfo
diff -u pkgsrc/textproc/R-DT/distinfo:1.6 pkgsrc/textproc/R-DT/distinfo:1.7
--- pkgsrc/textproc/R-DT/distinfo:1.6   Thu Jul  6 14:17:17 2023
+++ pkgsrc/textproc/R-DT/distinfo       Wed Jan  1 15:06:34 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.6 2023/07/06 14:17:17 mef Exp $
+$NetBSD: distinfo,v 1.7 2025/01/01 15:06:34 mef Exp $
 
-BLAKE2s (R/DT_0.28.tar.gz) = ac85b63bc94925237bb434818c1f5cc3ea1039e5bd7dfc70fde3401c56631a5f
-SHA512 (R/DT_0.28.tar.gz) = 99b3e33ca1e106f99987dcd66bcffbfb9491a60008b653a1d8e581107c0f6eaa126d16c0a993bb022f37b09c568c03b8c9713f50c2935928e13e5ff349263fe3
-Size (R/DT_0.28.tar.gz) = 1469928 bytes
+BLAKE2s (R/DT_0.33.tar.gz) = 16f3d039d7f8242d359387a7676354c3a70f0b29f8ef9e5b4dca047fa841a5a6
+SHA512 (R/DT_0.33.tar.gz) = 6005299e1db8b81ce4c1909e0f47fbbb4c1c21eadbb018e5822e8c565ceef47d88c40409cfacd9086d8cb43937b927b6a8153a47b4a9d97397c4185f72208f45
+Size (R/DT_0.33.tar.gz) = 1675674 bytes



Home | Main Index | Thread Index | Old Index