(tinkerpop) branch TINKERPOP-3035 updated (a172ad5c37 -> 688974dbe8)

2024-04-26 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3035
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


omit a172ad5c37 TINKERPOP-3035 Add Property(IDictionary) overload
 add 688974dbe8 TINKERPOP-3035 Add Property(IDictionary) overload

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (a172ad5c37)
\
 N -- N -- N   refs/heads/TINKERPOP-3035 (688974dbe8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../Process/Traversal/Translator/GroovyTranslatorTests.cs| 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)



(tinkerpop) branch TINKERPOP-3035 created (now a172ad5c37)

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3035
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at a172ad5c37 TINKERPOP-3035 Add Property(IDictionary) overload

This branch includes the following new commits:

 new a172ad5c37 TINKERPOP-3035 Add Property(IDictionary) overload

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(tinkerpop) 01/01: TINKERPOP-3035 Add Property(IDictionary) overload

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3035
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit a172ad5c37300f13bcdf3fe006b15365b575a620
Author: Florian Hockmann 
AuthorDate: Wed Apr 17 15:06:16 2024 +0200

TINKERPOP-3035 Add Property(IDictionary) overload

This overload was missing in Gremlin.Net for some reason.
---
 .../src/Gremlin.Net/Process/Traversal/GraphTraversal.cs| 10 ++
 1 file changed, 10 insertions(+)

diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs 
b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs
index c6cf798f9a..37fb0ab975 100644
--- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs
+++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs
@@ -22,6 +22,7 @@
 #endregion
 
 using System;
+using System.Collections;
 using System.Collections.Generic;
 using System.Linq;
 using Gremlin.Net.Structure;
@@ -1515,6 +1516,15 @@ namespace Gremlin.Net.Process.Traversal
 return Wrap(this);
 }
 
+/// 
+/// Adds the property step to this .
+/// 
+public GraphTraversal Property(IDictionary value)
+{
+Bytecode.AddStep("property", value);
+return Wrap(this);
+}
+
 /// 
 /// Adds the propertyMap step to this .
 /// 



(tinkerpop) branch master updated (054590c5df -> ac40c74429)

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 054590c5df Merge branch '3.7-dev'
 add 28a1e2e613 Bump Microsoft.Extensions.Logging.Abstractions in 
/gremlin-dotnet
 add b931b54135 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Abstractions-8.0.1'
 into 3.6-dev
 add 23a324f6c1 Bump xunit.runner.visualstudio from 2.5.7 to 2.5.8 in 
/gremlin-dotnet
 add be14a92227 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.8' into 
3.6-dev
 add 56993b75b8 Bump xunit from 2.7.0 to 2.7.1 in /gremlin-dotnet
 add 16441ee37e Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.1' into 3.6-dev
 add 3a9fb8eef6 Merge branch '3.6-dev' into 3.7-dev
 new ac40c74429 Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj| 4 ++--
 .../Gremlin.Net.Template.IntegrationTest.csproj   | 4 ++--
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj  | 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)



(tinkerpop) branch 3.7-dev updated (17f0dda41b -> 3a9fb8eef6)

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 17f0dda41b CTR bump to 3.7.3-SNAPSHOT
 add 28a1e2e613 Bump Microsoft.Extensions.Logging.Abstractions in 
/gremlin-dotnet
 add b931b54135 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Abstractions-8.0.1'
 into 3.6-dev
 add 23a324f6c1 Bump xunit.runner.visualstudio from 2.5.7 to 2.5.8 in 
/gremlin-dotnet
 add be14a92227 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.8' into 
3.6-dev
 add 56993b75b8 Bump xunit from 2.7.0 to 2.7.1 in /gremlin-dotnet
 add 16441ee37e Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.1' into 3.6-dev
 add 3a9fb8eef6 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj| 4 ++--
 .../Gremlin.Net.Template.IntegrationTest.csproj   | 4 ++--
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj  | 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Abstractions-8.0.1 deleted (was 28a1e2e613)

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Abstractions-8.0.1
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 28a1e2e613 Bump Microsoft.Extensions.Logging.Abstractions in 
/gremlin-dotnet

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 3.6-dev updated (8c73d09c8d -> 16441ee37e)

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 8c73d09c8d CTR Bump to 3.6.8-SNAPSHOT
 add 28a1e2e613 Bump Microsoft.Extensions.Logging.Abstractions in 
/gremlin-dotnet
 add b931b54135 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Abstractions-8.0.1'
 into 3.6-dev
 add 23a324f6c1 Bump xunit.runner.visualstudio from 2.5.7 to 2.5.8 in 
/gremlin-dotnet
 add be14a92227 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.8' into 
3.6-dev
 add 56993b75b8 Bump xunit from 2.7.0 to 2.7.1 in /gremlin-dotnet
 add 16441ee37e Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.1' into 3.6-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj| 4 ++--
 .../Gremlin.Net.Template.IntegrationTest.csproj   | 4 ++--
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj  | 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.1 deleted (was 56993b75b8)

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.1
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 56993b75b8 Bump xunit from 2.7.0 to 2.7.1 in /gremlin-dotnet

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/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.8 deleted (was 23a324f6c1)

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.8
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 23a324f6c1 Bump xunit.runner.visualstudio from 2.5.7 to 2.5.8 in 
/gremlin-dotnet

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) 01/01: Merge branch '3.7-dev'

2024-04-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit ac40c7442957e7e756fcaf9336c41c36fd95c467
Merge: 054590c5df 3a9fb8eef6
Author: Florian Hockmann 
AuthorDate: Wed Apr 17 11:10:36 2024 +0200

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj| 4 ++--
 .../Gremlin.Net.Template.IntegrationTest.csproj   | 4 ++--
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj  | 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)




(tinkerpop) branch TINKERPOP-3063 deleted (was e0e52b7300)

2024-04-09 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3063
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was e0e52b7300 TINKERPOP-3063 Fix authentication for concurrency

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 TINKERPOP-3063 created (now e0e52b7300)

2024-03-13 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3063
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at e0e52b7300 TINKERPOP-3063 Fix authentication for concurrency

This branch includes the following new commits:

 new e0e52b7300 TINKERPOP-3063 Fix authentication for concurrency

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(tinkerpop) 01/01: TINKERPOP-3063 Fix authentication for concurrency

2024-03-13 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3063
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit e0e52b7300443fd9ce51007750585170e68d82fe
Author: Florian Hockmann 
AuthorDate: Wed Mar 13 15:16:02 2024 +0100

TINKERPOP-3063 Fix authentication for concurrency

Executing multiple queries in parallel could lead to authentication
failures if `MaxInProcessPerConnection` is set to a value higher than
`1` as the second request could then be sent to the server while the
server was still waiting for the authentication challenge response from
the driver for the first query.

This made it necessary to set `MaxInProcessPerConnection=1` as a
workaround for such scenarios which of course means that connection
pooling is less efficient.

Simply sending a validation request on each connection right after
establishing the connection and therefore before it can be used to
submit queries from the user should fix this issue.
The downside of this is of course that connection establishment takes
slightly longer. I think this is an acceptable trade-off even for
scenarios where authentication is not used since this also validates the
connection irrespective of authentication and also because this delay
only occurs once right at the start of an application.
---
 CHANGELOG.asciidoc |  1 +
 docs/src/upgrade/release-3.6.x.asciidoc| 16 +
 .../src/Gremlin.Net/Driver/Connection.cs   |  2 +-
 .../src/Gremlin.Net/Driver/ConnectionPool.cs   | 17 +
 .../Driver/GremlinClientAuthenticationTests.cs | 73 +-
 5 files changed, 79 insertions(+), 30 deletions(-)

diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 27fde68afd..f1622b1bad 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -24,6 +24,7 @@ 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 === TinkerPop 3.6.7 (NOT OFFICIALLY RELEASED YET)
 
 * Fixed a bug in Gremlin.Net for .NET 8 that led to exceptions: 
`InvalidOperationException: Enumeration has not started. Call MoveNext.`
+* Fixed a bug in the Gremlin.Net driver that could lead to failed 
authentication if multiple requests are executed in parallel.
 * Fixed message requestId serialization in `gremlin-python`.
 * Improved performance of `PathRetractionStrategy` for traversals that carry 
many children, but don't hold many labels to propogate.
 * Fixed bug in bytecode translation of `g.tx().commit()` and 
`g.tx().rollback()` in all languages.
diff --git a/docs/src/upgrade/release-3.6.x.asciidoc 
b/docs/src/upgrade/release-3.6.x.asciidoc
index da190bdc89..ac268528d1 100644
--- a/docs/src/upgrade/release-3.6.x.asciidoc
+++ b/docs/src/upgrade/release-3.6.x.asciidoc
@@ -43,6 +43,22 @@ Gremlin.Net driver expected.
 
 See: link:https://issues.apache.org/jira/browse/TINKERPOP-3029[TINKERPOP-3029]
 
