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 the janusgraph group with 16 updates #1695

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Aug 1, 2023

Bumps the janusgraph group with 16 updates:

Package Update
org.apache.tinkerpop:tinkergraph-gremlin 3.5.6 to 3.6.4
org.apache.tinkerpop:gremlin-driver 3.5.6 to 3.6.4
org.apache.tinkerpop:gremlin-core 3.5.6 to 3.6.4
org.apache.tinkerpop:gremlin-groovy 3.5.6 to 3.6.4
org.apache.tinkerpop:gremlin-shaded 3.5.6 to 3.6.4
org.elasticsearch:elasticsearch 8.7.1 to 8.9.0
org.elasticsearch.client:elasticsearch-rest-client 8.7.1 to 8.9.0
co.elastic.clients:elasticsearch-java 8.7.1 to 8.9.0
org.janusgraph:janusgraph-core 0.6.3 to 1.0.0-20230705-152651.16846ad
org.janusgraph:janusgraph-inmemory 0.6.3 to 1.0.0-20230705-152651.16846ad
org.janusgraph:janusgraph-driver 0.6.3 to 1.0.0-20230705-152651.16846ad
org.janusgraph:janusgraph-berkeleyje 0.6.3 to 1.0.0-20230705-152651.16846ad
org.janusgraph:janusgraph-cql 0.6.3 to 1.0.0-20230705-152651.16846ad
org.janusgraph:janusgraph-lucene 0.6.3 to 1.0.0-20230705-152651.16846ad
org.janusgraph:janusgraph-es 0.6.3 to 1.0.0-20230705-152651.16846ad
org.janusgraph:janusgraph-hbase 0.6.3 to 1.0.0-20230705-152651.16846ad

Updates org.apache.tinkerpop:tinkergraph-gremlin from 3.5.6 to 3.6.4

Changelog

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

=== TinkerPop 3.6.4 (Release Date: May 12, 2023)

  • Fixed bug in TextP.regex and TextP.notRegex serialization for Java GLV.
  • Fixed a memory leak in the Gremlin.Net driver that only occurred if a CancellationToken was provided.

==== Bugs

  • TINKERPOP-2945 TextP.regex() Serialization Failing in Java driver
  • TINKERPOP-2944 Memory leak in Gremlin.Net driver if CancellationToken is used

[[release-3-6-3]] === TinkerPop 3.6.3 (Release Date: May 1, 2023)

This release also includes changes from .

  • Fixed bug in element() when traversing from edges where bulking was enabled.
  • Refactored PropertyMapStep to improve extensibility by providers. Removed final class declaration for ProjectStep and CoalesceStep.
  • Fixed bug in grammar that prevented declaration of a Map key named new without quotes.
  • Fixed bug in grammar that prevented parsing of Map key surrounded by parenthesis which is allowable in Groovy.
  • Fixed bug in GroovyTranslator that surrounded String keys with parenthesis for Map when not necessary.
  • Added support to the grammar allowing List and Map key declarations for Map entries.
  • Fixed Direction enum bug in gremlin-javascript where Direction.from_ and Direction.to was not properly aliased to Direction.OUT and Direction.IN
  • Fixed Direction enum in gremlin-python where Direction.from_ and Direction.to were not added, and they can now be used instead of defining from_=Direction.OUT and to=Direction.IN
  • Improved performance of comparison (equals) between not compatible types and nulls.
  • Fixed mergeV() and mergeE() steps to work when onCreate is immutable map.
  • Introduced Writing and Deleting marker interfaces to identify whether a step can perform write or delete or both on Graph.
  • For mergeV() and mergeE(), added checks for illegal hidden keys and refactored searchVertices to allow subclasses to override search criteria.
  • Added static map capturing possible Traversal steps that shall be added to traversal for a given operator.
  • Fixed bug which caused some traversals to throw GremlinTypeErrorException to users.

==== Bugs

  • TINKERPOP-2526 Gremlin Console performance with incomplete multi-line scripts
  • TINKERPOP-2767 Repeat Out Times traversal hangs indefinitely on first execution
  • TINKERPOP-2820 gremlin-python _close_session race condition/FD leak
  • TINKERPOP-2855 Performance degradation in TinkerGraph 3.5.4 and 3.5.5
  • TINKERPOP-2856 math() step fails if variable name contains a keyword
  • TINKERPOP-2861 Fix incorrect symlinks in source release zip
  • TINKERPOP-2863 HasId Step generates incorrect results when given a list of IDs mid-traversal
  • TINKERPOP-2870 mergeV requires key of 'new' to be quoted
  • TINKERPOP-2878 Incorrect handling of local operations when there are duplicate elements
  • TINKERPOP-2888 DefaultTraversal's applyStrategies performance decrease
  • TINKERPOP-2891 Inconsistent behavior when comparing a counted value with a negative value
  • TINKERPOP-2893 Incorrectly comparing a counted value with multiple predicates
  • TINKERPOP-2901 Incorrect result caused by has(key, predicate)
  • TINKERPOP-2902 Critical security vulnerability in snakeyaml
  • TINKERPOP-2905 gremlin-go gorillaTransporter.logHandler is not initialized correctly and leads to panic
  • TINKERPOP-2911 CountStrategy converts count().is(0) wrongly under ConnectiveStrategy
  • TINKERPOP-2918 Utils.GenerateUserAgent assumes Gremlin.Net.dll to be present when, in some environments, it is not.
  • TINKERPOP-2922 GroovyTranslator produces a Map not parseable by the grammar

... (truncated)

Commits
  • 9ae2b89 TinkerPop 3.6.4 release
  • 3b09a3b Merge branch '3.5-dev' into 3.6-dev
  • a930254 CTR docker permission updates for generated .NET test files
  • 8909cba Merge pull request #2063 from Bit-Quill/cole/update-notices-3.6
  • e5eecbd Added IO test files for 3.6.4 CTR
  • 0b870d1 fixing licenses/NOTICE
  • 2419826 Merge branch '3.5-dev' into 3.6-dev
  • a9f0704 Added IO test files for 3.5.7 CTR
  • 3765fc8 Merge branch '3.5-dev' into 3.6-dev
  • 78a14f7 [TINKERPOP-2945] Fixed bug in TextP.regex and TextP.notRegex serialization in...
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:gremlin-driver from 3.5.6 to 3.6.4

