Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump tinkerpop.version from 3.5.1 to 3.7.0 #2510

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 21, 2023

Bumps tinkerpop.version from 3.5.1 to 3.7.0.
Updates org.apache.tinkerpop:gremlin-core from 3.5.1 to 3.7.0

Changelog

Sourced from org.apache.tinkerpop:gremlin-core's changelog.

== TinkerPop 3.7.0 (Gremfir Master of the Pan Flute)

image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/gremlin-zamfir.png[width=185]

[[release-3-7-1]] === TinkerPop 3.7.1 (NOT OFFICIALLY RELEASED YET)

This release also includes changes from .

  • Added the asString(), length(), toLower(), and toUpper() steps to perform String manipulations.
  • Added Gherkin parsing support for specific string results using str[].
  • Added the trim(), lTrim(), rTrim(), and reverse() steps to perform String manipulations.
  • Added replace(), split() and substring() steps to perform String manipulations.
  • Added Scope to asString(), length(), toLower(), toUpper(), trim(), lTrim(), rTrim(), replace(), split()andsubstring()to allowString` manipulation inside incoming lists.
  • Update concat() to accept Traversal varargs.
  • Corrected concat() signatures in gremlin-dotnet, Concat() is now used instead of Concat<object>(). (breaking)
  • Update concat() to not special treat inject in arguments and use TraversalUtil.apply on it as with any other child traversals. (breaking)
  • Added format() step to perform String manipulations.
  • Checked graph features for meta-property support before trying to serialize them in VertexPropertySerializer for GraphBinary.
  • Fixed multiline query bug in console caused by upgrade to Groovy 4.
  • Added date manipulation steps asDate, dateAdd and dateDiff.
  • Added new data type DT to represent periods of time.
  • Added Gherkin support for Date.
  • Extended datetime() function to produce a current server date.
  • Added list filtering functions all and any.
  • Added list/set functions conjoin, combine, difference, disjunct, intersect, merge, and product.
  • Added getter for isStart on UnionStep.
  • Added NullVariableResolver that will quietly produce a null for each variable found when parsing with the grammar.
  • Changed the @MultiMetaProperties testing tag for Gherkin feature tests to instead be separate @MetaProperties and @MultiProperties.
  • Added agent parameter to DriverRemoteConnection options to allow a user-provided http.Agent implementation.
  • Fixed deserialization of element properties for GraphBinary.
  • Fixed bug in union() as a start step where the Path was including the starting dummy traverser.
  • Moved some TinkerGraph specific transaction tests from TransactionMultiThreadedTest to TinkerTransactionGraphTest
  • Fixed incorrect read operations in some cases for TinkerTransactionGraph.
  • Improved performance for Element comparison by comparing hashCode() prior to doing more expensive checks.

[[release-3-7.0]] === TinkerPop 3.7.0 (Release Date: July 31, 2023)

This release also includes changes from .

  • Allowed mergeV() and property(Map) to more easily define Cardinality values for properties for onMatch and onCreate options.
  • Removed connectOnStartup configuration option from gremlin-javascript.
  • Added marker interface PBiPredicate for predefined predicates.
  • Changed Gremlin.version() to read from the more specifically named tinkerpop-version attribute.
  • Added warning on vertex property cardinality mismatch when reading GraphML.
  • Added a union() start step.
  • Added the concat() step to perform String concatenations.
  • Added TinkerTransactionGraph, a reference implementation of transactional TinkerGraph
  • Replaced instances of Neo4j transaction graph with TinkerTransactionGraph for server, driver, and GLV integration tests

... (truncated)

Commits
  • 3d42e0c TinkerPop 3.7.0 release
  • 2e549e2 CTR Fix validate-distribution.sh
  • 16f9d4f TinkerPop 3.7.0 release
  • f27fca4 Merge branch '3.6-dev'
  • c4a1fc4 TinkerPop 3.6.5 release
  • 4213ccc Merge branch '3.5-dev' into 3.6-dev
  • 6d5ce44 TinkerPop 3.5.7 release
  • 3e6fbe8 CTR Fixed validate-distribution.sh
  • 6358a13 TinkerPop 3.5.7 release
  • 2b097ab Remove CreateTx* methods from TinkerFactory CTR.
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:gremlin-groovy from 3.5.1 to 3.7.0

Changelog

Sourced from org.apache.tinkerpop:gremlin-groovy's changelog.

== TinkerPop 3.7.0 (Gremfir Master of the Pan Flute)

image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/gremlin-zamfir.png[width=185]

[[release-3-7-1]] === TinkerPop 3.7.1 (NOT OFFICIALLY RELEASED YET)

This release also includes changes from .

  • Added the asString(), length(), toLower(), and toUpper() steps to perform String manipulations.
  • Added Gherkin parsing support for specific string results using str[].
  • Added the trim(), lTrim(), rTrim(), and reverse() steps to perform String manipulations.
  • Added replace(), split() and substring() steps to perform String manipulations.
  • Added Scope to asString(), length(), toLower(), toUpper(), trim(), lTrim(), rTrim(), replace(), split()andsubstring()to allowString` manipulation inside incoming lists.
  • Update concat() to accept Traversal varargs.
  • Corrected concat() signatures in gremlin-dotnet, Concat() is now used instead of Concat<object>(). (breaking)
  • Update concat() to not special treat inject in arguments and use TraversalUtil.apply on it as with any other child traversals. (breaking)
  • Added format() step to perform String manipulations.
  • Checked graph features for meta-property support before trying to serialize them in VertexPropertySerializer for GraphBinary.
  • Fixed multiline query bug in console caused by upgrade to Groovy 4.
  • Added date manipulation steps asDate, dateAdd and dateDiff.
  • Added new data type DT to represent periods of time.
  • Added Gherkin support for Date.
  • Extended datetime() function to produce a current server date.
  • Added list filtering functions all and any.
  • Added list/set functions conjoin, combine, difference, disjunct, intersect, merge, and product.
  • Added getter for isStart on UnionStep.
  • Added NullVariableResolver that will quietly produce a null for each variable found when parsing with the grammar.
  • Changed the @MultiMetaProperties testing tag for Gherkin feature tests to instead be separate @MetaProperties and @MultiProperties.
  • Added agent parameter to DriverRemoteConnection options to allow a user-provided http.Agent implementation.
  • Fixed deserialization of element properties for GraphBinary.
  • Fixed bug in union() as a start step where the Path was including the starting dummy traverser.
  • Moved some TinkerGraph specific transaction tests from TransactionMultiThreadedTest to TinkerTransactionGraphTest
  • Fixed incorrect read operations in some cases for TinkerTransactionGraph.
  • Improved performance for Element comparison by comparing hashCode() prior to doing more expensive checks.

