Skip to content

ExRam.Gremlinq 12.20.0

Compare
Choose a tag to compare
@danielcweber danielcweber released this 10 Apr 16:03
· 169 commits to 12.x since this release
4d8fc90

Changes

Note: When compiling against this release, users might observe warnings like

CS8604: Possible null reference argument for parameter 'value' in 'VertexProperty.implicit operator VertexProperty(object value)'

on calls to operators that had params ReadOnlySpan<...> overloads added in this release. This can be worked around by applying the !-operator (or null-forgiving-operator) to the expression inside the call, e.g. change calls to

__ => __.Values(x => x.Name)

to

__ => __.Values(x => x.Name!).