Changelog

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

=== TinkerPop 3.6.4 (Release Date: May 12, 2023)

  • Fixed bug in TextP.regex and TextP.notRegex serialization for Java GLV.
  • Fixed a memory leak in the Gremlin.Net driver that only occurred if a CancellationToken was provided.

==== Bugs

  • TINKERPOP-2945 TextP.regex() Serialization Failing in Java driver
  • TINKERPOP-2944 Memory leak in Gremlin.Net driver if CancellationToken is used

[[release-3-6-3]] === TinkerPop 3.6.3 (Release Date: May 1, 2023)

This release also includes changes from .

  • Fixed bug in element() when traversing from edges where bulking was enabled.
  • Refactored PropertyMapStep to improve extensibility by providers. Removed final class declaration for ProjectStep and CoalesceStep.
  • Fixed bug in grammar that prevented declaration of a Map key named new without quotes.
  • Fixed bug in grammar that prevented parsing of Map key surrounded by parenthesis which is allowable in Groovy.
  • Fixed bug in GroovyTranslator that surrounded String keys with parenthesis for Map when not necessary.
  • Added support to the grammar allowing List and Map key declarations for Map entries.
  • Fixed Direction enum bug in gremlin-javascript where Direction.from_ and Direction.to was not properly aliased to Direction.OUT and Direction.IN
  • Fixed Direction enum in gremlin-python where Direction.from_ and Direction.to were not added, and they can now be used instead of defining from_=Direction.OUT and to=Direction.IN
  • Improved performance of comparison (equals) between not compatible types and nulls.
  • Fixed mergeV() and mergeE() steps to work when onCreate is immutable map.
  • Introduced Writing and Deleting marker interfaces to identify whether a step can perform write or delete or both on Graph.
  • For mergeV() and mergeE(), added checks for illegal hidden keys and refactored searchVertices to allow subclasses to override search criteria.
  • Added static map capturing possible Traversal steps that shall be added to traversal for a given operator.
  • Fixed bug which caused some traversals to throw GremlinTypeErrorException to users.

==== Bugs

  • TINKERPOP-2526 Gremlin Console performance with incomplete multi-line scripts
  • TINKERPOP-2767 Repeat Out Times traversal hangs indefinitely on first execution
  • TINKERPOP-2820 gremlin-python _close_session race condition/FD leak
  • TINKERPOP-2855 Performance degradation in TinkerGraph 3.5.4 and 3.5.5
  • TINKERPOP-2856 math() step fails if variable name contains a keyword
  • TINKERPOP-2861 Fix incorrect symlinks in source release zip
  • TINKERPOP-2863 HasId Step generates incorrect results when given a list of IDs mid-traversal
  • TINKERPOP-2870 mergeV requires key of 'new' to be quoted
  • TINKERPOP-2878 Incorrect handling of local operations when there are duplicate elements
  • TINKERPOP-2888 DefaultTraversal's applyStrategies performance decrease
  • TINKERPOP-2891 Inconsistent behavior when comparing a counted value with a negative value
  • TINKERPOP-2893 Incorrectly comparing a counted value with multiple predicates
  • TINKERPOP-2901 Incorrect result caused by has(key, predicate)
  • TINKERPOP-2902 Critical security vulnerability in snakeyaml
  • TINKERPOP-2905 gremlin-go gorillaTransporter.logHandler is not initialized correctly and leads to panic
  • TINKERPOP-2911 CountStrategy converts count().is(0) wrongly under ConnectiveStrategy
  • TINKERPOP-2918 Utils.GenerateUserAgent assumes Gremlin.Net.dll to be present when, in some environments, it is not.
  • TINKERPOP-2922 GroovyTranslator produces a Map not parseable by the grammar

... (truncated)

Commits
  • 9ae2b89 TinkerPop 3.6.4 release
  • 3b09a3b Merge branch '3.5-dev' into 3.6-dev
  • a930254 CTR docker permission updates for generated .NET test files
  • 8909cba Merge pull request #2063 from Bit-Quill/cole/update-notices-3.6
  • e5eecbd Added IO test files for 3.6.4 CTR
  • 0b870d1 fixing licenses/NOTICE
  • 2419826 Merge branch '3.5-dev' into 3.6-dev
  • a9f0704 Added IO test files for 3.5.7 CTR
  • 3765fc8 Merge branch '3.5-dev' into 3.6-dev
  • 78a14f7 [TINKERPOP-2945] Fixed bug in TextP.regex and TextP.notRegex serialization in...
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:gremlin-core from 3.5.6 to 3.6.4

Changelog

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

=== TinkerPop 3.6.4 (Release Date: May 12, 2023)

  • Fixed bug in TextP.regex and TextP.notRegex serialization for Java GLV.
  • Fixed a memory leak in the Gremlin.Net driver that only occurred if a CancellationToken was provided.

==== Bugs

  • TINKERPOP-2945 TextP.regex() Serialization Failing in Java driver
  • TINKERPOP-2944 Memory leak in Gremlin.Net driver if CancellationToken is used

[[release-3-6-3]] === TinkerPop 3.6.3 (Release Date: May 1, 2023)

This release also includes changes from .

  • Fixed bug in element() when traversing from edges where bulking was enabled.
  • Refactored PropertyMapStep to improve extensibility by providers. Removed final class declaration for ProjectStep and CoalesceStep.
  • Fixed bug in grammar that prevented declaration of a Map key named new without quotes.
  • Fixed bug in grammar that prevented parsing of Map key surrounded by parenthesis which is allowable in Groovy.
  • Fixed bug in GroovyTranslator that surrounded String keys with parenthesis for Map when not necessary.
  • Added support to the grammar allowing List and Map key declarations for Map entries.
  • Fixed Direction enum bug in gremlin-javascript where Direction.from_ and Direction.to was not properly aliased to Direction.OUT and Direction.IN
  • Fixed Direction enum in gremlin-python where Direction.from_ and Direction.to were not added, and they can now be used instead of defining from_=Direction.OUT and to=Direction.IN
  • Improved performance of comparison (equals) between not compatible types and nulls.
  • Fixed mergeV() and mergeE() steps to work when onCreate is immutable map.
  • Introduced Writing and Deleting marker interfaces to identify whether a step can perform write or delete or both on Graph.
  • For mergeV() and mergeE(), added checks for illegal hidden keys and refactored searchVertices to allow subclasses to override search criteria.
  • Added static map capturing possible Traversal steps that shall be added to traversal for a given operator.
  • Fixed bug which caused some traversals to throw GremlinTypeErrorException to users.

