It looks like you can specify named graphs when loading data on db creation. While I was looking up that feature I also noticed that Stardog now supports Kerberos. I don't remember ever seeing that in the release notes but for anyone else who might have missed it it's there. (EDIT: First item in 5.2.2 doh!)
Shout out to @wouter who had asked about that feature.
Add validation for invalid predicates (#4958)
I'm not quite sure what an "invalid predicate" is.
The description for #4958 could have been a bit more detailed. It’s specifically referring to predicates in our services such as machine learning and entity extraction. The service block looks like this in general:
service <...> {
[] :arg ?val ;
...
}
The arg predicate here is what is referred to in the issue. We previously allowed unrecognized predicates in the service block but ignored them. The change is that now an error will be returned instead.