Skip to content

Commit 08cf106

Browse files
committed
update news; fix #1315
1 parent c4f1001 commit 08cf106

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

NEWS.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# 4.8.0.9000
22

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)
310

411
# 4.8.0
512

R/utils.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ verify_attr <- function(proposed, schema) {
505505
}
506506

507507
# do the same for "sub-attributes"
508-
if (identical(role, "object")) {
508+
if (identical(role, "object") && is.recursive(proposed[[attr]])) {
509509
proposed[[attr]] <- verify_attr(proposed[[attr]], schema[[attr]])
510510
}
511511
}

0 commit comments

Comments
 (0)