==== Bugs

  • TINKERPOP-2526 Gremlin Console performance with incomplete multi-line scripts
  • TINKERPOP-2767 Repeat Out Times traversal hangs indefinitely on first execution
  • TINKERPOP-2820 gremlin-python _close_session race condition/FD leak
  • TINKERPOP-2855 Performance degradation in TinkerGraph 3.5.4 and 3.5.5
  • TINKERPOP-2856 math() step fails if variable name contains a keyword
  • TINKERPOP-2861 Fix incorrect symlinks in source release zip
  • TINKERPOP-2863 HasId Step generates incorrect results when given a list of IDs mid-traversal
  • TINKERPOP-2870 mergeV requires key of 'new' to be quoted
  • TINKERPOP-2878 Incorrect handling of local operations when there are duplicate elements
  • TINKERPOP-2888 DefaultTraversal's applyStrategies performance decrease
  • TINKERPOP-2891 Inconsistent behavior when comparing a counted value with a negative value
  • TINKERPOP-2893 Incorrectly comparing a counted value with multiple predicates
  • TINKERPOP-2901 Incorrect result caused by has(key, predicate)
  • TINKERPOP-2902 Critical security vulnerability in snakeyaml
  • TINKERPOP-2905 gremlin-go gorillaTransporter.logHandler is not initialized correctly and leads to panic
  • TINKERPOP-2911 CountStrategy converts count().is(0) wrongly under ConnectiveStrategy
  • TINKERPOP-2918 Utils.GenerateUserAgent assumes Gremlin.Net.dll to be present when, in some environments, it is not.
  • TINKERPOP-2922 GroovyTranslator produces a Map not parseable by the grammar

... (truncated)

Commits
  • 9ae2b89 TinkerPop 3.6.4 release
  • 3b09a3b Merge branch '3.5-dev' into 3.6-dev
  • a930254 CTR docker permission updates for generated .NET test files
  • 8909cba Merge pull request #2063 from Bit-Quill/cole/update-notices-3.6
  • e5eecbd Added IO test files for 3.6.4 CTR
  • 0b870d1 fixing licenses/NOTICE
  • 2419826 Merge branch '3.5-dev' into 3.6-dev
  • a9f0704 Added IO test files for 3.5.7 CTR
  • 3765fc8 Merge branch '3.5-dev' into 3.6-dev
  • 78a14f7 [TINKERPOP-2945] Fixed bug in TextP.regex and TextP.notRegex serialization in...
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:gremlin-groovy from 3.5.6 to 3.6.4

Changelog

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

=== TinkerPop 3.6.4 (Release Date: May 12, 2023)

  • Fixed bug in TextP.regex and TextP.notRegex serialization for Java GLV.
  • Fixed a memory leak in the Gremlin.Net driver that only occurred if a CancellationToken was provided.

==== Bugs

  • TINKERPOP-2945 TextP.regex() Serialization Failing in Java driver
  • TINKERPOP-2944 Memory leak in Gremlin.Net driver if CancellationToken is used

[[release-3-6-3]] === TinkerPop 3.6.3 (Release Date: May 1, 2023)

This release also includes changes from .

  • Fixed bug in element() when traversing from edges where bulking was enabled.
  • Refactored PropertyMapStep to improve extensibility by providers. Removed final class declaration for ProjectStep and CoalesceStep.
  • Fixed bug in grammar that prevented declaration of a Map key named new without quotes.
  • Fixed bug in grammar that prevented parsing of Map key surrounded by parenthesis which is allowable in Groovy.
  • Fixed bug in GroovyTranslator that surrounded String keys with parenthesis for Map when not necessary.
  • Added support to the grammar allowing List and Map key declarations for Map entries.
  • Fixed Direction enum bug in gremlin-javascript where Direction.from_ and Direction.to was not properly aliased to Direction.OUT and Direction.IN
  • Fixed Direction enum in gremlin-python where Direction.from_ and Direction.to were not added, and they can now be used instead of defining from_=Direction.OUT and to=Direction.IN
  • Improved performance of comparison (equals) between not compatible types and nulls.
  • Fixed mergeV() and mergeE() steps to work when onCreate is immutable map.
  • Introduced Writing and Deleting marker interfaces to identify whether a step can perform write or delete or both on Graph.
  • For mergeV() and mergeE(), added checks for illegal hidden keys and refactored searchVertices to allow subclasses to override search criteria.
  • Added static map capturing possible Traversal steps that shall be added to traversal for a given operator.
  • Fixed bug which caused some traversals to throw GremlinTypeErrorException to users.

==== Bugs

  • TINKERPOP-2526 Gremlin Console performance with incomplete multi-line scripts
  • TINKERPOP-2767 Repeat Out Times traversal hangs indefinitely on first execution
  • TINKERPOP-2820 gremlin-python _close_session race condition/FD leak
  • TINKERPOP-2855 Performance degradation in TinkerGraph 3.5.4 and 3.5.5
  • TINKERPOP-2856 math() step fails if variable name contains a keyword
  • TINKERPOP-2861 Fix incorrect symlinks in source release zip
  • TINKERPOP-2863 HasId Step generates incorrect results when given a list of IDs mid-traversal
  • TINKERPOP-2870 mergeV requires key of 'new' to be quoted
  • TINKERPOP-2878 Incorrect handling of local operations when there are duplicate elements
  • TINKERPOP-2888 DefaultTraversal's applyStrategies performance decrease
  • TINKERPOP-2891 Inconsistent behavior when comparing a counted value with a negative value
  • TINKERPOP-2893 Incorrectly comparing a counted value with multiple predicates
  • TINKERPOP-2901 Incorrect result caused by has(key, predicate)
  • TINKERPOP-2902 Critical security vulnerability in snakeyaml
  • TINKERPOP-2905 gremlin-go gorillaTransporter.logHandler is not initialized correctly and leads to panic
  • TINKERPOP-2911 CountStrategy converts count().is(0) wrongly under ConnectiveStrategy
  • TINKERPOP-2918 Utils.GenerateUserAgent assumes Gremlin.Net.dll to be present when, in some environments, it is not.
  • TINKERPOP-2922 GroovyTranslator produces a Map not parseable by the grammar

