ExRam.Gremlinq 14.1.0

Changes

  • Cache empty VStep and EStep (#2400)
  • Reuse underlying list in Traversal instead of creating a new one in every case (#2398)
  • Optimize FastImmutableList.Push (#2397, #2399)

ExRam.Gremlinq 14.0.0

Changes

ExRam.Gremlinq 14 contains a few breaking changes. Most of them have already been communicated by ObsoleteAttribute-markers in recent releases in the 13.x-line.

  • CosmosDb provider packages have moved to Gremlinq.Extensions

  • Optimize Step-serialization (#2392)

  • Previous Behavior: Steps were tried to serialize multiple times for various target types (Instruction, Step[], etc.), leading to unnecessary (failed) lookups. Furthermore, since the order of these target types was fixed, it was impossible to override Step serialization when the target types did not fit (or supersede each other in a specific way).
  • New Behavior: Step is now serialized to the object target type. The resulting instance is then handled based on its actual type.
  • Possibly breaking change for Custom IConverterFactory Implementations: Custom IConverterFactory implementations that previously reacted to specific target types must now recognize requests for the object target type and determine if they can satisfy the conversion. This change ensures compatibility with the new serialization approach while maintaining flexibility for custom converters.

  • Rename edge-creation query surface from IInOrOutEdgeGremlinQuery to IAddEdgeGremlinQuery (#2357) The previous naming was confusing, seemingly indicating a base interface type for an edge that is not known to be an in or out edge, when actually, the sole purpose of that interface was to be returned by the AddE-operator to enable fluent calls to To or From.

  • Remove StringComparisonTranslationStrictness (#2372) Gremlinq will always behave as if StringComparisonTranslationStrictness.Strict was configured. Queries using a string comparison which is not supported on a specific database provider (e.g. case insensitive queries on Azure CosmosDb) must be modified accordingly. StringComparisonTranslationStrictness was already marked obsolete in later 13.x versions.

  • Rename extension classes (#2358) Classes named ConfigurableGremlinQuerySourceExtensions are renamed to GremlinQuerySourceExtensions.

  • Drop .NET 6, 7 (#2360, #2361) These target frameworks are no longer supported by Microsoft.

  • Add support for ElementMap operator (#2385, #2386, #2393)

  • Add Key deserialization support (#2384)

  • Implement IEquatable on Key because it's there already. (#2387)

ExRam.Gremlinq 13.8.2

⚠️ CosmosDb provider packages will be moving to Gremlinq.Extensions ⚠️

The UseCosmosDb(...)-extensions in ExRam.Gremlinq.Providers.CosmosDb and ExRam.Gremlinq.Providers.CosmosDb.AspNet are marked obsolete in this release. They, along with the projects/packages, will be removed entirely in v14.

The packages are continuing their life on the Gremlinq.Extensions paid private NuGet feed, available from version 13.9.0 onwards under the same package names - so upgrading is a one-line change to your package references with no API changes required.

To silence the obsolescence warning and prepare for v14, either stay on a version <= 13.8.1, or subscribe to any Gremlinq.Extensions offer, configure the private feed with your license key, and update your package references to 13.9.0 or later.

Full transition details: https://docs.gremlinq.net/cosmosdb-provider-packages/

Gremlinq.Extensions 13.9.0

Move of CosmosDb provider packages to Gremlinq.Extensions

Starting with the 13.9.0 release of Gremlinq.Extensions, the ExRam.Gremlinq.Providers.CosmosDb and ExRam.Gremlinq.Providers.CosmosDb.AspNet packages are now also being distributed through the Gremlinq.Extensions NuGet feed, mirroring their OSS counterparts in ExRam.Gremlinq, which are going to be marked obsolete. All subscribers to any Gremlinq.Extensions package will automatically gain access to these packages on the same feed at no additional cost. Note that starting with Gremlinq.Extensions v14, these packages will be renamed to Gremlinq.Extensions.Providers.CosmosDb and Gremlinq.Extensions.Providers.CosmosDb.AspNet respectively - consumers should plan to update their package references accordingly when upgrading to v14.

Gremlinq.Extensions 13.8.1

Changes

  • Update OpenTelemetry due to a vulnerability. (#175)
  • Add our own GraphSON serialization to Gremlinq.Extensions.Support.SystemTextJson (#173)
  • Derive from NeptuneFixture from core project. (#172)
  • Replace T4 template by Roslyn Source Generator in GroovyScripts (#171)

ExRam.Gremlinq 13.8.1

Changes

  • Move everything to TinkerPop 3.7.6. (#2328)
  • Implement ISourceFileNameProvider on Graphson{2,3}BinaryMessageSerializationTest (#2327)
  • Improve solution-wide code coverage (#2310, #2309)

Gremlinq.Extensions 13.8.0

Changes

  • Add documentation. (#168) @danielcweber
  • Check nullability without the help of NullGuard.Fody (#167) @danielcweber