Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps gremlinDriverVersion from 3.7.4 to 3.8.0.
Updates org.apache.tinkerpop:gremlin-driver from 3.7.4 to 3.8.0

Changelog

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

== TinkerPop 3.8.0 (Grix Greven)

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

[[release-3-8-1]] === TinkerPop 3.8.1 (NOT OFFICIALLY RELEASED YET)

This release also includes changes from <<release-3-7-6, 3.7.6>>.

[[release-3-8-0]] === TinkerPop 3.8.0 (Release Date: November 12, 2025)

This release also includes changes from <<release-3-7-5, 3.7.5>>.

  • Added a Gremln MCP server.
  • Added the Air Routes 1.0 dataset to the set of available samples packaged with distributions.
  • Added a minimal distribution for tinkergraph-gremlin using the min classifier that doesn't include the sample datasets.
  • Removed AggregateLocalStep and aggregate(Scope, String), and renamed AggregateGlobalStep to AggregateStep.
  • Removed store() in favor of using local(aggregate()).
  • Removed Vertex/ReferenceVertex from grammar. Use vertex id in traversals now instead.
  • Removed has(key, traversal) and has(T, traversal) options for has() step.
  • Fixed bug where InlineFilterStrategy could add an empty has().
  • Normalized dotnet Element.properties to lists.
  • Normalized python and javascript Element.properties to lists.
  • Renamed none() step to discard().
  • Repurposed none() step as a list filtering step with the signature none(P).
  • Modified mathematical operators to prevent overflows in steps such as sum() and 'sack()' to prefer promotion to the next highest number type.
  • Modified local() to be "object-local" rather than "traverser-local".
  • Added DateTime ontop of the existing 'datetime' grammar.
  • Added UUID() and UUID(value) to grammar.
  • Deprecated the UnifiedChannelizer.
  • Fixed bug that caused incorrect results when tail() used inside repeat().
  • Modified TraversalStrategy construction in Javascript where configurations are now supplied as a Map of options.
  • Fixed bug in GraphSON v2 and v3 where full round trip of TraversalStrategy implementations was failing.
  • Added missing strategies to the TraversalStrategies global cache as well as CoreImports in gremlin-groovy.
  • Modified the TraversalStrategy format for GraphSON v2 and v3 so that it could work with Bytecode based requests.
  • Added a Class serializer to GraphBinary in Javascript and modified the TraversalStrategy serializer to use it so that specification was properly satisfied.
  • Added missing strategies to strategies.py in gremlin-python.
  • Fixed fully qualified class names for TraversalStrategy names in gremlin-dotnet.
  • Updated OptionsStrategy in gremlin-python to take options directly as keyword arguments.
  • Fixed statics.BigDecimal implementation in gremlin-python to properly calculate scale and unscaled_value, and added value attribute to return a decimal.Decimal representation.
  • Updated GraphSON in gremlin-python to return statics.BigDecimal instead of decimal.Decimal for consistency with GraphBinary.
  • Added static instance() method to ElementIdStrategy to an instance with the default configuration.
  • Updated ElementIdStrategy.getConfiguration() to help with serialization.
  • Added grammar-based Translator for all languages including explicit ones for Java and anonymization.
  • Deprecated withEmbedded() and withRemote() options on AnonymousTraversalSource.
  • Added with() on AnonymousTraversalSource to cover both embedded and remote creation options.
  • Added support for Set in GraphSON and GraphBinary serialization for gremlin-javascript, where it previously just converted to array.
  • Added Set syntax in gremlin-language.

... (truncated)