... (truncated)

Commits
  • 9ae2b89 TinkerPop 3.6.4 release
  • 3b09a3b Merge branch '3.5-dev' into 3.6-dev
  • a930254 CTR docker permission updates for generated .NET test files
  • 8909cba Merge pull request #2063 from Bit-Quill/cole/update-notices-3.6
  • e5eecbd Added IO test files for 3.6.4 CTR
  • 0b870d1 fixing licenses/NOTICE
  • 2419826 Merge branch '3.5-dev' into 3.6-dev
  • a9f0704 Added IO test files for 3.5.7 CTR
  • 3765fc8 Merge branch '3.5-dev' into 3.6-dev
  • 78a14f7 [TINKERPOP-2945] Fixed bug in TextP.regex and TextP.notRegex serialization in...
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:gremlin-shaded from 3.5.6 to 3.6.4

Changelog

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

=== TinkerPop 3.6.4 (Release Date: May 12, 2023)

  • Fixed bug in TextP.regex and TextP.notRegex serialization for Java GLV.
  • Fixed a memory leak in the Gremlin.Net driver that only occurred if a CancellationToken was provided.

==== Bugs

  • TINKERPOP-2945 TextP.regex() Serialization Failing in Java driver
  • TINKERPOP-2944 Memory leak in Gremlin.Net driver if CancellationToken is used

[[release-3-6-3]] === TinkerPop 3.6.3 (Release Date: May 1, 2023)

This release also includes changes from .

  • Fixed bug in element() when traversing from edges where bulking was enabled.
  • Refactored PropertyMapStep to improve extensibility by providers. Removed final class declaration for ProjectStep and CoalesceStep.
  • Fixed bug in grammar that prevented declaration of a Map key named new without quotes.
  • Fixed bug in grammar that prevented parsing of Map key surrounded by parenthesis which is allowable in Groovy.
  • Fixed bug in GroovyTranslator that surrounded String keys with parenthesis for Map when not necessary.
  • Added support to the grammar allowing List and Map key declarations for Map entries.
  • Fixed Direction enum bug in gremlin-javascript where Direction.from_ and Direction.to was not properly aliased to Direction.OUT and Direction.IN
  • Fixed Direction enum in gremlin-python where Direction.from_ and Direction.to were not added, and they can now be used instead of defining from_=Direction.OUT and to=Direction.IN
  • Improved performance of comparison (equals) between not compatible types and nulls.
  • Fixed mergeV() and mergeE() steps to work when onCreate is immutable map.
  • Introduced Writing and Deleting marker interfaces to identify whether a step can perform write or delete or both on Graph.
  • For mergeV() and mergeE(), added checks for illegal hidden keys and refactored searchVertices to allow subclasses to override search criteria.
  • Added static map capturing possible Traversal steps that shall be added to traversal for a given operator.
  • Fixed bug which caused some traversals to throw GremlinTypeErrorException to users.

==== Bugs

  • TINKERPOP-2526 Gremlin Console performance with incomplete multi-line scripts
  • TINKERPOP-2767 Repeat Out Times traversal hangs indefinitely on first execution
  • TINKERPOP-2820 gremlin-python _close_session race condition/FD leak
  • TINKERPOP-2855 Performance degradation in TinkerGraph 3.5.4 and 3.5.5
  • TINKERPOP-2856 math() step fails if variable name contains a keyword
  • TINKERPOP-2861 Fix incorrect symlinks in source release zip
  • TINKERPOP-2863 HasId Step generates incorrect results when given a list of IDs mid-traversal
  • TINKERPOP-2870 mergeV requires key of 'new' to be quoted
  • TINKERPOP-2878 Incorrect handling of local operations when there are duplicate elements
  • TINKERPOP-2888 DefaultTraversal's applyStrategies performance decrease
  • TINKERPOP-2891 Inconsistent behavior when comparing a counted value with a negative value
  • TINKERPOP-2893 Incorrectly comparing a counted value with multiple predicates
  • TINKERPOP-2901 Incorrect result caused by has(key, predicate)
  • TINKERPOP-2902 Critical security vulnerability in snakeyaml
  • TINKERPOP-2905 gremlin-go gorillaTransporter.logHandler is not initialized correctly and leads to panic
  • TINKERPOP-2911 CountStrategy converts count().is(0) wrongly under ConnectiveStrategy
  • TINKERPOP-2918 Utils.GenerateUserAgent assumes Gremlin.Net.dll to be present when, in some environments, it is not.
  • TINKERPOP-2922 GroovyTranslator produces a Map not parseable by the grammar

... (truncated)

Commits
  • 9ae2b89 TinkerPop 3.6.4 release
  • 3b09a3b Merge branch '3.5-dev' into 3.6-dev
  • a930254 CTR docker permission updates for generated .NET test files
  • 8909cba Merge pull request #2063 from Bit-Quill/cole/update-notices-3.6
  • e5eecbd Added IO test files for 3.6.4 CTR
  • 0b870d1 fixing licenses/NOTICE
  • 2419826 Merge branch '3.5-dev' into 3.6-dev
  • a9f0704 Added IO test files for 3.5.7 CTR
  • 3765fc8 Merge branch '3.5-dev' into 3.6-dev
  • 78a14f7 [TINKERPOP-2945] Fixed bug in TextP.regex and TextP.notRegex serialization in...
  • Additional commits viewable in compare view

Updates org.elasticsearch:elasticsearch from 8.7.1 to 8.9.0

Release notes

Sourced from org.elasticsearch:elasticsearch's releases.

Elasticsearch 8.9.0

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/8.9/release-notes-8.9.0.html

Elasticsearch 8.8.2

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.2.html

Elasticsearch 8.8.1

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.1.html

