Skip to content

Commit

Permalink
undeted tests and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
valentynk committed Apr 18, 2023
1 parent e593eae commit 68dbbd7
Show file tree
Hide file tree
Showing 27 changed files with 125 additions and 95 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
* Fixed an issue in Go and Python GLVs where modifying per request settings to override request_id's was not working correctly.
* Fixed incorrect implementation for `GraphTraversalSource.With` in `gremlin-go`.
* Changed Gremlin.version() to return `"VersionNotFound"` if the version is missing from the manifest.
* Fixed local steps to avoid throwing an exception for non-iterable input.
* Fixed a case sensitivity issue when comparing request UUIDs in `gremlin-javascript`.
==== Bugs
Expand Down
18 changes: 18 additions & 0 deletions docs/src/upgrade/release-3.5.x.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,24 @@ complete list of all the modifications that are part of this release.
=== Upgrading for Users
=== Upgrading for Providers
==== Local steps should handle non-Iterables
`index` steps and local steps `count`, `dedup`, `max`, `mean`, `min`, `order`, `range`, `sample`, `sum`, `tail` should
work correctly with not only `Iterable` input, but also with arrays and single values.
Examples of queries that should be supported:
[source,groovy]
----
g.inject(1).max(local)
----
[source,java]
----
g.inject(new Integer[] {1,2},3).max(Scope.local).toList()
----
== TinkerPop 3.5.5
Expand Down
22 changes: 11 additions & 11 deletions gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions gremlin-go/driver/cucumber/gremlin.go

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 68dbbd7

Please sign in to comment.