(tinkerpop) branch valentyn/connection-pooling deleted (was 521cff8491)

2024-05-06 Thread valentyn
This is an automated email from the ASF dual-hosted git repository.

valentyn pushed a change to branch valentyn/connection-pooling
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 521cff8491 resolve merge conflicts

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



Re: [PR] connection pooling [tinkerpop]

2024-05-06 Thread via GitHub


vkagamlyk merged PR #2582:
URL: https://github.com/apache/tinkerpop/pull/2582


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(tinkerpop) branch valentyn/connection-pooling updated (51c360ce06 -> 521cff8491)

2024-05-06 Thread valentyn
This is an automated email from the ASF dual-hosted git repository.

valentyn pushed a change to branch valentyn/connection-pooling
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 51c360ce06 fix basic auth tests
 add 5eafbeebc3 Update IO tests to test MessageSerializerV4. (#2586)
 add 4f3508dcef Minor cleanup of items related to HTTP CTR.
 add 14382d438d Remove user agent from HTTP request body.
 add e784e7ca24 Replace message in trailers with exception CTR.
 add 6bf36bf7fc Remove CHUNKING_NOT_SUPPORTED state CTR.
 add ec3c264ebb Revert GraphManager changes added in TINKERPOP-2806 CTR.
 add e0f6994f4a Change GraphSONv4 response to have message and exception 
for error responses only CTR
 add 521cff8491 resolve merge conflicts

No new revisions were added by this update.

Summary of changes:
 .../console/jsr223/DriverRemoteAcceptor.java   |   4 +-
 .../apache/tinkerpop/gremlin/driver/Client.java|   1 -
 .../tinkerpop/gremlin/driver/RequestOptions.java   |  15 --
 .../driver/handler/HttpGremlinRequestEncoder.java  |   4 +-
 .../driver/remote/DriverRemoteConnection.java  |   2 -
 .../driver/remote/DriverRemoteConnectionTest.java  |   1 -
 .../gremlin/server/AbstractChannelizer.java|   5 +-
 .../apache/tinkerpop/gremlin/server/Context.java   |   2 +-
 .../tinkerpop/gremlin/server/GraphManager.java |  30 ---
 .../gremlin/server/auth/Authenticator.java |   8 +-
 .../gremlin/server/channel/HttpChannelizer.java|   4 +-
 .../server/handler/HttpGremlinEndpointHandler.java |  35 +--
 .../gremlin/server/handler/HttpHandlerUtil.java|  41 ++-
 .../server/handler/HttpRequestMessageDecoder.java  |   5 -
 .../gremlin/server/handler/ServerSerializers.java  |  46 
 .../tinkerpop/gremlin/server/handler/StateKey.java |  17 --
 .../gremlin/server/util/GremlinError.java  |   5 +-
 .../gremlin/server/GremlinDriverIntegrateTest.java |  35 ---
 .../server/GremlinServerHttpIntegrateTest.java | 279 -
 .../notifications/ProviderGraphManagerHelper.java  |  78 --
 .../gremlin/util/message/RequestMessageV4.java |  11 +-
 .../gremlin/util/message/ResponseMessageV4.java|  21 +-
 .../ser/AbstractGraphSONMessageSerializerV4.java   |  57 +++--
 .../util/ser/GraphBinaryMessageSerializerV4.java   |   8 +-
 .../util/ser/GraphSONMessageSerializerV4.java  |  10 +-
 .../ser/GraphSONUntypedMessageSerializerV4.java|   8 +-
 .../tinkerpop/gremlin/util/ser/SerTokens.java  |  16 +-
 .../tinkerpop/gremlin/util/ser/SerializersV4.java  |   2 +-
 .../structure/io/AbstractCompatibilityTest.java|  35 +++
 .../io/AbstractTypedCompatibilityTest.java | 241 +-
 .../io/AbstractUntypedCompatibilityTest.java   | 244 +-
 .../tinkerpop/gremlin/structure/io/Model.java  |  59 ++---
 .../graphson/GraphSONTypedCompatibilityTest.java   |  10 +-
 .../graphson/GraphSONUntypedCompatibilityTest.java |  12 +-
 .../GraphSONUntypedMessageSerializerV4Test.java|  10 +-
 .../binary/GraphBinaryMessageSerializerV4Test.java |   1 -
 .../util/ser/binary/MessageSerializerV4Test.java   |   1 -
 .../authenticationchallenge-v1-no-types.json   |   1 -
 .../authenticationchallenge-v2-no-types.json   |   1 -
 .../io/graphson/authenticationchallenge-v2.json|  12 -
 .../authenticationchallenge-v3-no-types.json   |   1 -
 .../io/graphson/authenticationchallenge-v3.json|  18 --
 .../authenticationresponse-v1-no-types.json|   1 -
 .../authenticationresponse-v2-no-types.json|   1 -
 .../io/graphson/authenticationresponse-v2.json |   9 -
 .../authenticationresponse-v3-no-types.json|   1 -
 .../io/graphson/authenticationresponse-v3.json |   9 -
 .../graphson/{barrier-v2.json => barrier-v4.json}  |   0
 .../{bigdecimal-v2.json => bigdecimal-v4.json} |   0
 .../{biginteger-v2.json => biginteger-v4.json} |   0
 .../graphson/{binding-v2.json => binding-v4.json}  |   0
 .../graphson/{bulkset-v3.json => bulkset-v4.json}  |   0
 .../io/graphson/{byte-v2.json => byte-v4.json} |   0
 .../{bytebuffer-v2.json => bytebuffer-v4.json} |   0
 .../{bytecode-v2.json => bytecode-v4.json} |   0
 .../{cardinality-v2.json => cardinality-v4.json}   |   0
 .../io/graphson/{char-v2.json => char-v4.json} |   0
 .../io/graphson/{class-v2.json => class-v4.json}   |   0
 .../io/graphson/{column-v2.json => column-v4.json} |   0
 .../io/graphson/{date-v2.json => date-v4.json} |   0
 .../{direction-v2.json => direction-v4.json}   |   0
 .../io/graphson/{double-v2.json => double-v4.json} |   0
 .../{duration-v2.json => duration-v4.json} |   0
 ...edge-v1-no-types.json => edge-v4-no-types.json} |   0
 .../io/graphson/{edge-v2.json => edge-v4.json} |   0
 .../io/graphson/{float-v2.json => float-v4.json}   |   0
 .../{inetaddress-v2.json => inetaddress-v4.json}   |   0
 .../graphson/{instant-v2.json => instant-v4.json}  |   0