Commits
  • f9056af TinkerPop 3.8.0 release
  • 532d836 Add gremlin-mcp exclusions to source-release
  • 56422ce Merge branch '3.7-dev' into 3.8-dev
  • b05a285 TinkerPop 3.7.5 release
  • a735e41 fix source release exclusions
  • 876827c Various upgrade doc fixes for 3.8.0. (#3279)
  • 743fd1d Fix for JavaTranslator handling of has with null last argument (#3278)
  • 337dc22 Merge branch '3.7-dev' into 3.8-dev
  • 85449b0 Deflake tests in GraphSONTypedCompatibilityTest, GraphSONUntypedCompatibility...
  • 902ab86 Updated changelog and upgrade docs for release. (#3277)
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:tinkergraph-gremlin from 3.7.4 to 3.8.0

Changelog

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

== TinkerPop 3.8.0 (Grix Greven)

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

[[release-3-8-1]] === TinkerPop 3.8.1 (NOT OFFICIALLY RELEASED YET)

This release also includes changes from <<release-3-7-6, 3.7.6>>.

[[release-3-8-0]] === TinkerPop 3.8.0 (Release Date: November 12, 2025)

This release also includes changes from <<release-3-7-5, 3.7.5>>.

  • Added a Gremln MCP server.
  • Added the Air Routes 1.0 dataset to the set of available samples packaged with distributions.
  • Added a minimal distribution for tinkergraph-gremlin using the min classifier that doesn't include the sample datasets.
  • Removed AggregateLocalStep and aggregate(Scope, String), and renamed AggregateGlobalStep to AggregateStep.
  • Removed store() in favor of using local(aggregate()).
  • Removed Vertex/ReferenceVertex from grammar. Use vertex id in traversals now instead.
  • Removed has(key, traversal) and has(T, traversal) options for has() step.
  • Fixed bug where InlineFilterStrategy could add an empty has().
  • Normalized dotnet Element.properties to lists.
  • Normalized python and javascript Element.properties to lists.
  • Renamed none() step to discard().
  • Repurposed none() step as a list filtering step with the signature none(P).
  • Modified mathematical operators to prevent overflows in steps such as sum() and 'sack()' to prefer promotion to the next highest number type.
  • Modified local() to be "object-local" rather than "traverser-local".
  • Added DateTime ontop of the existing 'datetime' grammar.
  • Added UUID() and UUID(value) to grammar.
  • Deprecated the UnifiedChannelizer.
  • Fixed bug that caused incorrect results when tail() used inside repeat().
  • Modified TraversalStrategy construction in Javascript where configurations are now supplied as a Map of options.
  • Fixed bug in GraphSON v2 and v3 where full round trip of TraversalStrategy implementations was failing.
  • Added missing strategies to the TraversalStrategies global cache as well as CoreImports in gremlin-groovy.
  • Modified the TraversalStrategy format for GraphSON v2 and v3 so that it could work with Bytecode based requests.
  • Added a Class serializer to GraphBinary in Javascript and modified the TraversalStrategy serializer to use it so that specification was properly satisfied.
  • Added missing strategies to strategies.py in gremlin-python.
  • Fixed fully qualified class names for TraversalStrategy names in gremlin-dotnet.
  • Updated OptionsStrategy in gremlin-python to take options directly as keyword arguments.
  • Fixed statics.BigDecimal implementation in gremlin-python to properly calculate scale and unscaled_value, and added value attribute to return a decimal.Decimal representation.
  • Updated GraphSON in gremlin-python to return statics.BigDecimal instead of decimal.Decimal for consistency with GraphBinary.
  • Added static instance() method to ElementIdStrategy to an instance with the default configuration.
  • Updated ElementIdStrategy.getConfiguration() to help with serialization.
  • Added grammar-based Translator for all languages including explicit ones for Java and anonymization.
  • Deprecated withEmbedded() and withRemote() options on AnonymousTraversalSource.
  • Added with() on AnonymousTraversalSource to cover both embedded and remote creation options.
  • Added support for Set in GraphSON and GraphBinary serialization for gremlin-javascript, where it previously just converted to array.
  • Added Set syntax in gremlin-language.

... (truncated)

Commits
  • f9056af TinkerPop 3.8.0 release
  • 532d836 Add gremlin-mcp exclusions to source-release
  • 56422ce Merge branch '3.7-dev' into 3.8-dev
  • b05a285 TinkerPop 3.7.5 release
  • a735e41 fix source release exclusions
  • 876827c Various upgrade doc fixes for 3.8.0. (#3279)
  • 743fd1d Fix for JavaTranslator handling of has with null last argument (#3278)
  • 337dc22 Merge branch '3.7-dev' into 3.8-dev
  • 85449b0 Deflake tests in GraphSONTypedCompatibilityTest, GraphSONUntypedCompatibility...
  • 902ab86 Updated changelog and upgrade docs for release. (#3277)
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:gremlin-core from 3.7.4 to 3.8.0

Changelog

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

== TinkerPop 3.8.0 (Grix Greven)

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

[[release-3-8-1]] === TinkerPop 3.8.1 (NOT OFFICIALLY RELEASED YET)

This release also includes changes from <<release-3-7-6, 3.7.6>>.

[[release-3-8-0]] === TinkerPop 3.8.0 (Release Date: November 12, 2025)

This release also includes changes from <<release-3-7-5, 3.7.5>>.

  • Added a Gremln MCP server.
  • Added the Air Routes 1.0 dataset to the set of available samples packaged with distributions.
  • Added a minimal distribution for tinkergraph-gremlin using the min classifier that doesn't include the sample datasets.
  • Removed AggregateLocalStep and aggregate(Scope, String), and renamed AggregateGlobalStep to AggregateStep.
  • Removed store() in favor of using local(aggregate()).
  • Removed Vertex/ReferenceVertex from grammar. Use vertex id in traversals now instead.
  • Removed has(key, traversal) and has(T, traversal) options for has() step.
  • Fixed bug where InlineFilterStrategy could add an empty has().
  • Normalized dotnet Element.properties to lists.
  • Normalized python and javascript Element.properties to lists.
  • Renamed none() step to discard().
  • Repurposed none() step as a list filtering step with the signature none(P).
  • Modified mathematical operators to prevent overflows in steps such as sum() and 'sack()' to prefer promotion to the next highest number type.
  • Modified local() to be "object-local" rather than "traverser-local".
  • Added DateTime ontop of the existing 'datetime' grammar.
  • Added UUID() and UUID(value) to grammar.
  • Deprecated the UnifiedChannelizer.
  • Fixed bug that caused incorrect results when tail() used inside repeat().
  • Modified TraversalStrategy construction in Javascript where configurations are now supplied as a Map of options.
  • Fixed bug in GraphSON v2 and v3 where full round trip of TraversalStrategy implementations was failing.
  • Added missing strategies to the TraversalStrategies global cache as well as CoreImports in gremlin-groovy.
  • Modified the TraversalStrategy format for GraphSON v2 and v3 so that it could work with Bytecode based requests.
  • Added a Class serializer to GraphBinary in Javascript and modified the TraversalStrategy serializer to use it so that specification was properly satisfied.
  • Added missing strategies to strategies.py in gremlin-python.
  • Fixed fully qualified class names for TraversalStrategy names in gremlin-dotnet.
  • Updated OptionsStrategy in gremlin-python to take options directly as keyword arguments.
  • Fixed statics.BigDecimal implementation in gremlin-python to properly calculate scale and unscaled_value, and added value attribute to return a decimal.Decimal representation.
  • Updated GraphSON in gremlin-python to return statics.BigDecimal instead of decimal.Decimal for consistency with GraphBinary.
  • Added static instance() method to ElementIdStrategy to an instance with the default configuration.
  • Updated ElementIdStrategy.getConfiguration() to help with serialization.
  • Added grammar-based Translator for all languages including explicit ones for Java and anonymization.
  • Deprecated withEmbedded() and withRemote() options on AnonymousTraversalSource.
  • Added with() on AnonymousTraversalSource to cover both embedded and remote creation options.
  • Added support for Set in GraphSON and GraphBinary serialization for gremlin-javascript, where it previously just converted to array.
  • Added Set syntax in gremlin-language.

... (truncated)

Commits
  • f9056af TinkerPop 3.8.0 release
  • 532d836 Add gremlin-mcp exclusions to source-release
  • 56422ce Merge branch '3.7-dev' into 3.8-dev
  • b05a285 TinkerPop 3.7.5 release
  • a735e41 fix source release exclusions
  • 876827c Various upgrade doc fixes for 3.8.0. (#3279)
  • 743fd1d Fix for JavaTranslator handling of has with null last argument (#3278)
  • 337dc22 Merge branch '3.7-dev' into 3.8-dev
  • 85449b0 Deflake tests in GraphSONTypedCompatibilityTest, GraphSONUntypedCompatibility...
  • 902ab86 Updated changelog and upgrade docs for release. (#3277)
  • Additional commits viewable in compare view

Updates org.apache.tinkerpop:gremlin-groovy from 3.7.4 to 3.8.0

Changelog

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

== TinkerPop 3.8.0 (Grix Greven)

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

[[release-3-8-1]] === TinkerPop 3.8.1 (NOT OFFICIALLY RELEASED YET)

This release also includes changes from <<release-3-7-6, 3.7.6>>.

[[release-3-8-0]] === TinkerPop 3.8.0 (Release Date: November 12, 2025)

This release also includes changes from <<release-3-7-5, 3.7.5>>.

  • Added a Gremln MCP server.
  • Added the Air Routes 1.0 dataset to the set of available samples packaged with distributions.
  • Added a minimal distribution for tinkergraph-gremlin using the min classifier that doesn't include the sample datasets.
  • Removed AggregateLocalStep and aggregate(Scope, String), and renamed AggregateGlobalStep to AggregateStep.
  • Removed store() in favor of using local(aggregate()).
  • Removed Vertex/ReferenceVertex from grammar. Use vertex id in traversals now instead.
  • Removed has(key, traversal) and has(T, traversal) options for has() step.
  • Fixed bug where InlineFilterStrategy could add an empty has().
  • Normalized dotnet Element.properties to lists.
  • Normalized python and javascript Element.properties to lists.
  • Renamed none() step to discard().
  • Repurposed none() step as a list filtering step with the signature none(P).
  • Modified mathematical operators to prevent overflows in steps such as sum() and 'sack()' to prefer promotion to the next highest number type.
  • Modified local() to be "object-local" rather than "traverser-local".
  • Added DateTime ontop of the existing 'datetime' grammar.
  • Added UUID() and UUID(value) to grammar.
  • Deprecated the UnifiedChannelizer.
  • Fixed bug that caused incorrect results when tail() used inside repeat().
  • Modified TraversalStrategy construction in Javascript where configurations are now supplied as a Map of options.
  • Fixed bug in GraphSON v2 and v3 where full round trip of TraversalStrategy implementations was failing.
  • Added missing strategies to the TraversalStrategies global cache as well as CoreImports in gremlin-groovy.
  • Modified the TraversalStrategy format for GraphSON v2 and v3 so that it could work with Bytecode based requests.
  • Added a Class serializer to GraphBinary in Javascript and modified the TraversalStrategy serializer to use it so that specification was properly satisfied.
  • Added missing strategies to strategies.py in gremlin-python.
  • Fixed fully qualified class names for TraversalStrategy names in gremlin-dotnet.
  • Updated OptionsStrategy in gremlin-python to take options directly as keyword arguments.
  • Fixed statics.BigDecimal implementation in gremlin-python to properly calculate scale and unscaled_value, and added value attribute to return a decimal.Decimal representation.
  • Updated GraphSON in gremlin-python to return statics.BigDecimal instead of decimal.Decimal for consistency with GraphBinary.
  • Added static instance() method to ElementIdStrategy to an instance with the default configuration.
  • Updated ElementIdStrategy.getConfiguration() to help with serialization.
  • Added grammar-based Translator for all languages including explicit ones for Java and anonymization.
  • Deprecated withEmbedded() and withRemote() options on AnonymousTraversalSource.
  • Added with() on AnonymousTraversalSource to cover both embedded and remote creation options.
  • Added support for Set in GraphSON and GraphBinary serialization for gremlin-javascript, where it previously just converted to array.
  • Added Set syntax in gremlin-language.

... (truncated)

Commits
  • f9056af TinkerPop 3.8.0 release
  • 532d836 Add gremlin-mcp exclusions to source-release
  • 56422ce Merge branch '3.7-dev' into 3.8-dev
  • b05a285 TinkerPop 3.7.5 release
  • a735e41 fix source release exclusions
  • 876827c Various upgrade doc fixes for 3.8.0. (#3279)
  • 743fd1d Fix for JavaTranslator handling of has with null last argument (#3278)
  • 337dc22 Merge branch '3.7-dev' into 3.8-dev
  • 85449b0 Deflake tests in GraphSONTypedCompatibilityTest, GraphSONUntypedCompatibility...
  • 902ab86 Updated changelog and upgrade docs for release. (#3277)
  • 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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 24, 2025
@amazon-inspector-n-virginia
Copy link

⏳ I'm reviewing this pull request for security vulnerabilities and code quality issues. I'll provide an update when I'm done

1 similar comment
@amazon-inspector-n-virginia
Copy link

⏳ I'm reviewing this pull request for security vulnerabilities and code quality issues. I'll provide an update when I'm done

@github-actions github-actions bot enabled auto-merge (squash) November 24, 2025 06:11
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@amazon-inspector-n-virginia
Copy link

✅ I finished the code review, and didn't find any security or code quality issues.

1 similar comment
@amazon-inspector-n-virginia
Copy link

✅ I finished the code review, and didn't find any security or code quality issues.

@codecov
Copy link

codecov bot commented Nov 24, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 68.28%. Comparing base (fe0a5d9) to head (1639dd4).
⚠️ Report is 103 commits behind head on master.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@             Coverage Diff              @@
##             master    #3114      +/-   ##
============================================
+ Coverage     63.67%   68.28%   +4.61%     
- Complexity     4344     5000     +656     
============================================
  Files           621      636      +15     
  Lines         23286    24157     +871     
  Branches       2859     2997     +138     
============================================
+ Hits          14827    16496    +1669     
+ Misses         7070     6220     -850     
- Partials       1389     1441      +52     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dependabot dependabot bot force-pushed the dependabot/maven/gremlinDriverVersion-3.8.0 branch from f407638 to 1a4aa74 Compare December 1, 2025 06:50
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@dependabot dependabot bot force-pushed the dependabot/maven/gremlinDriverVersion-3.8.0 branch from 1a4aa74 to cb13330 Compare December 4, 2025 03:59
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@dependabot dependabot bot force-pushed the dependabot/maven/gremlinDriverVersion-3.8.0 branch from cb13330 to ffa6b2a Compare December 4, 2025 04:06
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

Bumps `gremlinDriverVersion` from 3.7.4 to 3.8.0.

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

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

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

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

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/maven/gremlinDriverVersion-3.8.0 branch from ffa6b2a to 1639dd4 Compare December 4, 2025 04:14
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@github-actions github-actions bot merged commit f67c858 into master Dec 4, 2025
7 checks passed
@dependabot dependabot bot deleted the dependabot/maven/gremlinDriverVersion-3.8.0 branch December 4, 2025 04:20
github-actions bot pushed a commit to Jithendar12/aws-athena-query-federation that referenced this pull request Dec 5, 2025
  - Update runner to ubuntu-latest
  - Add exec-maven-plugin for build configuration verification
  - Update GitHub Actions workflows to build with Java 11 and 17
  - build(deps): bump actions/checkout from 5 to 6 (awslabs#3110)
  - build(deps): bump aws-sdk-v2.version from 2.35.8 to 2.39.2 (awslabs#3111)
  - build(deps): bump org.elasticsearch.client:elasticsearch-rest-client from 9.1.5 to 9.2.1 (awslabs#3118)
  - build(deps): bump software.amazon.jsii:jsii-runtime from 1.115.0 to 1.119.0 (awslabs#3117)
  - build(deps): bump software.amazon.awssdk:cloudwatchlogs from 2.35.8 to 2.39.2 (awslabs#3116)
  - build(deps): bump gremlinDriverVersion from 3.7.4 to 3.8.0 (awslabs#3114)
  - build(deps): bump org.apache.httpcomponents.client5:httpclient5 from 5.4.3 to 5.5.1 (awslabs#3115)
  - Fix CVE: Cloudera Hive (awslabs#3135)
  - BigQuery CVE issues fix. (awslabs#3132)
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