[[release-3-7.0]] === TinkerPop 3.7.0 (Release Date: July 31, 2023)

This release also includes changes from .

  • Allowed mergeV() and property(Map) to more easily define Cardinality values for properties for onMatch and onCreate options.
  • Removed connectOnStartup configuration option from gremlin-javascript.
  • Added marker interface PBiPredicate for predefined predicates.
  • Changed Gremlin.version() to read from the more specifically named tinkerpop-version attribute.
  • Added warning on vertex property cardinality mismatch when reading GraphML.
  • Added a union() start step.
  • Added the concat() step to perform String concatenations.
  • Added TinkerTransactionGraph, a reference implementation of transactional TinkerGraph
  • Replaced instances of Neo4j transaction graph with TinkerTransactionGraph for server, driver, and GLV integration tests

... (truncated)

Commits
  • 3d42e0c TinkerPop 3.7.0 release
  • 2e549e2 CTR Fix validate-distribution.sh
  • 16f9d4f TinkerPop 3.7.0 release
  • f27fca4 Merge branch '3.6-dev'
  • c4a1fc4 TinkerPop 3.6.5 release
  • 4213ccc Merge branch '3.5-dev' into 3.6-dev
  • 6d5ce44 TinkerPop 3.5.7 release
  • 3e6fbe8 CTR Fixed validate-distribution.sh
  • 6358a13 TinkerPop 3.5.7 release
  • 2b097ab Remove CreateTx* methods from TinkerFactory CTR.
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:tinkergraph-gremlin from 3.5.1 to 3.7.0

Changelog

Sourced from org.apache.tinkerpop:tinkergraph-gremlin's changelog.

== TinkerPop 3.7.0 (Gremfir Master of the Pan Flute)

image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/gremlin-zamfir.png[width=185]

[[release-3-7-1]] === TinkerPop 3.7.1 (NOT OFFICIALLY RELEASED YET)