(tinkerpop) branch valentyn/connection-pooling updated (bbbcfd7df6 -> 51c360ce06)

2024-05-06 Thread valentyn
This is an automated email from the ASF dual-hosted git repository.

valentyn pushed a change to branch valentyn/connection-pooling
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from bbbcfd7df6 added basic auth
 add 51c360ce06 fix basic auth tests

No new revisions were added by this update.

Summary of changes:
 .../apache/tinkerpop/gremlin/driver/Cluster.java   |  12 +-
 .../gremlin/driver/RequestInterceptor.java |   4 -
 .../driver/handler/HttpGremlinRequestEncoder.java  |  21 +-
 .../HttpGremlinResponseDebugStreamDecoder.java |  40 --
 .../handler/HttpGremlinResponseStreamDecoder.java  |  12 +
 .../gremlin/driver/simple/SimpleHttpClient.java|   5 +-
 .../server/GremlinServerAuthIntegrateTest.java |  69 +-
 .../server/GremlinServerAuthzIntegrateTest.java| 701 ++---
 8 files changed, 373 insertions(+), 491 deletions(-)
 delete mode 100644 
gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/handler/HttpGremlinResponseDebugStreamDecoder.java



(tinkerpop) branch valentyn/connection-pooling updated (4c9710aaa7 -> bbbcfd7df6)

2024-05-06 Thread valentyn
This is an automated email from the ASF dual-hosted git repository.