Elasticsearch 8.8.0

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.0.html

Commits

Updates org.elasticsearch.client:elasticsearch-rest-client from 8.7.1 to 8.9.0

Release notes

Sourced from org.elasticsearch.client:elasticsearch-rest-client's releases.

Elasticsearch 8.9.0

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/8.9/release-notes-8.9.0.html

Elasticsearch 8.8.2

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.2.html

Elasticsearch 8.8.1

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.1.html

Elasticsearch 8.8.0

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.0.html

Commits

Updates co.elastic.clients:elasticsearch-java from 8.7.1 to 8.9.0

Commits
  • a98c9d6 [codegen] Update to latest 8.9 API spec
  • 3d2cb30 [DOCS] Changes getting started button link on landing page. (#626) (#628)
  • 7dc7491 [DOCS] Temporarily redirect getting started button link on landing page. (#62...
  • ac905b3 [DOCS] Adds getting started content based on the template (#617) (#622)
  • bf459ff [codegen] Bump version
  • c8fdfca [codegen] Update to latest API spec
  • 25e61a5 Fix spurious JSON event emitted by JsonpUtils.copy() (#597)
  • 4c3a13b Refactor RestClientTransport to allow using other http client libraries (#584)
  • 38ec037 Add pipeline setup to index and create operations (#587)
  • 9246eab Throw a TransportException when an error response cannot be parsed (#579)
  • Additional commits viewable in compare view

Updates org.janusgraph:janusgraph-core from 0.6.3 to 1.0.0-20230705-152651.16846ad

Release notes

Sourced from org.janusgraph:janusgraph-core's releases.

1.0.0-rc2

Version 1.0.0-rc2 (February 26, 2023)

Number of release downloads

Full documentation can be found at https://docs.janusgraph.org/master/

<dependency>
   <groupId>org.janusgraph</groupId>
   <artifactId>janusgraph-core</artifactId>
   <version>1.0.0-rc2</version>
</dependency>

For more information on features and bug fixes in 1.0.0-rc2, see this GitHub milestone.

Notable new features

  • Upgrade to TinkerPop 3.6.2
  • Support for Cassandra 4
  • (Official) support for Java 11
  • Cache performance improvements
  • Upgrade to Log4j2
  • Use mixed indices for numeric aggregations (min(), max(), mean(), sum())
  • Support TEXTSTRING mapping in Solr
  • New graph API to evaluate Gremlin scripts if JanusGraph is used embedded
  • ConfiguredGraphFactory can now create different indexes for different graphs in Elasticsearch
  • Add management API to remove ghost vertices
  • Add possibility to remove stale graph index entries
  • Improved support for Geoshapes in GraphBinary
  • Remove dependency on cassandra-all
  • Support TTL for CQL backend on Amazon Managed KeySpace
  • Improved index life-cycle. Better index management, possibility to remove indexes.
  • Support for ElasticSearch 8
  • Possibility to use dedicated ScyllaDB driver when JanusGraph is used embedded

Tested Compatibility

  • Apache Cassandra 3.11.10, 4.0.6
  • Apache HBase 2.5.0
  • Oracle BerkeleyJE 7.5.11
  • ScyllaDB 5.1.4
  • Elasticsearch 6.0.1, 6.6.0, 7.17.8, 8.6.0
  • Apache Lucene 8.11.1
  • Apache Solr 8.11.1
  • Apache TinkerPop 3.6.2
  • Java 8, 11

Installed versions in the Pre-Packaged Distribution

... (truncated)

Changelog

Sourced from org.janusgraph:janusgraph-core's changelog.

Changelog

Version Compatibility

The JanusGraph project is growing along with the rest of the graph and big data ecosystem and utilized storage and indexing backends. Below are version compatibilities between the various versions of components. For dependent backend systems, different minor versions are typically supported as well. It is strongly encouraged to verify version compatibility prior to deploying JanusGraph.

Although JanusGraph may be compatible with older and no longer supported versions of its dependencies, users are warned that there are possible risks and security exposures with running software that is no longer supported or updated. Please check with the software providers to understand their supported versions. Users are strongly encouraged to use the latest versions of the software.

Version Compatibility Matrix

Currently supported

All currently supported versions of JanusGraph are listed below.

!!! info You are currently viewing the documentation page of JanusGraph version {{ latest_version }}. To ensure that the information below is up to date, please double check that this is not an archived version of the documentation.

JanusGraph Storage Version Cassandra HBase Bigtable ScyllaDB Elasticsearch Solr TinkerPop Spark Scala
0.6.z 2 3.0.z, 3.11.z 1.6.z, 2.2.z 1.3.0, 1.4.0, 1.5.z, 1.6.z, 1.7.z, 1.8.z, 1.9.z, 1.10.z, 1.11.z, 1.14.z N/A 6.y, 7.y 7.y, 8.y 3.5.z 3.0.z 2.12.z
1.0.z 2 3.11.z, 4.0.z 2.5.z 1.3.0, 1.4.0, 1.5.z, 1.6.z, 1.7.z, 1.8.z, 1.9.z, 1.10.z, 1.11.z, 1.14.z 5.y 6.y, 7.y, 8.y 8.y 3.6.z 3.2.z 2.12.z

!!! info Even so ScyllaDB is marked as N/A prior version 1.0.0 it was actually supported using cql storage option. The only difference is that from version 1.0.0 JanusGraph officially supports ScyllaDB using scylla and cql storage options and have extended test coverage for ScyllaDB.

End-of-Life

The versions of JanusGraph listed below are outdated and will no longer receive bugfixes.

JanusGraph Storage Version Cassandra HBase Bigtable ScyllaDB Elasticsearch Solr TinkerPop Spark Scala
0.1.z 1 1.2.z, 2.0.z, 2.1.z 0.98.z, 1.0.z, 1.1.z, 1.2.z 0.9.z, 1.0.0-preZ, 1.0.0 N/A 1.5.z 5.2.z 3.2.z 1.6.z 2.10.z
0.2.z 1 1.2.z, 2.0.z, 2.1.z, 2.2.z, 3.0.z, 3.11.z 0.98.z, 1.0.z, 1.1.z, 1.2.z, 1.3.z 0.9.z, 1.0.0-preZ, 1.0.0 N/A 1.5-1.7.z, 2.3-2.4.z, 5.y, 6.y 5.2-5.5.z, 6.2-6.6.z, 7.y 3.2.z 1.6.z 2.10.z
0.3.z 2 1.2.z, 2.0.z, 2.1.z, 2.2.z, 3.0.z, 3.11.z 1.0.z, 1.1.z, 1.2.z, 1.3.z, 1.4.z 1.0.0, 1.1.0, 1.1.2, 1.2.0, 1.3.0, 1.4.0 N/A 1.5-1.7.z, 2.3-2.4.z, 5.y, 6.y 5.2-5.5.z, 6.2-6.6.z, 7.y 3.3.z 2.2.z 2.11.z
0.4.z 2 2.1.z, 2.2.z, 3.0.z, 3.11.z 1.2.z, 1.3.z, 1.4.z, 2.1.z N/A N/A 5.y, 6.y 7.y 3.4.z 2.2.z 2.11.z
0.5.z 2 2.1.z, 2.2.z, 3.0.z, 3.11.z 1.2.z, 1.3.z, 1.4.z, 2.1.z 1.3.0, 1.4.0, 1.5.z, 1.6.z, 1.7.z, 1.8.z, 1.9.z, 1.10.z, 1.11.z, 1.14.z N/A 6.y, 7.y 7.y 3.4.z 2.2.z 2.11.z

Release Notes

... (truncated)

Commits

Updates org.janusgraph:janusgraph-inmemory from 0.6.3 to 1.0.0-20230705-152651.16846ad

Release notes

Sourced from org.janusgraph:janusgraph-inmemory's releases.

1.0.0-rc2

Version 1.0.0-rc2 (February 26, 2023)

Number of release downloads

Full documentation can be found at https://docs.janusgraph.org/master/

<dependency>
   <groupId>org.janusgraph</groupId>
   <artifactId>janusgraph-core</artifactId>
   <version>1.0.0-rc2</version>
</dependency>

For more information on features and bug fixes in 1.0.0-rc2, see this GitHub milestone.

Notable new features

  • Upgrade to TinkerPop 3.6.2
  • Support for Cassandra 4
  • (Official) support for Java 11
  • Cache performance improvements
  • Upgrade to Log4j2
  • Use mixed indices for numeric aggregations (min(), max(), mean(), sum())
  • Support TEXTSTRING mapping in Solr
  • New graph API to evaluate Gremlin scripts if JanusGraph is used embedded
  • ConfiguredGraphFactory can now create different indexes for different graphs in Elasticsearch
  • Add management API to remove ghost vertices
  • Add possibility to remove stale graph index entries
  • Improved support for Geoshapes in GraphBinary
  • Remove dependency on cassandra-all
  • Support TTL for CQL backend on Amazon Managed KeySpace
  • Improved index life-cycle. Better index management, possibility to remove indexes.
  • Support for ElasticSearch 8
  • Possibility to use dedicated ScyllaDB driver when JanusGraph is used embedded

Tested Compatibility

  • Apache Cassandra 3.11.10, 4.0.6
  • Apache HBase 2.5.0
  • Oracle BerkeleyJE 7.5.11
  • ScyllaDB 5.1.4
  • Elasticsearch 6.0.1, 6.6.0, 7.17.8, 8.6.0
  • Apache Lucene 8.11.1
  • Apache Solr 8.11.1
  • Apache TinkerPop 3.6.2
  • Java 8, 11

Installed versions in the Pre-Packaged Distribution

... (truncated)

Changelog

Sourced from org.janusgraph:janusgraph-inmemory's changelog.

Changelog

Version Compatibility

The JanusGraph project is growing along with the rest of the graph and big data ecosystem and utilized storage and indexing backends. Below are version compatibilities between the various versions of components. For dependent backend systems, different minor versions are typically supported as well. It is strongly encouraged to verify version compatibility prior to deploying JanusGraph.

Although JanusGraph may be compatible with older and no longer supported versions of its dependencies, users are warned that there are possible risks and security exposures with running software that is no longer supported or updated. Please check with the software providers to understand their supported versions. Users are strongly encouraged to use the latest versions of the software.

Version Compatibility Matrix

Currently supported

All currently supported versions of JanusGraph are listed below.

!!! info You are currently viewing the documentation page of JanusGraph version {{ latest_version }}. To ensure that the information below is up to date, please double check that this is not an archived version of the documentation.

JanusGraph Storage Version Cassandra HBase Bigtable ScyllaDB Elasticsearch Solr TinkerPop Spark Scala
0.6.z 2 3.0.z, 3.11.z 1.6.z, 2.2.z 1.3.0, 1.4.0, 1.5.z, 1.6.z, 1.7.z, 1.8.z, 1.9.z, 1.10.z, 1.11.z, 1.14.z N/A 6.y, 7.y 7.y, 8.y 3.5.z 3.0.z 2.12.z
1.0.z 2 3.11.z, 4.0.z 2.5.z 1.3.0, 1.4.0, 1.5.z, 1.6.z, 1.7.z, 1.8.z, 1.9.z, 1.10.z, 1.11.z, 1.14.z 5.y 6.y, 7.y, 8.y 8.y 3.6.z 3.2.z 2.12.z

!!! info Even so ScyllaDB is marked as N/A prior version 1.0.0 it was actually supported using cql storage option. The only difference is that from version 1.0.0 JanusGraph officially supports ScyllaDB using scylla and cql storage options and have extended test coverage for ScyllaDB.

End-of-Life

The versions of JanusGraph listed below are outdated and will no longer receive bugfixes.

JanusGraph Storage Version Cassandra HBase Bigtable ScyllaDB Elasticsearch Solr TinkerPop Spark Scala
0.1.z 1 1.2.z, 2.0.z, 2.1.z 0.98.z, 1.0.z, 1.1.z, 1.2.z 0.9.z, 1.0.0-preZ, 1.0.0 N/A 1.5.z 5.2.z 3.2.z 1.6.z 2.10.z
0.2.z 1 1.2.z, 2.0.z, 2.1.z, 2.2.z, 3.0.z, 3.11.z 0.98.z, 1.0.z, 1.1.z, 1.2.z, 1.3.z 0.9.z, 1.0.0-preZ, 1.0.0 N/A 1.5-1.7.z, 2.3-2.4.z, 5.y, 6.y 5.2-5.5.z, 6.2-6.6.z, 7.y 3.2.z 1.6.z 2.10.z
0.3.z 2 1.2.z, 2.0.z, 2.1.z, 2.2.z, 3.0.z, 3.11.z 1.0.z, 1.1.z, 1.2.z, 1.3.z, 1.4.z 1.0.0, 1.1.0, 1.1.2, 1.2.0, 1.3.0, 1.4.0 N/A 1.5-1.7.z, 2.3-2.4.z, 5.y, 6.y 5.2-5.5.z, 6.2-6.6.z, 7.y 3.3.z 2.2.z 2.11.z
0.4.z 2 2.1.z, 2.2.z, 3.0.z, 3.11.z 1.2.z, 1.3.z, 1.4.z, 2.1.z N/A N/A 5.y, 6.y 7.y 3.4.z 2.2.z 2.11.z
0.5.z 2 2.1.z, 2.2.z, 3.0.z, 3.11.z 1.2.z, 1.3.z, 1.4.z, 2.1.z 1.3.0, 1.4.0, 1.5.z, 1.6.z, 1.7.z, 1.8.z, 1.9.z, 1.10.z, 1.11.z, 1.14.z N/A 6.y, 7.y 7.y 3.4.z 2.2.z 2.11.z

Release Notes

... (truncated)

Commits

Updates org.janusgraph:janusgraph-driver from 0.6.3 to 1.0.0-20230705-152651.16846ad

Release notes

Sourced from org.janusgraph:janusgraph-driver's releases.

1.0.0-rc2

Version 1.0.0-rc2 (February 26, 2023)

Number of release downloads

Full documentation can be found at https://docs.janusgraph.org/master/

<dependency>
   <groupId>org.janusgraph</groupId>
   <artifactId>janusgraph-core</artifactId>
   <version>1.0.0-rc2</version>
</dependency>

For more information on features and bug fixes in 1.0.0-rc2, see this GitHub milestone.

Notable new features

  • Upgrade to TinkerPop 3.6.2
  • Support for Cassandra 4
  • (Official) support for Java 11
  • Cache performance improvements
  • Upgrade to Log4j2
  • Use mixed indices for numeric aggregations (min(), max(), mean(), sum())
  • Support TEXTSTRING mapping in Solr
  • New graph API to evaluate Gremlin scripts if JanusGraph is used embedded
  • ConfiguredGraphFactory can now create different indexes for different graphs in Elasticsearch
  • Add management API to remove ghost vertices
  • Add possibility to remove stale graph index entries
  • Improved support for Geoshapes in GraphBinary
  • Remove dependency on cassandra-all
  • Support TTL for CQL backend on Amazon Managed KeySpace
  • Improved index life-cycle. Better index management, possibility to remove indexes.
  • Support for ElasticSearch 8
  • Possibility to use dedicated ScyllaDB driver when JanusGraph is used embedded

Tested Compatibility

  • Apache Cassandra 3.11.10, 4.0.6
  • Apache HBase 2.5.0
  • Oracle BerkeleyJE 7.5.11
  • ScyllaDB 5.1.4
  • Elasticsearch 6.0.1, 6.6.0, 7.17.8, 8.6.0
  • Apache Lucene 8.11.1
  • Apache Solr 8.11.1
  • Apache TinkerPop 3.6.2
  • Java 8, 11

Installed versions in the Pre-Packaged Distribution

... (truncated)

Changelog

Sourced from org.janusgraph:janusgraph-driver's changel...

Description has been truncated

Bumps the janusgraph group with 16 updates:

| Package | Update |
| --- | --- |
| [org.apache.tinkerpop:tinkergraph-gremlin](https://github.com/apache/tinkerpop) | 3.5.6 to 3.6.4 |
| [org.apache.tinkerpop:gremlin-driver](https://github.com/apache/tinkerpop) | 3.5.6 to 3.6.4 |
| [org.apache.tinkerpop:gremlin-core](https://github.com/apache/tinkerpop) | 3.5.6 to 3.6.4 |
| [org.apache.tinkerpop:gremlin-groovy](https://github.com/apache/tinkerpop) | 3.5.6 to 3.6.4 |
| [org.apache.tinkerpop:gremlin-shaded](https://github.com/apache/tinkerpop) | 3.5.6 to 3.6.4 |
| [org.elasticsearch:elasticsearch](https://github.com/elastic/elasticsearch) | 8.7.1 to 8.9.0 |
| [org.elasticsearch.client:elasticsearch-rest-client](https://github.com/elastic/elasticsearch) | 8.7.1 to 8.9.0 |
| [co.elastic.clients:elasticsearch-java](https://github.com/elastic/elasticsearch-java) | 8.7.1 to 8.9.0 |
| [org.janusgraph:janusgraph-core](https://github.com/JanusGraph/janusgraph) | 0.6.3 to 1.0.0-20230705-152651.16846ad |
| [org.janusgraph:janusgraph-inmemory](https://github.com/JanusGraph/janusgraph) | 0.6.3 to 1.0.0-20230705-152651.16846ad |
| [org.janusgraph:janusgraph-driver](https://github.com/JanusGraph/janusgraph) | 0.6.3 to 1.0.0-20230705-152651.16846ad |
| [org.janusgraph:janusgraph-berkeleyje](https://github.com/JanusGraph/janusgraph) | 0.6.3 to 1.0.0-20230705-152651.16846ad |
| [org.janusgraph:janusgraph-cql](https://github.com/JanusGraph/janusgraph) | 0.6.3 to 1.0.0-20230705-152651.16846ad |
| [org.janusgraph:janusgraph-lucene](https://github.com/JanusGraph/janusgraph) | 0.6.3 to 1.0.0-20230705-152651.16846ad |
| [org.janusgraph:janusgraph-es](https://github.com/JanusGraph/janusgraph) | 0.6.3 to 1.0.0-20230705-152651.16846ad |
| [org.janusgraph:janusgraph-hbase](https://github.com/JanusGraph/janusgraph) | 0.6.3 to 1.0.0-20230705-152651.16846ad |


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

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

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

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

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

Updates `org.elasticsearch:elasticsearch` from 8.7.1 to 8.9.0
- [Release notes](https://github.com/elastic/elasticsearch/releases)
- [Changelog](https://github.com/elastic/elasticsearch/blob/main/CHANGELOG.md)
- [Commits](elastic/elasticsearch@v8.7.1...v8.9.0)

Updates `org.elasticsearch.client:elasticsearch-rest-client` from 8.7.1 to 8.9.0
- [Release notes](https://github.com/elastic/elasticsearch/releases)
- [Changelog](https://github.com/elastic/elasticsearch/blob/main/CHANGELOG.md)
- [Commits](elastic/elasticsearch@v8.7.1...v8.9.0)

Updates `co.elastic.clients:elasticsearch-java` from 8.7.1 to 8.9.0
- [Release notes](https://github.com/elastic/elasticsearch-java/releases)
- [Changelog](https://github.com/elastic/elasticsearch-java/blob/main/CHANGELOG.md)
- [Commits](elastic/elasticsearch-java@v8.7.1...v8.9.0)

Updates `org.janusgraph:janusgraph-core` from 0.6.3 to 1.0.0-20230705-152651.16846ad
- [Release notes](https://github.com/JanusGraph/janusgraph/releases)
- [Changelog](https://github.com/JanusGraph/janusgraph/blob/master/docs/changelog.md)
- [Commits](https://github.com/JanusGraph/janusgraph/commits)

Updates `org.janusgraph:janusgraph-inmemory` from 0.6.3 to 1.0.0-20230705-152651.16846ad
- [Release notes](https://github.com/JanusGraph/janusgraph/releases)
- [Changelog](https://github.com/JanusGraph/janusgraph/blob/master/docs/changelog.md)
- [Commits](https://github.com/JanusGraph/janusgraph/commits)

Updates `org.janusgraph:janusgraph-driver` from 0.6.3 to 1.0.0-20230705-152651.16846ad
- [Release notes](https://github.com/JanusGraph/janusgraph/releases)
- [Changelog](https://github.com/JanusGraph/janusgraph/blob/master/docs/changelog.md)
- [Commits](https://github.com/JanusGraph/janusgraph/commits)

Updates `org.janusgraph:janusgraph-berkeleyje` from 0.6.3 to 1.0.0-20230705-152651.16846ad
- [Release notes](https://github.com/JanusGraph/janusgraph/releases)
- [Changelog](https://github.com/JanusGraph/janusgraph/blob/master/docs/changelog.md)
- [Commits](https://github.com/JanusGraph/janusgraph/commits)

Updates `org.janusgraph:janusgraph-cql` from 0.6.3 to 1.0.0-20230705-152651.16846ad
- [Release notes](https://github.com/JanusGraph/janusgraph/releases)
- [Changelog](https://github.com/JanusGraph/janusgraph/blob/master/docs/changelog.md)
- [Commits](https://github.com/JanusGraph/janusgraph/commits)

Updates `org.janusgraph:janusgraph-lucene` from 0.6.3 to 1.0.0-20230705-152651.16846ad
- [Release notes](https://github.com/JanusGraph/janusgraph/releases)
- [Changelog](https://github.com/JanusGraph/janusgraph/blob/master/docs/changelog.md)
- [Commits](https://github.com/JanusGraph/janusgraph/commits)

Updates `org.janusgraph:janusgraph-es` from 0.6.3 to 1.0.0-20230705-152651.16846ad
- [Release notes](https://github.com/JanusGraph/janusgraph/releases)
- [Changelog](https://github.com/JanusGraph/janusgraph/blob/master/docs/changelog.md)
- [Commits](https://github.com/JanusGraph/janusgraph/commits)

Updates `org.janusgraph:janusgraph-hbase` from 0.6.3 to 1.0.0-20230705-152651.16846ad
- [Release notes](https://github.com/JanusGraph/janusgraph/releases)
- [Changelog](https://github.com/JanusGraph/janusgraph/blob/master/docs/changelog.md)
- [Commits](https://github.com/JanusGraph/janusgraph/commits)

---
updated-dependencies:
- dependency-name: org.apache.tinkerpop:tinkergraph-gremlin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: janusgraph
- dependency-name: org.apache.tinkerpop:gremlin-driver
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: janusgraph
- dependency-name: org.apache.tinkerpop:gremlin-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: janusgraph
- dependency-name: org.apache.tinkerpop:gremlin-groovy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: janusgraph
- dependency-name: org.apache.tinkerpop:gremlin-shaded
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: janusgraph
- dependency-name: org.elasticsearch:elasticsearch
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: janusgraph
- dependency-name: org.elasticsearch.client:elasticsearch-rest-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: janusgraph
- dependency-name: co.elastic.clients:elasticsearch-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: janusgraph
- dependency-name: org.janusgraph:janusgraph-core
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: janusgraph
- dependency-name: org.janusgraph:janusgraph-inmemory
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: janusgraph
- dependency-name: org.janusgraph:janusgraph-driver
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: janusgraph
- dependency-name: org.janusgraph:janusgraph-berkeleyje
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: janusgraph
- dependency-name: org.janusgraph:janusgraph-cql
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: janusgraph
- dependency-name: org.janusgraph:janusgraph-lucene
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: janusgraph
- dependency-name: org.janusgraph:janusgraph-es
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: janusgraph
- dependency-name: org.janusgraph:janusgraph-hbase
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: janusgraph
...

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 Aug 1, 2023
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Aug 1, 2023

Dependabot tried to add @planetf1 as a reviewer to this PR, but received the following error from GitHub:

POST https://api.github.com/repos/lcpopa/egeria/pulls/1695/requested_reviewers: 422 - Reviews may only be requested from collaborators. One or more of the users or teams you specified is not a collaborator of the lcpopa/egeria repository. // See: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request

Copy link
Author

dependabot bot commented on behalf of github Apr 1, 2024

Superseded by #1751.

@dependabot dependabot bot closed this Apr 1, 2024
@dependabot dependabot bot deleted the dependabot/gradle/janusgraph-ebf1914b44 branch April 1, 2024 03:51
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.

0 participants