R 3.5.1 is released

Peter Dalgaard pd@me@ @ending from cb@@dk
Mon Jul 2 10:04:30 CEST 2018


The build system rolled up R-3.5.1.tar.gz (codename "Feather Spray") this morning.

The list below details the changes in this release.

You can get the source code from

http://cran.r-project.org/src/base/R-3/R-3.5.1.tar.gz

or wait for it to be mirrored at a CRAN site nearer to you.

Binaries for various platforms will appear in due course.


For the R Core Team,

Peter Dalgaard

These are the checksums (md5 and SHA-256) for the freshly created files, in case you wish
to check that they are uncorrupted:

MD5 (AUTHORS) = b9c44f9f78cab3184ad9898bebc854b4
MD5 (COPYING) = eb723b61539feef013de476e68b5c50a
MD5 (COPYING.LIB) = a6f89e2100d9b6cdffcea4f398e37343
MD5 (FAQ) = 3bba37aa1dd06de3f781200a8081302f
MD5 (INSTALL) = 7893f754308ca31f1ccf62055090ad7b
MD5 (NEWS) = 108410116828e1d0e0fea55fc3853842
MD5 (NEWS.0) = bfcd7c147251b5474d96848c6f57e5a8
MD5 (NEWS.1) = eb78c4d053ec9c32b815cf0c2ebea801
MD5 (NEWS.2) = 591dcf615162127f904e4e461f330ce9
MD5 (R-latest.tar.gz) = 8620686bc237cf80288afff336fcc93c
MD5 (README) = f468f281c919665e276a1b691decbbe6
MD5 (RESOURCES) = 529223fd3ffef95731d0a87353108435
MD5 (THANKS) = 08158353102084599797db8c9ccf8e2a
MD5 (VERSION-INFO.dcf) = aa0f227ed739458230d6a436bb13a7f7
MD5 (R-3/R-3.5.1.tar.gz) = 8620686bc237cf80288afff336fcc93c

2cde824a7b18958e5f06b391c801c8288be0f84fa8934b7ddefef23c67e60c09  AUTHORS
e6d6a009505e345fe949e1310334fcb0747f28dae2856759de102ab66b722cb4  COPYING
6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3  COPYING.LIB
98df47801c33cc4f4a4de98447cb2bd40e09c0920195f540a981ceed874714f2  FAQ
f87461be6cbaecc4dce44ac58e5bd52364b0491ccdadaf846cb9b452e9550f31  INSTALL
a1c7a8460289ed1bfc92379aa85eaa4eb7fb8e371c266682bb46492c4641bc19  NEWS
4e21b62f515b749f80997063fceab626d7258c7d650e81a662ba8e0640f12f62  NEWS.0
12b30c724117b1b2b11484673906a6dcd48a361f69fc420b36194f9218692d01  NEWS.1
ca04f78ffe54afa326fe3ed40e7e1411aca0000ed2fa5ead97ddf51c6aa5b7bc  NEWS.2
0463bff5eea0f3d93fa071f79c18d0993878fd4f2e18ae6cf22c1639d11457ed  R-latest.tar.gz
2fdd3e90f23f32692d4b3a0c0452f2c219a10882033d1774f8cadf25886c3ddc  README
408737572ecc6e1135fdb2cf7a9dbb1a6cb27967c757f1771b8c39d1fd2f1ab9  RESOURCES
2d2e85e85574c4430951f6b070c08cd5aff1602abfd1bb162bed6d89c436b11f  THANKS
0daddcb0246bbbaa12c477537499b9d0401daa7533b866cfbe4b64078329fae4  VERSION-INFO.dcf
0463bff5eea0f3d93fa071f79c18d0993878fd4f2e18ae6cf22c1639d11457ed  R-3/R-3.5.1.tar.gz

This is the relevant part of the NEWS file (yes, we forgot to fix the header...)

CHANGES IN R 3.5.0 patched:

  BUG FIXES:

    * file("stdin") is no longer considered seekable.

    * dput() and dump() are no longer truncating when
      options(deparse.max.lines = *) is set.

    * Calls with an S3 class are no longer evaluated when printed,
      fixing part of PR#17398, thanks to a patch from Lionel Henry.

    * Allow file argument of Rscript to include space even when it is
      first on the command line.

    * callNextMethod() uses the generic from the environment of the
      calling method. Reported by Herv'e Pag`es with well documented
      examples.

    * Compressed file connections are marked as blocking.

    * optim(*, lower = c(-Inf, -Inf)) no longer warns (and switches the
      method), thanks to a suggestion by John Nash.

    * predict(fm, newdata) is now correct also for models where the
      formula has terms such as splines::ns(..) or stats::poly(..),
      fixing PR#17414, based on a patch from Duncan Murdoch.

    * simulate.lm(glm(*, gaussian(link = <non-default>))) has been
      corrected, fixing PR#17415 thanks to Alex Courtiol.

    * unlist(x) no longer fails in some cases of nested empty lists.
      Reported by Steven Nydick.

    * qr.coef(qr(<all 0, w/ colnames>)) now works.  Reported by Kun
      Ren.

    * The radix sort is robust to vectors with >1 billion elements (but
      long vectors are still unsupported). Thanks to Matt Dowle for the
      fix.

    * Terminal connections (e.g., stdin) are no longer buffered. Fixes
      PR#17432.

    * deparse(x), dput(x) and dump() now respect c()'s argument names
      recursive and use.names, e.g., for x <- setNames(0, "recursive"),
      thanks to Suharto Anggono's PR#17427.

    * Unbuffered connections now work with encoding conversion.
      Reported by Stephen Berman.

    * .Renviron on Windows with Rgui is again by default searched for
      in user documents directory when invoked _via_ the launcher icon.
      Reported by Jeroen Ooms.

    * printCoefmat() now also works with explicit right=TRUE.

    * print.noquote() now also works with explicit quote=FALSE.

    * The default method for pairs(.., horInd=*, verInd=*) now gets the
      correct order, thanks to reports by Chris Andrews and Gerrit
      Eichner.  Additionally, when horInd or verInd contain only a
      subset of variables, all the axes are labeled correctly now.

    * agrep("..|..", .., fixed=FALSE) now matches when it should,
      thanks to a reminder by Andreas Kolter.

    * str(ch) now works for more invalid multibyte strings.


-- 
Peter Dalgaard, Professor,
Center for Statistics, Copenhagen Business School
Solbjerg Plads 3, 2000 Frederiksberg, Denmark
Phone: (+45)38153501
Office: A 4.23
Email: pd.mes using cbs.dk  Priv: PDalgd using gmail.com



More information about the R-announce mailing list