valentyn pushed a change to branch valentyn/connection-pooling
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 4c9710aaa7 cleanup
 add bbbcfd7df6 added basic auth

No new revisions were added by this update.

Summary of changes:
 .../src/main/java/examples/Connections.java|   2 -
 .../org/apache/tinkerpop/gremlin/driver/Auth.java  |  50 ++
 .../tinkerpop/gremlin/driver/AuthProperties.java   |  70 --
 .../tinkerpop/gremlin/driver/Channelizer.java  |  13 +-
 .../apache/tinkerpop/gremlin/driver/Cluster.java   | 133 +---
 .../tinkerpop/gremlin/driver/Connection.java   |  10 +-
 .../gremlin/driver/HandshakeInterceptor.java   |  38 --
 .../org/apache/tinkerpop/gremlin/driver/Host.java  |  12 +-
 .../apache/tinkerpop/gremlin/driver/Settings.java  |  53 +-
 .../handler/HttpGremlinResponseStreamDecoder.java  |   7 +
 .../gremlin/driver/simple/SimpleHttpClient.java|   4 +-
 .../gremlin/driver/util/ProfilingApplication.java  |   2 -
 .../gremlin/driver/ClusterBuilderTest.java |   3 +-
 .../tinkerpop/gremlin/driver/SettingsTest.java |   5 -
 .../gremlin/server/GremlinDriverIntegrateTest.java |  12 +-
 .../server/GremlinServerAuditLogIntegrateTest.java | 319 +
 .../server/GremlinServerAuthIntegrateTest.java |  41 +-
 .../server/GremlinServerAuthKrb5IntegrateTest.java | 248 ---
 .../server/GremlinServerAuthzIntegrateTest.java| 740 ++---
 .../gremlin/server/GremlinServerIntegrateTest.java |   1 -
 .../gremlin/server/HttpDriverIntegrateTest.java|  15 +
 ...tractGremlinServerChannelizerIntegrateTest.java |   7 -
 .../util/ser/GraphBinaryMessageSerializerV4.java   |   2 +-
 23 files changed, 653 insertions(+), 1134 deletions(-)
 create mode 100644 
gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Auth.java
 delete mode 100644 
gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/AuthProperties.java
 delete mode 100644 
gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/HandshakeInterceptor.java
 delete mode 100644 
gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerAuthKrb5IntegrateTest.java



(tinkerpop) branch dependabot/npm_and_yarn/gremlin-javascript/src/main/javascript/gremlin-javascript/3.6-dev/eslint-9.1.1 deleted (was 77a0b9372c)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/gremlin-javascript/src/main/javascript/gremlin-javascript/3.6-dev/eslint-9.1.1
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 77a0b9372c Bump eslint

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(tinkerpop) branch dependabot/npm_and_yarn/gremlin-javascript/src/main/javascript/gremlin-javascript/3.6-dev/eslint-9.2.0 created (now 7fabdc021f)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/gremlin-javascript/src/main/javascript/gremlin-javascript/3.6-dev/eslint-9.2.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at 7fabdc021f Bump eslint

No new revisions were added by this update.



Re: [PR] Bump eslint from 8.57.0 to 9.1.1 in /gremlin-javascript/src/main/javascript/gremlin-javascript [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] closed pull request #2573: Bump eslint from 8.57.0 to 9.1.1 in 
/gremlin-javascript/src/main/javascript/gremlin-javascript
URL: https://github.com/apache/tinkerpop/pull/2573


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump eslint from 8.57.0 to 9.1.1 in /gremlin-javascript/src/main/javascript/gremlin-javascript [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] commented on PR #2573:
URL: https://github.com/apache/tinkerpop/pull/2573#issuecomment-2096244034

   Superseded by #2591.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump eslint from 8.57.0 to 9.2.0 in /gremlin-javascript/src/main/javascript/gremlin-javascript [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] opened a new pull request, #2591:
