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: CHANGELOG.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,21 @@ New features:
5
5
* new JUL-like logging infrastructure backed by Truffle
6
6
* FastR options backed by Truffle now. New command-line format - i.e. bin/r --R.PerformanceWarning="true". Also configurable via org.graal.polyglot.Context.Builder.
7
7
* script configure_fastr also regenerates etc/Renviron and etc/ldpaths
8
+
* FastR vectors are not writeable from other languages
9
+
* in order to update FastR vectors from other languages:
10
+
retrieve reference to the subset assign function `` `[<-` `` and execute it.
11
+
Note that it will return the new vector with the updated values.
12
+
13
+
Added missing R builtins and C API
14
+
15
+
*`polyroot`
16
+
* dummy implementation of `pcre_config`
8
17
9
18
Bug fixes:
10
19
11
-
* when using GNU-R graphics (-UseInternalGridGraphics) FastR would still override the graphics package R functions
20
+
* when using GNU-R graphics (--R.UseInternalGridGraphics=false) FastR would still override the graphics package R functions
0 commit comments