/usr/lib/R/site-library/R6/NEWS.md is in r-cran-r6 2.2.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | R6 2.2.2
========
* Fixed [#108](https://github.com/wch/R6/issues/108): When an object with a `super` object and an active binding in the `super` object was cloned, the new object's `super` object did not get the active binding -- it was a normal function.
* Fixed [#119](https://github.com/wch/R6/issues/119): When a class had two levels of inheritance, an instance of that class's `super` object could contain methods that had an incorrect enclosing environment.
R6 2.2.1
========
* Vignettes now only try use the microbenchmark package if it is present. This is so that the package builds properly on platforms where microbenchmark is not present, like Solaris.
* Fixed ending position for `trim()`.
R6 2.2.0
========
* Classes can define finalizers explicitly, by defining a public `finalize` method. ([#92](https://github.com/wch/R6/issues/92), [#93](https://github.com/wch/R6/pull/93))
* Added function `is.R6()` and `is.R6Class()`. ([#95](https://github.com/wch/R6/pull/95))
* Fixed [#96](https://github.com/wch/R6/issues/96): R6 now avoids using `$` and `[[` after the class has been assigned to the object. This allows the user to provide their own methods for `$` and `[[` without causing problems to R6's operation.
R6 2.1.3
========
* The `plot` S3 method for R6 objects will call `$plot` on the object if present. (#77)
* Fixed printing of members that are R6 objects. (#88)
* Fixed deep cloning for non-portable classes. (#85)
* Added `as.list.R6` method. (#91)
R6 2.1.2
========
* Implemented `format.R6()` and `format.R6ClassGenerator`, the former calls a public `format` method if defined. This might change the functionality of existing classes that define a public `format` method intended for other purposes (#73. Thanks to Kirill Müller)
* Functions are shown with their interface in `print` and `format`, limited to one line (#76. Thanks to Kirill Müller)
* R6 objects and generators print out which class they inherit from. (#67)
R6 2.1.1
========
* Fixed a bug with printing R6 objects when a `[[` method is defined for the class. (#70)
* Fixed cloning of objects that call a `super` method which accesses `private`. (#72)
R6 2.1.0
========
* Added support for making clones of R6 objects with a `clone()` method on R6 objects. The `deep=TRUE` option allows for making clones that have copies of fields with reference semantics (like other R6 objects). (#27)
* Allow adding public or private members when there were no public or private members to begin with. (#51)
* Previously, when an R6 object was printed, it accessed (and called) active bindings. Now it simply reports that a field is an active binding. (#37, #38. Thanks to Oscar de Lama)
* Printing private members now works correctly for portable R6 objects. (#26)
* The 'lock' argument has been renamed to 'lock_objects'. Also, there is a new argument, 'lock_class', which can prevent changes to the class. (#52)
* Fixed printing of NULL fields.
R6 2.0.1
========
* A superclass is validated on object instantation, not on class creation.
* Added `debug` and `undebug` methods to generator object.
R6 2.0
========
* [BREAKING CHANGE] Added `portable` option, which allows inheritance across different package namespaces, and made it the default.
* Added `set()` method on class generator object, so new fields and methods can be added after the generator has been created.
* All of the functions involved in instantiating objects are encapsulated in an environment separate from the R6 namespace. This means that if a generator is created with one version of R6, saved, then restored in a new R session that has a different version of R6, there shouldn't be any problems with compatibility.
* Methods are locked so that they can't be changed. (Fixes #19)
* Inheritance of superclasses is dynamic; instead of reading in the superclass when a class is created, this happens each time an object is instantiated. (Fixes #12)
* Added trailing newline when printing R6 objects. (Thanks to Gabor Csardi)
* The `print` method of R6 objects can be redefined. (Thanks to Gabor Csardi)
R6 1.0.1
========
* First release on CRAN.
* Removed pryr from suggested packages.
R6 1.0
========
* First release
|