This release also includes changes from .

  • Added the asString(), length(), toLower(), and toUpper() steps to perform String manipulations.
  • Added Gherkin parsing support for specific string results using str[].
  • Added the trim(), lTrim(), rTrim(), and reverse() steps to perform String manipulations.
  • Added replace(), split() and substring() steps to perform String manipulations.
  • Added Scope to asString(), length(), toLower(), toUpper(), trim(), lTrim(), rTrim(), replace(), split()andsubstring()to allowString` manipulation inside incoming lists.
  • Update concat() to accept Traversal varargs.
  • Corrected concat() signatures in gremlin-dotnet, Concat() is now used instead of Concat<object>(). (breaking)
  • Update concat() to not special treat inject in arguments and use TraversalUtil.apply on it as with any other child traversals. (breaking)
  • Added format() step to perform String manipulations.
  • Checked graph features for meta-property support before trying to serialize them in VertexPropertySerializer for GraphBinary.
  • Fixed multiline query bug in console caused by upgrade to Groovy 4.
  • Added date manipulation steps asDate, dateAdd and dateDiff.
  • Added new data type DT to represent periods of time.
  • Added Gherkin support for Date.
  • Extended datetime() function to produce a current server date.
  • Added list filtering functions all and any.
  • Added list/set functions conjoin, combine, difference, disjunct, intersect, merge, and product.
  • Added getter for isStart on UnionStep.
  • Added NullVariableResolver that will quietly produce a null for each variable found when parsing with the grammar.
  • Changed the @MultiMetaProperties testing tag for Gherkin feature tests to instead be separate @MetaProperties and @MultiProperties.
  • Added agent parameter to DriverRemoteConnection options to allow a user-provided http.Agent implementation.
  • Fixed deserialization of element properties for GraphBinary.
  • Fixed bug in union() as a start step where the Path was including the starting dummy traverser.
  • Moved some TinkerGraph specific transaction tests from TransactionMultiThreadedTest to TinkerTransactionGraphTest
  • Fixed incorrect read operations in some cases for TinkerTransactionGraph.
  • Improved performance for Element comparison by comparing hashCode() prior to doing more expensive checks.

[[release-3-7.0]] === TinkerPop 3.7.0 (Release Date: July 31, 2023)

This release also includes changes from .

  • Allowed mergeV() and property(Map) to more easily define Cardinality values for properties for onMatch and onCreate options.
  • Removed connectOnStartup configuration option from gremlin-javascript.
  • Added marker interface PBiPredicate for predefined predicates.
  • Changed Gremlin.version() to read from the more specifically named tinkerpop-version attribute.
  • Added warning on vertex property cardinality mismatch when reading GraphML.
  • Added a union() start step.
  • Added the concat() step to perform String concatenations.
  • Added TinkerTransactionGraph, a reference implementation of transactional TinkerGraph
  • Replaced instances of Neo4j transaction graph with TinkerTransactionGraph for server, driver, and GLV integration tests

... (truncated)

Commits
  • 3d42e0c TinkerPop 3.7.0 release
  • 2e549e2 CTR Fix validate-distribution.sh
  • 16f9d4f TinkerPop 3.7.0 release
  • f27fca4 Merge branch '3.6-dev'
  • c4a1fc4 TinkerPop 3.6.5 release
  • 4213ccc Merge branch '3.5-dev' into 3.6-dev
  • 6d5ce44 TinkerPop 3.5.7 release
  • 3e6fbe8 CTR Fixed validate-distribution.sh
  • 6358a13 TinkerPop 3.5.7 release
  • 2b097ab Remove CreateTx* methods from TinkerFactory CTR.
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `tinkerpop.version` from 3.5.1 to 3.7.0.

Updates `org.apache.tinkerpop:gremlin-core` from 3.5.1 to 3.7.0
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.5.1...3.7.0)

Updates `org.apache.tinkerpop:gremlin-groovy` from 3.5.1 to 3.7.0
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.5.1...3.7.0)

Updates `org.apache.tinkerpop:tinkergraph-gremlin` from 3.5.1 to 3.7.0
- [Changelog](https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc)
- [Commits](apache/tinkerpop@3.5.1...3.7.0)

---
updated-dependencies:
- dependency-name: org.apache.tinkerpop:gremlin-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.apache.tinkerpop:gremlin-groovy
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.apache.tinkerpop:tinkergraph-gremlin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 21, 2023
Copy link
Author

dependabot bot commented on behalf of github Nov 22, 2023

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/maven/tinkerpop.version-3.7.0 branch November 22, 2023 06:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant