We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f1001 commit 08cf106Copy full SHA for 08cf106
NEWS.md
@@ -1,5 +1,12 @@
1
# 4.8.0.9000
2
3
+## IMPROVEMENTS
4
+
5
+* The `orca()` function now supports conversion of much larger figures (#1322)
6
7
+## BUG FIXES
8
9
+* Recursive attribute validation is now only performed on recursive objects (#1315)
10
11
# 4.8.0
12
R/utils.R
@@ -505,7 +505,7 @@ verify_attr <- function(proposed, schema) {
505
}
506
507
# do the same for "sub-attributes"
508
- if (identical(role, "object")) {
+ if (identical(role, "object") && is.recursive(proposed[[attr]])) {
509
proposed[[attr]] <- verify_attr(proposed[[attr]], schema[[attr]])
510
511
0 commit comments