URL: https://github.com/apache/tinkerpop/pull/2591

   Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.2.0.
   
   Release notes
   Sourced from https://github.com/eslint/eslint/releases;>eslint's releases.
   
   v9.2.0
   Features
   
   https://github.com/eslint/eslint/commit/8485d76134bdbd29230780fadc284c482cd1d963;>8485d76
 feat: no-case-declarations add suggestions (https://redirect.github.com/eslint/eslint/issues/18388;>#18388) (Josh 
Goldberg ✨)
   https://github.com/eslint/eslint/commit/a498f35cef4df9c9f5387fafafaf482d913d5765;>a498f35
 feat: update Unicode letter detection in capitalized-comments rule (https://redirect.github.com/eslint/eslint/issues/18375;>#18375) 
(Francesco Trotta)
   
   Bug Fixes
   
   https://github.com/eslint/eslint/commit/eeec41346738afb491958fdbf0bcf45a302ca1b7;>eeec413
 fix: do not throw when defining a global named defineSetter 
(https://redirect.github.com/eslint/eslint/issues/18364;>#18364) 
(唯然)
   
   Documentation
   
   https://github.com/eslint/eslint/commit/0f5df509a4bc00cff2c62b90fab184bdf0231322;>0f5df50
 docs: Update README (GitHub Actions Bot)
   https://github.com/eslint/eslint/commit/1579ce05cbb523cb5b04ff77fab06ba1ecd18dce;>1579ce0
 docs: update wording regarding indirect eval (https://redirect.github.com/eslint/eslint/issues/18394;>#18394) (Kirk 
Waiblinger)
   https://github.com/eslint/eslint/commit/f12a02c5749d31beefe46d2753a0d68b56f2281d;>f12a02c
 docs: update to eslint v9 in custom-rule-tutorial (https://redirect.github.com/eslint/eslint/issues/18383;>#18383) 
(唯然)
   
   Chores
   
   https://github.com/eslint/eslint/commit/b3466052802a1586560ad56a8128d603284d58c2;>b346605
 chore: upgrade @​eslint/jshttps://github.com/9;>@​9.2.0 (https://redirect.github.com/eslint/eslint/issues/18413;>#18413) 
(Milos Djermanovic)
   https://github.com/eslint/eslint/commit/c4c18e05fc866b73218dbe58b760546f39a2a620;>c4c18e0
 chore: package.json update for @​eslint/js release (Jenkins)
   https://github.com/eslint/eslint/commit/284722ca8375c9a9e4f741bfdd78e765542da61f;>284722c
 chore: package.json update for eslint-config-eslint release (Jenkins)
   https://github.com/eslint/eslint/commit/347d44f96b3d9d690e4f7380029e8a5a60b2fdc7;>347d44f
 chore: remove eslintrc export from eslint-config-eslint (https://redirect.github.com/eslint/eslint/issues/18400;>#18400) 
(Milos Djermanovic)
   https://github.com/eslint/eslint/commit/f316e2009a8aa902fa447a49b6b5e560848f0711;>f316e20
 ci: run tests in Node.js 22 (https://redirect.github.com/eslint/eslint/issues/18393;>#18393) 
(Francesco Trotta)
   
   v9.1.1
   Bug Fixes
   
   https://github.com/eslint/eslint/commit/a26b40279f283853717236b44602b27b57f0b627;>a26b402
 fix: use @​eslint/create-config latest (https://redirect.github.com/eslint/eslint/issues/18373;>#18373) 
(唯然)
   
   v9.1.0
   Features
   
   https://github.com/eslint/eslint/commit/03068f13c0e3e6b34b8ca63628cfc79dd256feac;>03068f1
 feat: Provide helpful error message for nullish configs (https://redirect.github.com/eslint/eslint/issues/18357;>#18357) 
(Nicholas C. Zakas)
   https://github.com/eslint/eslint/commit/751b518f02b1e9f4f0cb4a4007ffacb1be2246af;>751b518
 feat: replace dependency graphemer with Intl.Segmenter (https://redirect.github.com/eslint/eslint/issues/18110;>#18110) 
(Francesco Trotta)
   https://github.com/eslint/eslint/commit/4d11e567baff575146fd267b3765ab2c788aa1e5;>4d11e56
 feat: add name to eslint configs (https://redirect.github.com/eslint/eslint/issues/18289;>#18289) 
(唯然)
   https://github.com/eslint/eslint/commit/1cbe1f6d38272784307c260f2375ab30e68716e8;>1cbe1f6
 feat: allow while(true) in no-constant-condition (https://redirect.github.com/eslint/eslint/issues/18286;>#18286) 
(Tanuj Kanti)
   https://github.com/eslint/eslint/commit/0db676f9c64d2622ada86b653136d2bda4f0eee0;>0db676f
 feat: add Intl in es6 globals (https://redirect.github.com/eslint/eslint/issues/18318;>#18318) 
(唯然)
   
   Bug Fixes
   
   https://github.com/eslint/eslint/commit/8d189586d60f9beda7be8cdefd4156c023c4fdde;>8d18958
 fix: Remove name from eslint/js packages (https://redirect.github.com/eslint/eslint/issues/18368;>#18368) 
(Nicholas C. Zakas)
   https://github.com/eslint/eslint/commit/594eb0e5c2b14a418d686c33d2d40fb439888b70;>594eb0e
 fix: do not crash on error in fs.walk filter (https://redirect.github.com/eslint/eslint/issues/18295;>#18295) 
(Francesco Trotta)
   https://github.com/eslint/eslint/commit/0d8cf6350ce3dc417d6e23922e6d4ad03952;>0d8cf63
 fix: EMFILE errors (https://redirect.github.com/eslint/eslint/issues/18313;>#18313) 
(Nicholas C. Zakas)
   https://github.com/eslint/eslint/commit/e1ac0b5c035bfdff7be08b69e89e1470a7becac3;>e1ac0b5
 fix: --inspect-config only for flat config and respect -c (https://redirect.github.com/eslint/eslint/issues/18306;>#18306) 
(Nicholas C. Zakas)
   https://github.com/eslint/eslint/commit/09675e153169d4d0f4a85a95007dcd17d34d70c7;>09675e1
 fix: 

(tinkerpop) branch dependabot/npm_and_yarn/docs/gremlint/master/types/node-20.12.8 deleted (was 91469a160e)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/docs/gremlint/master/types/node-20.12.8
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 91469a160e Bump @types/node from 20.11.23 to 20.12.8 in /docs/gremlint

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



Re: [PR] Bump @types/node from 20.11.23 to 20.12.8 in /docs/gremlint [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] closed pull request #2584: Bump @types/node from 20.11.23 to 
20.12.8 in /docs/gremlint
URL: https://github.com/apache/tinkerpop/pull/2584


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(tinkerpop) branch dependabot/npm_and_yarn/docs/gremlint/master/types/node-20.12.9 created (now c6a83b682a)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/docs/gremlint/master/types/node-20.12.9
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at c6a83b682a Bump @types/node from 20.11.23 to 20.12.9 in /docs/gremlint

No new revisions were added by this update.



Re: [PR] Bump @types/node from 20.11.23 to 20.12.8 in /docs/gremlint [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] commented on PR #2584:
URL: https://github.com/apache/tinkerpop/pull/2584#issuecomment-2096188977

   Superseded by #2590.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump @types/node from 20.11.23 to 20.12.9 in /docs/gremlint [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] opened a new pull request, #2590:
URL: https://github.com/apache/tinkerpop/pull/2590

   Bumps 
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
 from 20.11.23 to 20.12.9.
   
   Commits
   
   See full diff in https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node=npm_and_yarn=20.11.23=20.12.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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  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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(tinkerpop) branch dependabot/npm_and_yarn/gremlint/3.6-dev/types/node-20.12.8 deleted (was 859ad7a959)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/gremlint/3.6-dev/types/node-20.12.8
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 859ad7a959 Bump @types/node from 20.11.10 to 20.12.8 in /gremlint

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



Re: [PR] Bump @types/node from 20.11.10 to 20.12.8 in /gremlint [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] closed pull request #2583: Bump @types/node from 20.11.10 to 
20.12.8 in /gremlint
URL: https://github.com/apache/tinkerpop/pull/2583


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(tinkerpop) branch dependabot/npm_and_yarn/gremlint/3.6-dev/types/node-20.12.9 created (now b396cd5f7e)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/gremlint/3.6-dev/types/node-20.12.9
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at b396cd5f7e Bump @types/node from 20.11.10 to 20.12.9 in /gremlint

No new revisions were added by this update.



Re: [PR] Bump @types/node from 20.11.10 to 20.12.8 in /gremlint [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] commented on PR #2583:
URL: https://github.com/apache/tinkerpop/pull/2583#issuecomment-2096186960

   Superseded by #2589.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump @types/node from 20.11.10 to 20.12.9 in /gremlint [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] opened a new pull request, #2589:
URL: https://github.com/apache/tinkerpop/pull/2589

   Bumps 
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
 from 20.11.10 to 20.12.9.
   
   Commits
   
   See full diff in https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node=npm_and_yarn=20.11.10=20.12.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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  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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump com.fasterxml.jackson.core:jackson-annotations from 2.12.7 to 2.17.0 [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] closed pull request #2521: Bump 
com.fasterxml.jackson.core:jackson-annotations from 2.12.7 to 2.17.0
URL: https://github.com/apache/tinkerpop/pull/2521


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump com.fasterxml.jackson.core:jackson-annotations from 2.12.7 to 2.17.0 [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] commented on PR #2521:
URL: https://github.com/apache/tinkerpop/pull/2521#issuecomment-2096152303

   Superseded by #2588.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(tinkerpop) branch dependabot/maven/3.6-dev/com.fasterxml.jackson.core-jackson-annotations-2.17.1 created (now bb8a4c999e)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/3.6-dev/com.fasterxml.jackson.core-jackson-annotations-2.17.1
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at bb8a4c999e Bump com.fasterxml.jackson.core:jackson-annotations

No new revisions were added by this update.



[PR] Bump com.fasterxml.jackson.core:jackson-annotations from 2.12.7 to 2.17.1 [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] opened a new pull request, #2588:
URL: https://github.com/apache/tinkerpop/pull/2588

   Bumps 
[com.fasterxml.jackson.core:jackson-annotations](https://github.com/FasterXML/jackson)
 from 2.12.7 to 2.17.1.
   
   Commits
   
   See full diff in https://github.com/FasterXML/jackson/commits;>compare view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-annotations=maven=2.12.7=2.17.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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  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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(tinkerpop) branch dependabot/maven/3.6-dev/com.fasterxml.jackson.core-jackson-annotations-2.17.0 deleted (was 9ef7cf2043)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/3.6-dev/com.fasterxml.jackson.core-jackson-annotations-2.17.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 9ef7cf2043 Bump com.fasterxml.jackson.core:jackson-annotations

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(tinkerpop) branch dependabot/go_modules/gremlin-go/3.6-dev/golang.org/x/text-0.15.0 created (now 20e1645223)

2024-05-06 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/gremlin-go/3.6-dev/golang.org/x/text-0.15.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at 20e1645223 Bump golang.org/x/text from 0.14.0 to 0.15.0 in /gremlin-go

No new revisions were added by this update.



[PR] Bump golang.org/x/text from 0.14.0 to 0.15.0 in /gremlin-go [tinkerpop]

2024-05-06 Thread via GitHub


dependabot[bot] opened a new pull request, #2587:
URL: https://github.com/apache/tinkerpop/pull/2587

   Bumps [golang.org/x/text](https://github.com/golang/text) from 0.14.0 to 
0.15.0.
   
   Commits
   
   https://github.com/golang/text/commit/8d533a0c40adec778a7d09ac6c8aa640d3c883f4;>8d533a0
 encoding/charmap: update UCM spec file URL prefix
   See full diff in https://github.com/golang/text/compare/v0.14.0...v0.15.0;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/text=go_modules=0.14.0=0.15.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   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  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)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org