+ Gremlin.Net: Fixed a bug related to authentication for multiple requests 
in parallel
+
+Executing multiple queries in parallel could lead to authentication failures 
if `MaxInProcessPerConnection` is set to a
+value higher than `1` as the second request could then be sent to the server 
while the server was still waiting for
+the authentication challenge response from the driver for the first query.
+
+This is now fixed by simply executing a validation request on each connection 
right after establishing the connection.
+That validation request will already handle authentication if necessary so 
user requests can afterwards directly be
+executed in parallel without needing to authenticate again.
+
+This is strictly speaking a breaking change since exceptions caused by 
authentication failures (no/wrong credentials
+configured) now occur directly when the `GremlinClient` is instantiated.
+In previous versions, the exceptions would only occur when the first request 
is executed.
+
+See: link:https://issues.apache.org/jira/browse/TINKERPOP-3063[TINKERPOP-3063]
+
 === Upgrading for Providers
 
 
diff --git a/gremlin-dotnet/src/Gremlin.Net/Driver/Connection.cs 
b/gremlin-dotnet/src/Gremlin.Net/Driver/Connection.cs
index cabe587fcd..6e4da37b7c 100644
--- a/gremlin-dotnet/src/Gremlin.Net/Driver/Connection.cs
+++ b/gremlin-dotnet/src/Gremlin.Net/Driver/Connection.cs
@@ -140,7 +140,7 @@ namespace Gremlin.Net.Driver
 }
 catch (Exception e)
 {
-if (receivedMsg!.RequestId != null)
+if (receivedMsg.RequestId != null)
 {
 
if(_callbackByRequestId.TryRemove(receivedMsg.RequestId.Value, out var 
responseHandler))
 {
diff --git a/gremlin-dotnet/src/Gremlin.Net/Driver/ConnectionPool.cs 
b/gremlin-dotnet/src/Gremlin.Net/Driver/ConnectionPool.cs
index e4f4a72ae2..82ecace0a7 100644
--- a/gremlin-dotnet/src/Gremlin.Net/Driver

(tinkerpop) branch 3.7-dev updated (936dd8137a -> 8a71161877)

2024-03-13 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 936dd8137a Merge branch '3.6-dev' into 3.7-dev
 add f5d8225ca8 Bump System.Text.Json from 8.0.2 to 8.0.3 in /gremlin-dotnet
 add 8a71161877 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch master updated (cc43fbf57a -> bd5d4f77ad)

2024-03-13 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from cc43fbf57a Merge branch '3.7-dev'
 add f5d8225ca8 Bump System.Text.Json from 8.0.2 to 8.0.3 in /gremlin-dotnet
 add 8a71161877 Merge branch '3.6-dev' into 3.7-dev
 new bd5d4f77ad Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2024-03-13 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit bd5d4f77ad6632dbc14cc09b378bc594b01f23f1
Merge: cc43fbf57a 8a71161877
Author: Florian Hockmann 
AuthorDate: Wed Mar 13 10:58:10 2024 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.3 deleted (was f5d8225ca8)

2024-03-13 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.3
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was f5d8225ca8 Bump System.Text.Json from 8.0.2 to 8.0.3 in /gremlin-dotnet

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 3.6-dev updated (aa90f77595 -> f5d8225ca8)

2024-03-13 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from aa90f77595 Bump Polly from 8.3.0 to 8.3.1 in /gremlin-dotnet
 add f5d8225ca8 Bump System.Text.Json from 8.0.2 to 8.0.3 in /gremlin-dotnet

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.3.1 deleted (was aa90f77595)

2024-03-12 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.3.1
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was aa90f77595 Bump Polly from 8.3.0 to 8.3.1 in /gremlin-dotnet

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 master updated (6bd2c92f63 -> cc43fbf57a)

2024-03-12 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 6bd2c92f63 CTR add missing require to gremlin-js SetSerializer
 add aa90f77595 Bump Polly from 8.3.0 to 8.3.1 in /gremlin-dotnet
 add 936dd8137a Merge branch '3.6-dev' into 3.7-dev
 new cc43fbf57a Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch 3.6-dev updated (2d950116db -> aa90f77595)

2024-03-12 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 2d950116db Avoiding expensive hash computation for complex steps with 
many children in filter ranking strategy (#2504)
 add aa90f77595 Bump Polly from 8.3.0 to 8.3.1 in /gremlin-dotnet

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch 3.7-dev updated (4e99e77f6a -> 936dd8137a)

2024-03-12 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 4e99e77f6a feat: `gremlin.js` browser support (#2506)
 add aa90f77595 Bump Polly from 8.3.0 to 8.3.1 in /gremlin-dotnet
 add 936dd8137a Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2024-03-12 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit cc43fbf57af6f95213e52cb58e911dd8cb857ab4
Merge: 6bd2c92f63 936dd8137a
Author: Florian Hockmann 
AuthorDate: Tue Mar 12 10:33:35 2024 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.0 deleted (was aeedc575cd)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was aeedc575cd Bump xunit from 2.6.6 to 2.7.0 in /gremlin-dotnet

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 3.7-dev updated (140339aa3e -> a919b90ebe)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 140339aa3e Merge branch '3.6-dev' into 3.7-dev
 add 8f2fdcb500 Bump System.Text.Json from 8.0.1 to 8.0.2 in /gremlin-dotnet
 add 234d140b53 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.2' into 3.6-dev
 add aeedc575cd Bump xunit from 2.6.6 to 2.7.0 in /gremlin-dotnet
 add ef27d69b7f Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.0' into 3.6-dev
 add 35cc1592ae Bump gherkin from 27.0.0 to 28.0.0 in /gremlin-dotnet
 add 22791ceaa0 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/gherkin-28.0.0' into 3.6-dev
 add bf63fcb181 Bump xunit.runner.visualstudio from 2.5.6 to 2.5.7 in 
/gremlin-dotnet
 add bdf91a77f0 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.7' into 
3.6-dev
 add a919b90ebe Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj  | 6 +++---
 .../Gremlin.Net.Template.IntegrationTest.csproj | 4 ++--
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj   | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/gherkin-28.0.0 deleted (was 35cc1592ae)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/gherkin-28.0.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 35cc1592ae Bump gherkin from 27.0.0 to 28.0.0 in /gremlin-dotnet

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/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.2 deleted (was 8f2fdcb500)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.2
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 8f2fdcb500 Bump System.Text.Json from 8.0.1 to 8.0.2 in /gremlin-dotnet

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/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.7 deleted (was bf63fcb181)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.7
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was bf63fcb181 Bump xunit.runner.visualstudio from 2.5.6 to 2.5.7 in 
/gremlin-dotnet

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 master updated (d3d971b0d6 -> ada49fa41d)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from d3d971b0d6 Merge branch '3.7-dev'
 add 8f2fdcb500 Bump System.Text.Json from 8.0.1 to 8.0.2 in /gremlin-dotnet
 add 234d140b53 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.2' into 3.6-dev
 add aeedc575cd Bump xunit from 2.6.6 to 2.7.0 in /gremlin-dotnet
 add ef27d69b7f Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.0' into 3.6-dev
 add 35cc1592ae Bump gherkin from 27.0.0 to 28.0.0 in /gremlin-dotnet
 add 22791ceaa0 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/gherkin-28.0.0' into 3.6-dev
 add bf63fcb181 Bump xunit.runner.visualstudio from 2.5.6 to 2.5.7 in 
/gremlin-dotnet
 add bdf91a77f0 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.7' into 
3.6-dev
 add a919b90ebe Merge branch '3.6-dev' into 3.7-dev
 new ada49fa41d Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj  | 6 +++---
 .../Gremlin.Net.Template.IntegrationTest.csproj | 4 ++--
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj   | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit ada49fa41d10acd259406fabc1e3815ed6e0d1e6
Merge: d3d971b0d6 a919b90ebe
Author: Florian Hockmann 
AuthorDate: Wed Feb 21 12:23:42 2024 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj  | 6 +++---
 .../Gremlin.Net.Template.IntegrationTest.csproj | 4 ++--
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj   | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)




(tinkerpop) branch 3.6-dev updated (e0c0735232 -> bdf91a77f0)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from e0c0735232 Merge branch 'TINKERPOP-3030' into 3.6-dev
 add 8f2fdcb500 Bump System.Text.Json from 8.0.1 to 8.0.2 in /gremlin-dotnet
 add 234d140b53 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.2' into 3.6-dev
 add aeedc575cd Bump xunit from 2.6.6 to 2.7.0 in /gremlin-dotnet
 add ef27d69b7f Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.7.0' into 3.6-dev
 add 35cc1592ae Bump gherkin from 27.0.0 to 28.0.0 in /gremlin-dotnet
 add 22791ceaa0 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/gherkin-28.0.0' into 3.6-dev
 add bf63fcb181 Bump xunit.runner.visualstudio from 2.5.6 to 2.5.7 in 
/gremlin-dotnet
 add bdf91a77f0 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.7' into 
3.6-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj  | 6 +++---
 .../Gremlin.Net.Template.IntegrationTest.csproj | 4 ++--
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj   | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)



(tinkerpop) branch master updated (8e8d7f16a1 -> d3d971b0d6)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 8e8d7f16a1 Merge pull request #2483 from apache/TINKERPOP-2862
 add 2c0ce57ecb TINKERPOP-3030 Update to .NET 8
 add e0c0735232 Merge branch 'TINKERPOP-3030' into 3.6-dev
 add 140339aa3e Merge branch '3.6-dev' into 3.7-dev
 new d3d971b0d6 Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  8 
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 gremlin-dotnet/docker-compose.yml|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  4 ++--
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 13 files changed, 24 insertions(+), 24 deletions(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit d3d971b0d6ef024095ccc64a2e68a7de5a0071a9
Merge: 8e8d7f16a1 140339aa3e
Author: Florian Hockmann 
AuthorDate: Wed Feb 21 12:08:09 2024 +0100

Merge branch '3.7-dev'

 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  8 
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 gremlin-dotnet/docker-compose.yml|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  4 ++--
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 13 files changed, 24 insertions(+), 24 deletions(-)




(tinkerpop) branch 3.7-dev updated (9aff7bb8fe -> 140339aa3e)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 9aff7bb8fe Merge branch '3.6-dev' into 3.7-dev
 add 2c0ce57ecb TINKERPOP-3030 Update to .NET 8
 add e0c0735232 Merge branch 'TINKERPOP-3030' into 3.6-dev
 add 140339aa3e Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  8 
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 gremlin-dotnet/docker-compose.yml|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  4 ++--
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 13 files changed, 24 insertions(+), 24 deletions(-)



(tinkerpop) branch TINKERPOP-3030 deleted (was 2c0ce57ecb)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 2c0ce57ecb TINKERPOP-3030 Update to .NET 8

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 3.6-dev updated (acc8fd347d -> e0c0735232)

2024-02-21 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from acc8fd347d Merge branch 'TINKERPOP-3031' into 3.6-dev
 add 2c0ce57ecb TINKERPOP-3030 Update to .NET 8
 add e0c0735232 Merge branch 'TINKERPOP-3030' into 3.6-dev

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  8 
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 gremlin-dotnet/docker-compose.yml|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  2 +-
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 13 files changed, 23 insertions(+), 23 deletions(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.3.0 deleted (was 42c40110b7)

2024-02-14 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.3.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 42c40110b7 Bump Polly from 8.2.1 to 8.3.0 in /gremlin-dotnet

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) 01/01: Merge branch '3.7-dev'

2024-02-14 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 546d219c6da24981eceaf4b4513c7d0c522942e4
Merge: 9c1c9fa033 f8d69f2779
Author: Florian Hockmann 
AuthorDate: Wed Feb 14 15:02:41 2024 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)




(tinkerpop) branch master updated (9c1c9fa033 -> 546d219c6d)

2024-02-14 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 9c1c9fa033 Merge branch '3.7-dev'
 add 42c40110b7 Bump Polly from 8.2.1 to 8.3.0 in /gremlin-dotnet
 add d55a9b9a8a Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.3.0' into 3.6-dev
 add 26184669dc Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 in 
/gremlin-dotnet
 add 259296b5b6 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.NET.Test.Sdk-17.9.0' into 
3.6-dev
 add f8d69f2779 Merge branch '3.6-dev' into 3.7-dev
 new 546d219c6d Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.NET.Test.Sdk-17.9.0 deleted (was 26184669dc)

2024-02-14 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.NET.Test.Sdk-17.9.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 26184669dc Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 in 
/gremlin-dotnet

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 3.6-dev updated (d862355334 -> 259296b5b6)

2024-02-14 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from d862355334 Bump codecov/codecov-action from 3 to 4 (#2472)
 add 42c40110b7 Bump Polly from 8.2.1 to 8.3.0 in /gremlin-dotnet
 add d55a9b9a8a Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.3.0' into 3.6-dev
 add 26184669dc Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 in 
/gremlin-dotnet
 add 259296b5b6 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.NET.Test.Sdk-17.9.0' into 
3.6-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)



(tinkerpop) branch 3.7-dev updated (01de8868c7 -> f8d69f2779)

2024-02-14 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 01de8868c7 Merge branch '3.6-dev' into 3.7-dev
 add 42c40110b7 Bump Polly from 8.2.1 to 8.3.0 in /gremlin-dotnet
 add d55a9b9a8a Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.3.0' into 3.6-dev
 add 26184669dc Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 in 
/gremlin-dotnet
 add 259296b5b6 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.NET.Test.Sdk-17.9.0' into 
3.6-dev
 add f8d69f2779 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)



(tinkerpop) 01/01: TINKERPOP-3030 Update to .NET 8

2024-01-24 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 2c0ce57ecb140a6368a8df29b6f11f3eb7f34777
Author: Florian Hockmann 
AuthorDate: Wed Jan 17 16:09:49 2024 +0100

TINKERPOP-3030 Update to .NET 8

I've also noticed that the examples used camel casing for some method
names which I switched to pascal casing to stay idiomatic in C#.

I had to update the Docker image to Ubuntu 20.04 because .NET 8 is not
available for Ubuntu 18.04. Since 18.04 is out of support since June
already, this update makes sense in general [1].

[1]: https://wiki.ubuntu.com/Releases
---
 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  8 
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 gremlin-dotnet/docker-compose.yml|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  2 +-
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 13 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index ef18acddab..30e291a09a 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -264,10 +264,10 @@ jobs:
 with:
   java-version: '11'
   distribution: 'temurin'
-  - name: Set up .NET 6.0.x
+  - name: Set up .NET 8.0.x
 uses: actions/setup-dotnet@v4
 with:
-  dotnet-version: '6.0.x'
+  dotnet-version: '8.0.x'
   - name: Get Cached Server Base Image
 uses: actions/cache@v3
 id: gremlin-server-test-docker-image
diff --git a/docker/Dockerfile b/docker/Dockerfile
index e12cc0f962..96a6f59227 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -15,24 +15,24 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM ubuntu:bionic
+FROM ubuntu:focal
 
 LABEL maintainer="Daniel Kuppitz "
 
 RUN apt-get update
 RUN apt-get -y install software-properties-common python3-software-properties 
apt-transport-https curl dpkg netcat net-tools iproute2
 RUN add-apt-repository ppa:openjdk-r/ppa
-RUN sh -c 'curl -s 
https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb 
-o packages-microsoft-prod.deb'
+RUN sh -c 'curl -s 
https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb 
-o packages-microsoft-prod.deb'
 RUN sh -c 'dpkg -i packages-microsoft-prod.deb'
 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 
3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
 RUN apt-get install apt-transport-https gnupg ca-certificates
-RUN sh -c 'echo "deb https://download.mono-project.com/repo/ubuntu 
stable-bionic main" | tee /etc/apt/sources.list.d/mono-official-stable.list'
+RUN sh -c 'echo "deb https://download.mono-project.com/repo/ubuntu 
stable-focal main" | tee /etc/apt/sources.list.d/mono-official-stable.list'
 RUN apt-get update
 
 # include both java 8/11 so that we can use the same docker image for future 
builds on that version of the jdk as we do
 # for the older release branches. the java version to use is just controlled 
by JAVA_HOME hardcoded below
 RUN apt-get install -y openjdk-8-jdk openjdk-11-jdk gawk git maven 
openssh-server subversion zip
-RUN apt-get install -y --force-yes dotnet-sdk-6.0 mono-devel
+RUN apt-get install -y --force-yes dotnet-sdk-8.0 mono-devel
 
 ENV DEBIAN_FRONTEND=noninteractive
 RUN apt-get install -y python3 python3.8 python3-dev python3.8-dev python3-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev \
diff --git a/docs/src/dev/developer/development-environment.asciidoc 
b/docs/src/dev/developer/development-environment.asciidoc
index 251ac7f58a..eb53fc1183 100644
--- a/docs/src/dev/developer/development-environment.asciidoc
+++ b/docs/src/dev/developer/development-environment.asciidoc
@@ -57,7 +57,7 @@ NOTE: For those using Windows, efforts have been made to keep 
the build OS indep
 that TinkerPop's build system will only allow for a minimum build at best. +
  +
  Refer to <> section for more details.
- 
+
 [[groovy-environment]]
 === Groovy Environment
 
@@ -267,7 +267,7 @@ See the <> section 
for more information
 [[dotnet-environm

(tinkerpop) branch TINKERPOP-3030 updated (8871c0d2cf -> 2c0ce57ecb)

2024-01-24 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 8871c0d2cf TINKERPOP-3030 Update to .NET 8
 new 2c0ce57ecb TINKERPOP-3030 Update to .NET 8

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (8871c0d2cf)
\
 N -- N -- N   refs/heads/TINKERPOP-3030 (2c0ce57ecb)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:



(tinkerpop) branch TINKERPOP-3030 updated (00566bb99d -> 8871c0d2cf)

2024-01-24 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 00566bb99d TINKERPOP-3030 Update to .NET 8
 new 8871c0d2cf TINKERPOP-3030 Update to .NET 8

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (00566bb99d)
\
 N -- N -- N   refs/heads/TINKERPOP-3030 (8871c0d2cf)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docker/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



(tinkerpop) 01/01: TINKERPOP-3030 Update to .NET 8

2024-01-24 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 8871c0d2cf9ef3c8f31f05c3c0d54b9560bf4619
Author: Florian Hockmann 
AuthorDate: Wed Jan 17 16:09:49 2024 +0100

TINKERPOP-3030 Update to .NET 8

I've also noticed that the examples used camel casing for some method
names which I switched to pascal casing to stay idiomatic in C#.
---
 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  8 
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 gremlin-dotnet/docker-compose.yml|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  2 +-
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 13 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index ef18acddab..30e291a09a 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -264,10 +264,10 @@ jobs:
 with:
   java-version: '11'
   distribution: 'temurin'
-  - name: Set up .NET 6.0.x
+  - name: Set up .NET 8.0.x
 uses: actions/setup-dotnet@v4
 with:
-  dotnet-version: '6.0.x'
+  dotnet-version: '8.0.x'
   - name: Get Cached Server Base Image
 uses: actions/cache@v3
 id: gremlin-server-test-docker-image
diff --git a/docker/Dockerfile b/docker/Dockerfile
index e12cc0f962..96a6f59227 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -15,24 +15,24 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM ubuntu:bionic
+FROM ubuntu:focal
 
 LABEL maintainer="Daniel Kuppitz "
 
 RUN apt-get update
 RUN apt-get -y install software-properties-common python3-software-properties 
apt-transport-https curl dpkg netcat net-tools iproute2
 RUN add-apt-repository ppa:openjdk-r/ppa
-RUN sh -c 'curl -s 
https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb 
-o packages-microsoft-prod.deb'
+RUN sh -c 'curl -s 
https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb 
-o packages-microsoft-prod.deb'
 RUN sh -c 'dpkg -i packages-microsoft-prod.deb'
 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 
3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
 RUN apt-get install apt-transport-https gnupg ca-certificates
-RUN sh -c 'echo "deb https://download.mono-project.com/repo/ubuntu 
stable-bionic main" | tee /etc/apt/sources.list.d/mono-official-stable.list'
+RUN sh -c 'echo "deb https://download.mono-project.com/repo/ubuntu 
stable-focal main" | tee /etc/apt/sources.list.d/mono-official-stable.list'
 RUN apt-get update
 
 # include both java 8/11 so that we can use the same docker image for future 
builds on that version of the jdk as we do
 # for the older release branches. the java version to use is just controlled 
by JAVA_HOME hardcoded below
 RUN apt-get install -y openjdk-8-jdk openjdk-11-jdk gawk git maven 
openssh-server subversion zip
-RUN apt-get install -y --force-yes dotnet-sdk-6.0 mono-devel
+RUN apt-get install -y --force-yes dotnet-sdk-8.0 mono-devel
 
 ENV DEBIAN_FRONTEND=noninteractive
 RUN apt-get install -y python3 python3.8 python3-dev python3.8-dev python3-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev \
diff --git a/docs/src/dev/developer/development-environment.asciidoc 
b/docs/src/dev/developer/development-environment.asciidoc
index 251ac7f58a..eb53fc1183 100644
--- a/docs/src/dev/developer/development-environment.asciidoc
+++ b/docs/src/dev/developer/development-environment.asciidoc
@@ -57,7 +57,7 @@ NOTE: For those using Windows, efforts have been made to keep 
the build OS indep
 that TinkerPop's build system will only allow for a minimum build at best. +
  +
  Refer to <> section for more details.
- 
+
 [[groovy-environment]]
 === Groovy Environment
 
@@ -267,7 +267,7 @@ See the <> section 
for more information
 [[dotnet-environment]]
 === DotNet Environment
 
-The build optionally requires link:https://dotnet.microsoft.com/download[.NET 
SDK] (>=6.0) to work with the
+The build optionally requires link:https://dotnet.microsoft.com/download[.NET 
SDK] (>=8.0) to wor

(tinkerpop) branch TINKERPOP-3030 updated (3e1c2da497 -> 00566bb99d)

2024-01-24 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 3e1c2da497 TINKERPOP-3030 Update to .NET 8
 new 00566bb99d TINKERPOP-3030 Update to .NET 8

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (3e1c2da497)
\
 N -- N -- N   refs/heads/TINKERPOP-3030 (00566bb99d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docker/Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



(tinkerpop) 01/01: TINKERPOP-3030 Update to .NET 8

2024-01-24 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 00566bb99d463a336bfcdbdaf720cc8fe9fc657e
Author: Florian Hockmann 
AuthorDate: Wed Jan 17 16:09:49 2024 +0100

TINKERPOP-3030 Update to .NET 8

I've also noticed that the examples used camel casing for some method
names which I switched to pascal casing to stay idiomatic in C#.

I had to update the Docker image to Ubuntu 20.04 because .NET 8 is not
available for Ubuntu 18.04. Since 18.04 is out of support since June
already, this update makes sense in general [1].

[1]: https://wiki.ubuntu.com/Releases
---
 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  8 
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 gremlin-dotnet/docker-compose.yml|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  2 +-
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 13 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index ef18acddab..30e291a09a 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -264,10 +264,10 @@ jobs:
 with:
   java-version: '11'
   distribution: 'temurin'
-  - name: Set up .NET 6.0.x
+  - name: Set up .NET 8.0.x
 uses: actions/setup-dotnet@v4
 with:
-  dotnet-version: '6.0.x'
+  dotnet-version: '8.0.x'
   - name: Get Cached Server Base Image
 uses: actions/cache@v3
 id: gremlin-server-test-docker-image
diff --git a/docker/Dockerfile b/docker/Dockerfile
index e12cc0f962..8599cd16ea 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -15,24 +15,24 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM ubuntu:bionic
+FROM ubuntu:jammy
 
 LABEL maintainer="Daniel Kuppitz "
 
 RUN apt-get update
 RUN apt-get -y install software-properties-common python3-software-properties 
apt-transport-https curl dpkg netcat net-tools iproute2
 RUN add-apt-repository ppa:openjdk-r/ppa
-RUN sh -c 'curl -s 
https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb 
-o packages-microsoft-prod.deb'
+RUN sh -c 'curl -s 
https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb 
-o packages-microsoft-prod.deb'
 RUN sh -c 'dpkg -i packages-microsoft-prod.deb'
 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 
3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
 RUN apt-get install apt-transport-https gnupg ca-certificates
-RUN sh -c 'echo "deb https://download.mono-project.com/repo/ubuntu 
stable-bionic main" | tee /etc/apt/sources.list.d/mono-official-stable.list'
+RUN sh -c 'echo "deb https://download.mono-project.com/repo/ubuntu 
stable-focal main" | tee /etc/apt/sources.list.d/mono-official-stable.list'
 RUN apt-get update
 
 # include both java 8/11 so that we can use the same docker image for future 
builds on that version of the jdk as we do
 # for the older release branches. the java version to use is just controlled 
by JAVA_HOME hardcoded below
 RUN apt-get install -y openjdk-8-jdk openjdk-11-jdk gawk git maven 
openssh-server subversion zip
-RUN apt-get install -y --force-yes dotnet-sdk-6.0 mono-devel
+RUN apt-get install -y --force-yes dotnet-sdk-8.0 mono-devel
 
 ENV DEBIAN_FRONTEND=noninteractive
 RUN apt-get install -y python3 python3.8 python3-dev python3.8-dev python3-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev \
diff --git a/docs/src/dev/developer/development-environment.asciidoc 
b/docs/src/dev/developer/development-environment.asciidoc
index 251ac7f58a..eb53fc1183 100644
--- a/docs/src/dev/developer/development-environment.asciidoc
+++ b/docs/src/dev/developer/development-environment.asciidoc
@@ -57,7 +57,7 @@ NOTE: For those using Windows, efforts have been made to keep 
the build OS indep
 that TinkerPop's build system will only allow for a minimum build at best. +
  +
  Refer to <> section for more details.
- 
+
 [[groovy-environment]]
 === Groovy Environment
 
@@ -267,7 +267,7 @@ See the <> section 
for more information
 [[dotnet-environm

(tinkerpop) branch TINKERPOP-3030 updated (c99299aa9f -> 3e1c2da497)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard c99299aa9f TINKERPOP-3030 Update to .NET 8
 new 3e1c2da497 TINKERPOP-3030 Update to .NET 8

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c99299aa9f)
\
 N -- N -- N   refs/heads/TINKERPOP-3030 (3e1c2da497)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/docker-compose.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) 01/01: TINKERPOP-3030 Update to .NET 8

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 3e1c2da4972584ffb5af4b390f669ee3c730ce45
Author: Florian Hockmann 
AuthorDate: Wed Jan 17 16:09:49 2024 +0100

TINKERPOP-3030 Update to .NET 8

I've also noticed that the examples used camel casing for some method
names which I switched to pascal casing to stay idiomatic in C#.
---
 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  2 +-
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 gremlin-dotnet/docker-compose.yml|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  2 +-
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 13 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index ef18acddab..30e291a09a 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -264,10 +264,10 @@ jobs:
 with:
   java-version: '11'
   distribution: 'temurin'
-  - name: Set up .NET 6.0.x
+  - name: Set up .NET 8.0.x
 uses: actions/setup-dotnet@v4
 with:
-  dotnet-version: '6.0.x'
+  dotnet-version: '8.0.x'
   - name: Get Cached Server Base Image
 uses: actions/cache@v3
 id: gremlin-server-test-docker-image
diff --git a/docker/Dockerfile b/docker/Dockerfile
index e12cc0f962..134f85c365 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -32,7 +32,7 @@ RUN apt-get update
 # include both java 8/11 so that we can use the same docker image for future 
builds on that version of the jdk as we do
 # for the older release branches. the java version to use is just controlled 
by JAVA_HOME hardcoded below
 RUN apt-get install -y openjdk-8-jdk openjdk-11-jdk gawk git maven 
openssh-server subversion zip
-RUN apt-get install -y --force-yes dotnet-sdk-6.0 mono-devel
+RUN apt-get install -y --force-yes dotnet-sdk-8.0 mono-devel
 
 ENV DEBIAN_FRONTEND=noninteractive
 RUN apt-get install -y python3 python3.8 python3-dev python3.8-dev python3-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev \
diff --git a/docs/src/dev/developer/development-environment.asciidoc 
b/docs/src/dev/developer/development-environment.asciidoc
index 251ac7f58a..eb53fc1183 100644
--- a/docs/src/dev/developer/development-environment.asciidoc
+++ b/docs/src/dev/developer/development-environment.asciidoc
@@ -57,7 +57,7 @@ NOTE: For those using Windows, efforts have been made to keep 
the build OS indep
 that TinkerPop's build system will only allow for a minimum build at best. +
  +
  Refer to <> section for more details.
- 
+
 [[groovy-environment]]
 === Groovy Environment
 
@@ -267,7 +267,7 @@ See the <> section 
for more information
 [[dotnet-environment]]
 === DotNet Environment
 
-The build optionally requires link:https://dotnet.microsoft.com/download[.NET 
SDK] (>=6.0) to work with the
+The build optionally requires link:https://dotnet.microsoft.com/download[.NET 
SDK] (>=8.0) to work with the
 `gremlin-dotnet` module. If .NET SDK is not installed, TinkerPop will still 
build with Maven, but .NET projects
 will be skipped.
 
diff --git a/gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj 
b/gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj
index 6fe7a3b633..3dcaf373ca 100644
--- a/gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj
+++ b/gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj
@@ -19,7 +19,7 @@ limitations under the License.
 
   
 Exe
-net7.0
+net8.0
 enable
 enable
   
diff --git a/gremlin-dotnet/Examples/Connections/Connections.cs 
b/gremlin-dotnet/Examples/Connections/Connections.cs
index 26490f750b..940cc05990 100644
--- a/gremlin-dotnet/Examples/Connections/Connections.cs
+++ b/gremlin-dotnet/Examples/Connections/Connections.cs
@@ -26,13 +26,13 @@ public class ConnectionExample
 {
 static void Main()
 {
-withRemote();
-withConf();
-withSerializer();
+WithRemote();
+WithConf();
+WithSerializer();
 }
 
 // Connecting to the server
-static void withRemote()
+static void WithRemote()
 {
 var server = new GremlinServer

(tinkerpop) 01/01: TINKERPOP-3030 Update to .NET 8

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit c99299aa9fb5d2c389efa6171547d442dd158172
Author: Florian Hockmann 
AuthorDate: Wed Jan 17 16:09:49 2024 +0100

TINKERPOP-3030 Update to .NET 8

I've also noticed that the examples used camel casing for some method
names which I switched to pascal casing to stay idiomatic in C#.
---
 .github/workflows/build-test.yml |  4 ++--
 docker/Dockerfile|  2 +-
 docs/src/dev/developer/development-environment.asciidoc  |  4 ++--
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  2 +-
 .../Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj |  2 +-
 .../Gremlin.Net.IntegrationTest.csproj   |  2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj  |  2 +-
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj|  2 +-
 12 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index ef18acddab..30e291a09a 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -264,10 +264,10 @@ jobs:
 with:
   java-version: '11'
   distribution: 'temurin'
-  - name: Set up .NET 6.0.x
+  - name: Set up .NET 8.0.x
 uses: actions/setup-dotnet@v4
 with:
-  dotnet-version: '6.0.x'
+  dotnet-version: '8.0.x'
   - name: Get Cached Server Base Image
 uses: actions/cache@v3
 id: gremlin-server-test-docker-image
diff --git a/docker/Dockerfile b/docker/Dockerfile
index e12cc0f962..134f85c365 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -32,7 +32,7 @@ RUN apt-get update
 # include both java 8/11 so that we can use the same docker image for future 
builds on that version of the jdk as we do
 # for the older release branches. the java version to use is just controlled 
by JAVA_HOME hardcoded below
 RUN apt-get install -y openjdk-8-jdk openjdk-11-jdk gawk git maven 
openssh-server subversion zip
-RUN apt-get install -y --force-yes dotnet-sdk-6.0 mono-devel
+RUN apt-get install -y --force-yes dotnet-sdk-8.0 mono-devel
 
 ENV DEBIAN_FRONTEND=noninteractive
 RUN apt-get install -y python3 python3.8 python3-dev python3.8-dev python3-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev \
diff --git a/docs/src/dev/developer/development-environment.asciidoc 
b/docs/src/dev/developer/development-environment.asciidoc
index 251ac7f58a..eb53fc1183 100644
--- a/docs/src/dev/developer/development-environment.asciidoc
+++ b/docs/src/dev/developer/development-environment.asciidoc
@@ -57,7 +57,7 @@ NOTE: For those using Windows, efforts have been made to keep 
the build OS indep
 that TinkerPop's build system will only allow for a minimum build at best. +
  +
  Refer to <> section for more details.
- 
+
 [[groovy-environment]]
 === Groovy Environment
 
@@ -267,7 +267,7 @@ See the <> section 
for more information
 [[dotnet-environment]]
 === DotNet Environment
 
-The build optionally requires link:https://dotnet.microsoft.com/download[.NET 
SDK] (>=6.0) to work with the
+The build optionally requires link:https://dotnet.microsoft.com/download[.NET 
SDK] (>=8.0) to work with the
 `gremlin-dotnet` module. If .NET SDK is not installed, TinkerPop will still 
build with Maven, but .NET projects
 will be skipped.
 
diff --git a/gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj 
b/gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj
index 6fe7a3b633..3dcaf373ca 100644
--- a/gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj
+++ b/gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj
@@ -19,7 +19,7 @@ limitations under the License.
 
   
 Exe
-net7.0
+net8.0
 enable
 enable
   
diff --git a/gremlin-dotnet/Examples/Connections/Connections.cs 
b/gremlin-dotnet/Examples/Connections/Connections.cs
index 26490f750b..940cc05990 100644
--- a/gremlin-dotnet/Examples/Connections/Connections.cs
+++ b/gremlin-dotnet/Examples/Connections/Connections.cs
@@ -26,13 +26,13 @@ public class ConnectionExample
 {
 static void Main()
 {
-withRemote();
-withConf();
-withSerializer();
+WithRemote();
+WithConf();
+WithSerializer();
 }
 
 // Connecting to the server
-static void withRemote()
+static void WithRemote()
 {
 var server = new GremlinServer("localhost", 8182);
 using var remoteConnection = ne

(tinkerpop) branch TINKERPOP-3030 updated (b369db25ce -> c99299aa9f)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard b369db25ce TINKERPOP-3030 Update to .NET 8
 new c99299aa9f TINKERPOP-3030 Update to .NET 8

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b369db25ce)
\
 N -- N -- N   refs/heads/TINKERPOP-3030 (c99299aa9f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.csproj |  2 +-
 gremlin-dotnet/Examples/Connections/Connections.cs   | 12 ++--
 gremlin-dotnet/Examples/Connections/Connections.csproj   |  2 +-
 .../Examples/ModernTraversals/ModernTraversals.csproj|  2 +-
 .../src/Gremlin.Net.Template/Gremlin.Net.Template.csproj |  2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 5760f1cdd4b6476caca9419f5c8078d5a30a7bee
Merge: 69c99146c3 45b1ace623
Author: Florian Hockmann 
AuthorDate: Wed Jan 17 16:13:45 2024 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(tinkerpop) branch master updated (69c99146c3 -> 5760f1cdd4)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 69c99146c3 Merge branch '3.7-dev'
 add 9c43c19221 Bump System.Text.Json from 8.0.0 to 8.0.1 in /gremlin-dotnet
 add 45b1ace623 Merge branch '3.6-dev' into 3.7-dev
 new 5760f1cdd4 Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.1 deleted (was 9c43c19221)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/System.Text.Json-8.0.1
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 9c43c19221 Bump System.Text.Json from 8.0.0 to 8.0.1 in /gremlin-dotnet

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 3.7-dev updated (d00e1a0059 -> 45b1ace623)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from d00e1a0059 Merge branch '3.6-dev' into 3.7-dev
 add 9c43c19221 Bump System.Text.Json from 8.0.0 to 8.0.1 in /gremlin-dotnet
 add 45b1ace623 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch 3.6-dev updated (3ae529870b -> 9c43c19221)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 3ae529870b Merge branch 
'dependabot/nuget/gremlin-dotnet/3.5-dev/Microsoft.Extensions.Configuration.Json-8.0.0'
 into 3.5-dev
 add 9c43c19221 Bump System.Text.Json from 8.0.0 to 8.0.1 in /gremlin-dotnet

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch TINKERPOP-3030 created (now b369db25ce)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at b369db25ce TINKERPOP-3030 Update to .NET 8

This branch includes the following new commits:

 new b369db25ce TINKERPOP-3030 Update to .NET 8

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(tinkerpop) 01/01: TINKERPOP-3030 Update to .NET 8

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3030
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit b369db25ce42bca6f00c5301818558b73f883324
Author: Florian Hockmann 
AuthorDate: Wed Jan 17 16:09:49 2024 +0100

TINKERPOP-3030 Update to .NET 8
---
 .github/workflows/build-test.yml  | 4 ++--
 docker/Dockerfile | 2 +-
 docs/src/dev/developer/development-environment.asciidoc   | 4 ++--
 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj| 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj   | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj  | 2 +-
 7 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index ef18acddab..30e291a09a 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -264,10 +264,10 @@ jobs:
 with:
   java-version: '11'
   distribution: 'temurin'
-  - name: Set up .NET 6.0.x
+  - name: Set up .NET 8.0.x
 uses: actions/setup-dotnet@v4
 with:
-  dotnet-version: '6.0.x'
+  dotnet-version: '8.0.x'
   - name: Get Cached Server Base Image
 uses: actions/cache@v3
 id: gremlin-server-test-docker-image
diff --git a/docker/Dockerfile b/docker/Dockerfile
index e12cc0f962..134f85c365 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -32,7 +32,7 @@ RUN apt-get update
 # include both java 8/11 so that we can use the same docker image for future 
builds on that version of the jdk as we do
 # for the older release branches. the java version to use is just controlled 
by JAVA_HOME hardcoded below
 RUN apt-get install -y openjdk-8-jdk openjdk-11-jdk gawk git maven 
openssh-server subversion zip
-RUN apt-get install -y --force-yes dotnet-sdk-6.0 mono-devel
+RUN apt-get install -y --force-yes dotnet-sdk-8.0 mono-devel
 
 ENV DEBIAN_FRONTEND=noninteractive
 RUN apt-get install -y python3 python3.8 python3-dev python3.8-dev python3-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev \
diff --git a/docs/src/dev/developer/development-environment.asciidoc 
b/docs/src/dev/developer/development-environment.asciidoc
index 251ac7f58a..eb53fc1183 100644
--- a/docs/src/dev/developer/development-environment.asciidoc
+++ b/docs/src/dev/developer/development-environment.asciidoc
@@ -57,7 +57,7 @@ NOTE: For those using Windows, efforts have been made to keep 
the build OS indep
 that TinkerPop's build system will only allow for a minimum build at best. +
  +
  Refer to <> section for more details.
- 
+
 [[groovy-environment]]
 === Groovy Environment
 
@@ -267,7 +267,7 @@ See the <> section 
for more information
 [[dotnet-environment]]
 === DotNet Environment
 
-The build optionally requires link:https://dotnet.microsoft.com/download[.NET 
SDK] (>=6.0) to work with the
+The build optionally requires link:https://dotnet.microsoft.com/download[.NET 
SDK] (>=8.0) to work with the
 `gremlin-dotnet` module. If .NET SDK is not installed, TinkerPop will still 
build with Maven, but .NET projects
 will be skipped.
 
diff --git 
a/gremlin-dotnet/test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj 
b/gremlin-dotnet/test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj
index 18d9ed53eb..af2f34b890 100644
--- a/gremlin-dotnet/test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj
+++ b/gremlin-dotnet/test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj
@@ -2,7 +2,7 @@
 
 
 Exe
-net6.0
+net8.0
 
 
 
diff --git 
a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj
 
b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj
index 9d6ebf4650..cfce8352f8 100644
--- 
a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj
+++ 
b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj
@@ -1,6 +1,6 @@
 
   
-net6.0
+net8.0
   
   
 
diff --git 
a/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/Gremlin.Net.Template.IntegrationTest.csproj
 
b/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/Gremlin.Net.Template.IntegrationTest.csproj
index dd4616224a..b8eca918fd 100644
--- 
a/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/Gremlin.Net.Template.IntegrationTest.csproj
+++ 
b/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/Gremlin.Net.Template.IntegrationTest.csproj
@@ -1,7 +1,7 @@
 
 
   
-net6.0
+net8.0
   
 
   
diff --git 
a/gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj 
b/gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.Uni

(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.2.1 deleted (was 3b3a3857f5)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.2.1
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 3b3a3857f5 Bump Polly from 7.2.4 to 8.2.1 in /gremlin-dotnet

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 3.6-dev updated (ddf32174d7 -> 3ae529870b)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from ddf32174d7 Bump ws in 
/gremlin-javascript/src/main/javascript/gremlin-javascript (#2419)
 add 736d0b8fc9 Bump Microsoft.Extensions.Logging.Console and 
Microsoft.Extensions.Logging.Abstractions
 add 8589fdf48a Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0'
 into 3.6-dev
 add 2943979e57 Bump xunit.runner.visualstudio from 2.5.5 to 2.5.6 in 
/gremlin-dotnet
 add 1e305b9e92 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.6' into 
3.6-dev
 add 3b3a3857f5 Bump Polly from 7.2.4 to 8.2.1 in /gremlin-dotnet
 add cbaed7d369 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.2.1' into 3.6-dev
 add ae840bd9aa Bump BenchmarkDotNet from 0.13.11 to 0.13.12 in 
/gremlin-dotnet
 add b9b23fdd73 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.12' into 3.6-dev
 add ea328e1070 Bump xunit from 2.6.1 to 2.6.6 in /gremlin-dotnet
 add 3ae529870b Merge branch 
'dependabot/nuget/gremlin-dotnet/3.5-dev/Microsoft.Extensions.Configuration.Json-8.0.0'
 into 3.5-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj   | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj  | 6 +++---
 .../Gremlin.Net.Template.IntegrationTest.csproj | 4 ++--
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj   | 4 ++--
 5 files changed, 9 insertions(+), 9 deletions(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.6.6 deleted (was ea328e1070)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.6.6
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was ea328e1070 Bump xunit from 2.6.1 to 2.6.6 in /gremlin-dotnet

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/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.6 deleted (was 2943979e57)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.6
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 2943979e57 Bump xunit.runner.visualstudio from 2.5.5 to 2.5.6 in 
/gremlin-dotnet

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/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.12 deleted (was ae840bd9aa)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.12
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was ae840bd9aa Bump BenchmarkDotNet from 0.13.11 to 0.13.12 in 
/gremlin-dotnet

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 master updated (ef7ade2fdd -> 69c99146c3)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from ef7ade2fdd Merge branch '3.7-dev'
 add 736d0b8fc9 Bump Microsoft.Extensions.Logging.Console and 
Microsoft.Extensions.Logging.Abstractions
 add 8589fdf48a Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0'
 into 3.6-dev
 add 2943979e57 Bump xunit.runner.visualstudio from 2.5.5 to 2.5.6 in 
/gremlin-dotnet
 add 1e305b9e92 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.6' into 
3.6-dev
 add 3b3a3857f5 Bump Polly from 7.2.4 to 8.2.1 in /gremlin-dotnet
 add cbaed7d369 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.2.1' into 3.6-dev
 add ae840bd9aa Bump BenchmarkDotNet from 0.13.11 to 0.13.12 in 
/gremlin-dotnet
 add b9b23fdd73 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.12' into 3.6-dev
 add ea328e1070 Bump xunit from 2.6.1 to 2.6.6 in /gremlin-dotnet
 add 3ae529870b Merge branch 
'dependabot/nuget/gremlin-dotnet/3.5-dev/Microsoft.Extensions.Configuration.Json-8.0.0'
 into 3.5-dev
 add d00e1a0059 Merge branch '3.6-dev' into 3.7-dev
 new 69c99146c3 Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj   | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj  | 6 +++---
 .../Gremlin.Net.Template.IntegrationTest.csproj | 4 ++--
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj   | 4 ++--
 5 files changed, 9 insertions(+), 9 deletions(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 69c99146c3334b5032496229eba56f9c91701073
Merge: ef7ade2fdd d00e1a0059
Author: Florian Hockmann 
AuthorDate: Wed Jan 17 13:34:42 2024 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj   | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj  | 6 +++---
 .../Gremlin.Net.Template.IntegrationTest.csproj | 4 ++--
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj   | 4 ++--
 5 files changed, 9 insertions(+), 9 deletions(-)




(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0 deleted (was 736d0b8fc9)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 736d0b8fc9 Bump Microsoft.Extensions.Logging.Console and 
Microsoft.Extensions.Logging.Abstractions

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 3.7-dev updated (2f606812bd -> d00e1a0059)

2024-01-17 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 2f606812bd Merge branch '3.6-dev' into 3.7-dev
 add 736d0b8fc9 Bump Microsoft.Extensions.Logging.Console and 
Microsoft.Extensions.Logging.Abstractions
 add 8589fdf48a Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0'
 into 3.6-dev
 add 2943979e57 Bump xunit.runner.visualstudio from 2.5.5 to 2.5.6 in 
/gremlin-dotnet
 add 1e305b9e92 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.6' into 
3.6-dev
 add 3b3a3857f5 Bump Polly from 7.2.4 to 8.2.1 in /gremlin-dotnet
 add cbaed7d369 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/Polly-8.2.1' into 3.6-dev
 add ae840bd9aa Bump BenchmarkDotNet from 0.13.11 to 0.13.12 in 
/gremlin-dotnet
 add b9b23fdd73 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.12' into 3.6-dev
 add ea328e1070 Bump xunit from 2.6.1 to 2.6.6 in /gremlin-dotnet
 add 3ae529870b Merge branch 
'dependabot/nuget/gremlin-dotnet/3.5-dev/Microsoft.Extensions.Configuration.Json-8.0.0'
 into 3.5-dev
 add d00e1a0059 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj   | 2 +-
 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj   | 2 +-
 .../Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj  | 6 +++---
 .../Gremlin.Net.Template.IntegrationTest.csproj | 4 ++--
 .../test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj   | 4 ++--
 5 files changed, 9 insertions(+), 9 deletions(-)



(tinkerpop) branch 3.7-dev updated (1d6a2c1fca -> 821bf60d41)

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 1d6a2c1fca Merge branch '3.6-dev' into 3.7-dev
 add dea29ac74e Increase delay in test as it's flaky on GHA CTR
 add 821bf60d41 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Driver/ConnectionPoolTests.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch 3.6-dev updated (8fda42f537 -> dea29ac74e)

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 8fda42f537 TINKERPOP-3029 Fix enumeration for .NET 8
 add dea29ac74e Increase delay in test as it's flaky on GHA CTR

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Driver/ConnectionPoolTests.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch master updated (26ae70807e -> e1dacc3024)

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 26ae70807e Merge branch '3.7-dev'
 add dea29ac74e Increase delay in test as it's flaky on GHA CTR
 add 821bf60d41 Merge branch '3.6-dev' into 3.7-dev
 new e1dacc3024 Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Driver/ConnectionPoolTests.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit e1dacc30240bdf087174d16f978d792e2d5fcb75
Merge: 26ae70807e 821bf60d41
Author: Florian Hockmann 
AuthorDate: Mon Jan 15 13:37:59 2024 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/test/Gremlin.Net.UnitTest/Driver/ConnectionPoolTests.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch 3.7-dev updated (fed30eec62 -> 1d6a2c1fca)

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from fed30eec62 CTR Update LICENSE file bundled dependencies
 add 8fda42f537 TINKERPOP-3029 Fix enumeration for .NET 8
 add 1d6a2c1fca Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.asciidoc  |  1 +
 docs/src/upgrade/release-3.6.x.asciidoc | 12 
 .../Gremlin.Net/Process/Traversal/DefaultTraversal.cs   | 17 +
 3 files changed, 22 insertions(+), 8 deletions(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 26ae70807eb1b6cba2036c3f9955f82bf47f51c7
Merge: a056d082cf 1d6a2c1fca
Author: Florian Hockmann 
AuthorDate: Mon Jan 15 12:30:58 2024 +0100

Merge branch '3.7-dev'

 CHANGELOG.asciidoc  |  1 +
 docs/src/upgrade/release-3.6.x.asciidoc | 12 
 .../Gremlin.Net/Process/Traversal/DefaultTraversal.cs   | 17 +
 3 files changed, 22 insertions(+), 8 deletions(-)




(tinkerpop) branch master updated (a056d082cf -> 26ae70807e)

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from a056d082cf Merge branch '3.7-dev'
 add 8fda42f537 TINKERPOP-3029 Fix enumeration for .NET 8
 add 1d6a2c1fca Merge branch '3.6-dev' into 3.7-dev
 new 26ae70807e Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.asciidoc  |  1 +
 docs/src/upgrade/release-3.6.x.asciidoc | 12 
 .../Gremlin.Net/Process/Traversal/DefaultTraversal.cs   | 17 +
 3 files changed, 22 insertions(+), 8 deletions(-)



(tinkerpop) branch TINKERPOP-3029 deleted (was 8fda42f537)

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3029
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 8fda42f537 TINKERPOP-3029 Fix enumeration for .NET 8

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 3.6-dev updated (e86eed20a8 -> 8fda42f537)

2024-01-15 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from e86eed20a8 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.11' into 3.6-dev
 add 8fda42f537 TINKERPOP-3029 Fix enumeration for .NET 8

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.asciidoc  |  1 +
 docs/src/upgrade/release-3.6.x.asciidoc | 12 
 .../Gremlin.Net/Process/Traversal/DefaultTraversal.cs   | 17 +
 3 files changed, 22 insertions(+), 8 deletions(-)



(tinkerpop) branch TINKERPOP-3029 updated (76df767fb0 -> 8fda42f537)

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

florianhockmann pushed a change to branch TINKERPOP-3029
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 76df767fb0 TINKERPOP-3029 Fix enumeration for .NET 8
 add 8fda42f537 TINKERPOP-3029 Fix enumeration for .NET 8

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (76df767fb0)
\
 N -- N -- N   refs/heads/TINKERPOP-3029 (8fda42f537)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.asciidoc   |  1 +
 docs/src/upgrade/release-3.6.x.asciidoc  | 12 
 .../src/Gremlin.Net/Process/Traversal/DefaultTraversal.cs|  2 +-
 3 files changed, 14 insertions(+), 1 deletion(-)



(tinkerpop) branch TINKERPOP-3029 created (now 76df767fb0)

2024-01-03 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-3029
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at 76df767fb0 TINKERPOP-3029 Fix enumeration for .NET 8

This branch includes the following new commits:

 new 76df767fb0 TINKERPOP-3029 Fix enumeration for .NET 8

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(tinkerpop) 01/01: TINKERPOP-3029 Fix enumeration for .NET 8

2024-01-03 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-3029
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 76df767fb0fcf5ef42fb7b4b249d6d65d548a30f
Author: Florian Hockmann 
AuthorDate: Wed Jan 3 17:07:45 2024 +0100

TINKERPOP-3029 Fix enumeration for .NET 8

`IEnumerable.Current` has been changed in .NET 8. Before .NET 8, it
simply returned `null` if `MoveNext()` wasn't called first. With .NET 8
however it throws an exception.
Since this has apparently already been undefined behavior before, we
should fix this irrespective of .NET 8:
https://github.com/dotnet/runtime/issues/85243#issuecomment-1521085177

The problem can be reproduced by executing the Gherkin tests with .NET
without the change in `DefaultTraversal` (by changing the
`TargetFramework` in `Gremlin.Net.IntegrationTest.csproj` to `net8.0`).
.NET 8 needs to be installed for this of course.
---
 .../Gremlin.Net/Process/Traversal/DefaultTraversal.cs   | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git 
a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/DefaultTraversal.cs 
b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/DefaultTraversal.cs
index 191b7a8293..f8a2286f19 100644
--- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/DefaultTraversal.cs
+++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/DefaultTraversal.cs
@@ -82,21 +82,22 @@ namespace Gremlin.Net.Process.Traversal
 }
 
 private bool MoveNextInternal()
-{   
+{
 if (_fetchedNext) return _nextAvailable;
+
+if (!_nextAvailable || _nextAvailable && 
TraverserEnumerator.Current?.Bulk == 0)
+{
+_nextAvailable = TraverserEnumerator.MoveNext();
+}
+if (!_nextAvailable) return false;
 
 var currentTraverser = TraverserEnumerator.Current;
-if (currentTraverser?.Bulk > 1)
+if (currentTraverser?.Bulk >= 1)
 {
 currentTraverser.Bulk--;
-_nextAvailable = true;
-}
-else
-{
-_nextAvailable = TraverserEnumerator.MoveNext();
 }
 
-return _nextAvailable;
+return true;
 }
 
 /// 



(tinkerpop) branch master updated (54e58bec6d -> 3f37c0ff99)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 54e58bec6d Merge branch '3.7-dev'
 add 9a8b639e85 Bump BenchmarkDotNet from 0.13.10 to 0.13.11 in 
/gremlin-dotnet
 add e86eed20a8 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.11' into 3.6-dev
 add c21ad31be2 Merge branch '3.6-dev' into 3.7-dev
 new 3f37c0ff99 Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch 3.7-dev updated (6b7eee2988 -> c21ad31be2)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 6b7eee2988 Merge branch '3.6-dev' into 3.7-dev
 add 9a8b639e85 Bump BenchmarkDotNet from 0.13.10 to 0.13.11 in 
/gremlin-dotnet
 add e86eed20a8 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.11' into 3.6-dev
 add c21ad31be2 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 3f37c0ff996ad237420bd5aefdcf9c293dfd3eca
Merge: 54e58bec6d c21ad31be2
Author: Florian Hockmann 
AuthorDate: Wed Dec 20 16:18:50 2023 +0100

Merge branch '3.7-dev'

 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.11 deleted (was 9a8b639e85)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.11
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 9a8b639e85 Bump BenchmarkDotNet from 0.13.10 to 0.13.11 in 
/gremlin-dotnet

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 3.6-dev updated (2f4fd40814 -> e86eed20a8)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 2f4fd40814 Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in 
/gremlin-dotnet
 add 9a8b639e85 Bump BenchmarkDotNet from 0.13.10 to 0.13.11 in 
/gremlin-dotnet
 add e86eed20a8 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.11' into 3.6-dev

No new revisions were added by this update.

Summary of changes:
 .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.5 deleted (was 2f4fd40814)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.5
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 2f4fd40814 Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in 
/gremlin-dotnet

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 3.6-dev updated (5403cf73d6 -> 2f4fd40814)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 5403cf73d6 Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in 
/gremlin-dotnet
 add 2f4fd40814 Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in 
/gremlin-dotnet

No new revisions were added by this update.

Summary of changes:
 .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 54e58bec6d4446256e3c1a1803b479857d37bb85
Merge: 403a2404e9 6b7eee2988
Author: Florian Hockmann 
AuthorDate: Wed Dec 20 16:17:28 2023 +0100

Merge branch '3.7-dev'

 .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)



(tinkerpop) branch master updated (403a2404e9 -> 54e58bec6d)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 403a2404e9 Merge branch '3.7-dev'
 add 2f4fd40814 Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in 
/gremlin-dotnet
 add 6b7eee2988 Merge branch '3.6-dev' into 3.7-dev
 new 54e58bec6d Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)



(tinkerpop) branch 3.7-dev updated (4f088dea5f -> 6b7eee2988)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 4f088dea5f Merge branch '3.6-dev' into 3.7-dev
 add 2f4fd40814 Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in 
/gremlin-dotnet
 add 6b7eee2988 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 2 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj | 2 +-
 gremlin-dotnet/test/Gremlin.Net.UnitTest/Gremlin.Net.UnitTest.csproj| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 403a2404e90185f41b5d65902af0e4e1d2a405ba
Merge: 87aa30f1ce 4f088dea5f
Author: Florian Hockmann 
AuthorDate: Wed Dec 20 13:36:27 2023 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(tinkerpop) branch master updated (87aa30f1ce -> 403a2404e9)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 87aa30f1ce Merge branch '3.7-dev'
 add 5403cf73d6 Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in 
/gremlin-dotnet
 add 4f088dea5f Merge branch '3.6-dev' into 3.7-dev
 new 403a2404e9 Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch 3.7-dev updated (c006bd12b4 -> 4f088dea5f)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from c006bd12b4 Merge branch '3.6-dev' into 3.7-dev
 add 5403cf73d6 Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in 
/gremlin-dotnet
 add 4f088dea5f Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.5-dev/Microsoft.SourceLink.GitHub-8.0.0 deleted (was 5403cf73d6)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.5-dev/Microsoft.SourceLink.GitHub-8.0.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 5403cf73d6 Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in 
/gremlin-dotnet

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 3.6-dev updated (74591f57cd -> 5403cf73d6)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 74591f57cd Merge pull request #2345 from 
apache/dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0
 add 5403cf73d6 Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in 
/gremlin-dotnet

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch master updated (45fe5d0349 -> 87aa30f1ce)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from 45fe5d0349 Merge branch '3.7-dev'
 add 525ab5e5a3 Bump System.Text.Json from 7.0.3 to 8.0.0 in /gremlin-dotnet
 add 74591f57cd Merge pull request #2345 from 
apache/dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0
 add c006bd12b4 Merge branch '3.6-dev' into 3.7-dev
 new 87aa30f1ce Merge branch '3.7-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) branch 3.7-dev updated (c8d08b0269 -> c006bd12b4)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


from c8d08b0269 Merge branch '3.6-dev' into 3.7-dev
 add 525ab5e5a3 Bump System.Text.Json from 7.0.3 to 8.0.0 in /gremlin-dotnet
 add 74591f57cd Merge pull request #2345 from 
apache/dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0
 add c006bd12b4 Merge branch '3.6-dev' into 3.7-dev

No new revisions were added by this update.

Summary of changes:
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(tinkerpop) 01/01: Merge branch '3.7-dev'

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 87aa30f1ce8854ecf2ebb49925eae771436fa4a0
Merge: 45fe5d0349 c006bd12b4
Author: Florian Hockmann 
AuthorDate: Wed Dec 20 10:28:44 2023 +0100

Merge branch '3.7-dev'

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(tinkerpop) 01/01: Merge pull request #2345 from apache/dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 74591f57cd3a3eafc12ccb3b3f53ddbc96c32d8d
Merge: de74d3c9e2 525ab5e5a3
Author: Florian Hockmann 
AuthorDate: Wed Dec 20 10:27:50 2023 +0100

Merge pull request #2345 from 
apache/dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0

Bump System.Text.Json from 7.0.3 to 8.0.0 in /gremlin-dotnet

 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0 deleted (was 525ab5e5a3)

2023-12-20 Thread florianhockmann
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 was 525ab5e5a3 Bump System.Text.Json from 7.0.3 to 8.0.0 in /gremlin-dotnet

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



  1   2   3   4   5   6   7   8   9   10   >