[tinkerpop] 01/01: Merge branch '3.6-dev'

2023-09-28 Thread xiazcy
This is an automated email from the ASF dual-hosted git repository.

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

commit 70b7b0d8be497498d19c429b607c60685f2322b1
Merge: fe70dfb0d7 974b4505d2
Author: Yang Xia <55853655+xia...@users.noreply.github.com>
AuthorDate: Thu Sep 28 22:08:16 2023 -0700

Merge branch '3.6-dev'

 gremlin-go/driver/translator_test.go | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)



[tinkerpop] branch 3.6-dev updated: CTR make translator tests for SubgraphStrategy ignore parameter order

2023-09-28 Thread xiazcy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/3.6-dev by this push:
 new 974b4505d2 CTR make translator tests for SubgraphStrategy ignore 
parameter order
974b4505d2 is described below

commit 974b4505d25d27704f2c80ac93350652228e5722
Author: Yang Xia <55853655+xia...@users.noreply.github.com>
AuthorDate: Thu Sep 28 22:07:44 2023 -0700

CTR make translator tests for SubgraphStrategy ignore parameter order
---
 gremlin-go/driver/translator_test.go | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gremlin-go/driver/translator_test.go 
b/gremlin-go/driver/translator_test.go
index 907ebf8943..82f2a7a81e 100644
--- a/gremlin-go/driver/translator_test.go
+++ b/gremlin-go/driver/translator_test.go
@@ -568,7 +568,8 @@ func Test_translator_Translate(t *testing.T) {
assert: func(g *GraphTraversalSource) *GraphTraversal {
return 
g.WithStrategies(SubgraphStrategy(SubgraphStrategyConfig{Vertices: 
T__.Has("region", "US-TX"), Edges: T__.HasLabel("route")})).V().Count()
},
-   equals: "g.withStrategies(new 
SubgraphStrategy(vertices:has('region','US-TX'),edges:hasLabel('route'))).V().count()",
+   containsRandomClassParams: true,
+   equals:"g.withStrategies(new 
SubgraphStrategy(vertices:has('region','US-TX'),edges:hasLabel('route'))).V().count()",
},
{
assert: func(g *GraphTraversalSource) *GraphTraversal {
@@ -580,13 +581,15 @@ func Test_translator_Translate(t *testing.T) {
assert: func(g *GraphTraversalSource) *GraphTraversal {
return 
g.WithStrategies(SubgraphStrategy(SubgraphStrategyConfig{Vertices: 
T__.Has("region", "US-TX"), VertexProperties: 
T__.HasNot("runways")})).V().Count()
},
-   equals: "g.withStrategies(new 
SubgraphStrategy(vertices:has('region','US-TX'),vertexProperties:hasNot('runways'))).V().count()",
+   containsRandomClassParams: true,
+   equals:"g.withStrategies(new 
SubgraphStrategy(vertices:has('region','US-TX'),vertexProperties:hasNot('runways'))).V().count()",
},
{
assert: func(g *GraphTraversalSource) *GraphTraversal {
return g.WithStrategies(ReadOnlyStrategy(), 
SubgraphStrategy(SubgraphStrategyConfig{Vertices: T__.Has("region", "US-TX"), 
Edges: T__.HasLabel("route")})).V().Count()
},
-   equals: "g.withStrategies(new ReadOnlyStrategy(),new 
SubgraphStrategy(vertices:has('region','US-TX'),edges:hasLabel('route'))).V().count()",
+   containsRandomClassParams: true,
+   equals:"g.withStrategies(new 
ReadOnlyStrategy(),new 
SubgraphStrategy(vertices:has('region','US-TX'),edges:hasLabel('route'))).V().count()",
},
{
assert: func(g *GraphTraversalSource) *GraphTraversal {



[tinkerpop] branch master updated (fe70dfb0d7 -> 70b7b0d8be)

2023-09-28 Thread xiazcy
This is an automated email from the ASF dual-hosted git repository.

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


from fe70dfb0d7 Merge branch '3.6-dev'
 add 974b4505d2 CTR make translator tests for SubgraphStrategy ignore 
parameter order
 new 70b7b0d8be Merge branch '3.6-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-go/driver/translator_test.go | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)



[tinkerpop] branch master updated (ca5b9c85a3 -> fe70dfb0d7)

2023-09-28 Thread xiazcy
This is an automated email from the ASF dual-hosted git repository.

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


from ca5b9c85a3 js: DriverRemoteConnection: allow custom agent (#2240)
 add 4173f4250b [TINKERPOP-2972] ProjectStep does not allow keys specified 
in a query to be duplicate (#2217)
 new fe70dfb0d7 Merge branch '3.6-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 +
 .../gremlin/process/traversal/step/map/ProjectStep.java |  7 +++
 .../process/traversal/step/map/ProjectStepTest.java | 17 +
 3 files changed, 25 insertions(+)



[tinkerpop] 01/01: Merge branch '3.6-dev'

2023-09-28 Thread xiazcy
This is an automated email from the ASF dual-hosted git repository.

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

commit fe70dfb0d7c0a03d07ffda7db4205e67e0909c24
Merge: ca5b9c85a3 4173f4250b
Author: Yang Xia <55853655+xia...@users.noreply.github.com>
AuthorDate: Thu Sep 28 22:02:03 2023 -0700

Merge branch '3.6-dev'

 CHANGELOG.asciidoc  |  1 +
 .../gremlin/process/traversal/step/map/ProjectStep.java |  7 +++
 .../process/traversal/step/map/ProjectStepTest.java | 17 +
 3 files changed, 25 insertions(+)




[GitHub] [tinkerpop] xiazcy merged pull request #2217: [TINKERPOP-2972] ProjectStep does not allow keys specified in a query

2023-09-28 Thread via GitHub


xiazcy merged PR #2217:
URL: https://github.com/apache/tinkerpop/pull/2217


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

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

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



[tinkerpop] branch 3.6-dev updated: [TINKERPOP-2972] ProjectStep does not allow keys specified in a query to be duplicate (#2217)

2023-09-28 Thread xiazcy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/3.6-dev by this push:
 new 4173f4250b [TINKERPOP-2972] ProjectStep does not allow keys specified 
in a query to be duplicate (#2217)
4173f4250b is described below

commit 4173f4250b0fc618054d0d9a728572e4f044ba22
Author: Norio Akagi 
AuthorDate: Thu Sep 28 21:52:55 2023 -0700

[TINKERPOP-2972] ProjectStep does not allow keys specified in a query to be 
duplicate (#2217)

Co-authored-by: Yang Xia <55853655+xia...@users.noreply.github.com>
---
 CHANGELOG.asciidoc  |  1 +
 .../gremlin/process/traversal/step/map/ProjectStep.java |  7 +++
 .../process/traversal/step/map/ProjectStepTest.java | 17 +
 3 files changed, 25 insertions(+)

diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 492266efdf..05106d17f1 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -31,6 +31,7 @@ This release also includes changes from <>.
 * Fixed a bug in `StarGraph` where `EdgeFilter` did not remove associated Edge 
Properties.
 * Added translator to the Go GLV.
 * Fixed bug with filtering for `group()` when the side-effect label was 
defined for it.
+* ProjectStep now throws exception when a duplicate key is provided in a query.
 * Fixed bug in `DotNetTranslator` where `PartitionStrategy` usage was not 
translating properly when specifying the `readPartitions`.
 * Fixed bug in `PythonTranslator` where `Set` syntax was not being generated 
properly.
 * Fixed bug in configuration object given to `PartitionStrategy` for Go that 
prevented `readPartitions` from behing set properly.
diff --git 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProjectStep.java
 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProjectStep.java
index 78a24674ec..c1f3391001 100644
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProjectStep.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProjectStep.java
@@ -29,10 +29,12 @@ import 
org.apache.tinkerpop.gremlin.process.traversal.util.TraversalUtil;
 import org.apache.tinkerpop.gremlin.structure.util.StringFactory;
 
 import java.util.Arrays;
+import java.util.HashSet;
 import java.util.LinkedHashMap;
 import java.util.List;
 import java.util.Map;
 import java.util.Set;
+import java.util.stream.Collectors;
 
 /**
  * @author Marko A. Rodriguez (http://markorodriguez.com)
@@ -48,6 +50,11 @@ public class ProjectStep extends ScalarMapStep> implemen
 
 public ProjectStep(final Traversal.Admin traversal, final TraversalRing traversalRing, final String... projectKeys) {
 super(traversal);
+
+if (Arrays.stream(projectKeys).collect(Collectors.toSet()).size() != 
projectKeys.length) {
+throw new IllegalArgumentException("keys must be unique in 
ProjectStep");
+}
+
 this.projectKeys = Arrays.asList(projectKeys);
 this.traversalRing = traversalRing;
 }
diff --git 
a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProjectStepTest.java
 
b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProjectStepTest.java
index fb63526707..1755029480 100644
--- 
a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProjectStepTest.java
+++ 
b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProjectStepTest.java
@@ -22,10 +22,16 @@ package 
org.apache.tinkerpop.gremlin.process.traversal.step.map;
 import org.apache.tinkerpop.gremlin.process.traversal.Traversal;
 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.__;
 import org.apache.tinkerpop.gremlin.process.traversal.step.StepTest;
+import org.junit.Test;
 
 import java.util.Arrays;
 import java.util.List;
 
+import static org.hamcrest.CoreMatchers.instanceOf;
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.junit.Assert.fail;
+
 /**
  * @author Marko A. Rodriguez (http://markorodriguez.com)
  */
@@ -44,4 +50,15 @@ public class ProjectStepTest extends StepTest {
 __.project("y").by("name")
 );
 }
+
+@Test
+public void shouldThrowWhenDuplicateKeySupplied() {
+try {
+__.project("x", "x");
+fail("Should throw an exception.");
+} catch (final Exception re) {
+assertThat(re, instanceOf(IllegalArgumentException.class));
+assertThat(re.getMessage(), is("keys must be unique in 
ProjectStep"));
+}
+}
 }
\ No newline at end of file



[tinkerpop] branch master updated: js: DriverRemoteConnection: allow custom agent (#2240)

2023-09-28 Thread valentyn
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ca5b9c85a3 js: DriverRemoteConnection: allow custom agent (#2240)
ca5b9c85a3 is described below

commit ca5b9c85a32eaf8ad2c71a2f20aa70872e2893c7
Author: Thomas 
AuthorDate: Fri Sep 29 02:47:58 2023 +1000

js: DriverRemoteConnection: allow custom agent (#2240)

Allow users to provide their own http.Agent when initialising
DriverRemoteConnection.

This is extremely helpful connecting to databases within a corporate
network.
---
 CHANGELOG.asciidoc  | 1 +
 .../src/main/javascript/gremlin-javascript/lib/driver/client.js | 1 +
 .../src/main/javascript/gremlin-javascript/lib/driver/connection.js | 2 ++
 .../gremlin-javascript/lib/driver/driver-remote-connection.js   | 1 +
 4 files changed, 5 insertions(+)

diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 0a363a054e..b9fd814b78 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -34,6 +34,7 @@ This release also includes changes from <> and < this._handleMessage(data));
diff --git 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/driver-remote-connection.js
 
b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/driver-remote-connection.js
index 605ee2b90b..15ce30a849 100644
--- 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/driver-remote-connection.js
+++ 
b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/driver-remote-connection.js
@@ -52,6 +52,7 @@ class DriverRemoteConnection extends RemoteConnection {
* @param {Boolean} [options.pingEnabled] Setup ping interval. Defaults to: 
true.
* @param {Number} [options.pingInterval] Ping request interval in ms if 
ping enabled. Defaults to: 6.
* @param {Number} [options.pongTimeout] Timeout of pong response in ms 
after sending a ping. Defaults to: 3.
+   * @param {http.Agent} [options.agent] The http.Agent implementation to use.
* @constructor
*/
   constructor(url, options = {}) {



[GitHub] [tinkerpop] vkagamlyk merged pull request #2240: js: DriverRemoteConnection: allow custom agent

2023-09-28 Thread via GitHub


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


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

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

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



[tinkerpop] branch TINKERPOP-2994 deleted (was 38d8f2e130)

2023-09-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

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


 was 38d8f2e130 TINKERPOP-2994 Fixed mergeV/E usage with PartitionStrategy

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] 03/03: Regenerated test code after previous merge CTR

2023-09-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

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

commit 896e75eb946b7e3b8c84355b1a61410e46dd03db
Author: Stephen Mallette 
AuthorDate: Thu Sep 28 12:31:38 2023 -0400

Regenerated test code after previous merge CTR
---
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs   | 20 ++--
 gremlin-go/driver/cucumber/gremlin.go| 20 ++--
 .../gremlin-javascript/test/cucumber/gremlin.js  | 20 ++--
 gremlin-python/src/main/python/radish/gremlin.py | 20 ++--
 4 files changed, 40 insertions(+), 40 deletions(-)

diff --git a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs 
b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs
index 3a2ba06f93..76669ca1e7 100644
--- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs
+++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs
@@ -134,7 +134,7 @@ namespace Gremlin.Net.IntegrationTest.Gherkin
{"g_V_valuesXageX_whereXisXP_gtX33XXX_fold_allXgtX33XX", new 
List, ITraversal>> 
{(g,p) 
=>g.V().Values("age").Where(__.Is(P.Gt(33))).Fold().All(P.Gt(33))}}, 
{"g_V_valuesXageX_order_byXdescX_fold_allXgtX10XX", new 
List, ITraversal>> 
{(g,p) 
=>g.V().Values("age").Order().By(Order.Desc).Fold().All(P.Gt(10))}}, 
{"g_V_valuesXageX_order_byXdescX_fold_allXgtX30XX", new 
List, ITraversal>> 
{(g,p) 
=>g.V().Values("age").Order().By(Order.Desc).Fold().All(P.Gt(30))}}, 
-   {"g_injectXabc_bcdX_allXeqXbcdXX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"]).All(P.Eq("bcd"))}}, 
+   {"g_injectXabc_bcdX_allXeqXbcdXX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(new List {"abc", "bcd"}).All(P.Eq("bcd"))}}, 
{"g_injectXbcd_bcdX_allXeqXbcdXX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"]).All(P.Eq("bcd"))}}, 
{"g_injectXnull_abcX_allXTextP_startingWithXaXX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"]).All(TextP.StartingWith("a"))}}, 
{"g_injectX5_8_10_10_7X_allXgteX7XX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"],p["xx2"]).All(P.Gte(7))}}, 
@@ -151,7 +151,7 @@ namespace Gremlin.Net.IntegrationTest.Gherkin
{"g_V_valuesXageX_order_byXdescX_fold_anyXeqX29XX", new 
List, ITraversal>> 
{(g,p) 
=>g.V().Values("age").Order().By(Order.Desc).Fold().Any(P.Eq(29))}}, 
{"g_V_valuesXageX_order_byXdescX_fold_anyXgtX10XX", new 
List, ITraversal>> 
{(g,p) 
=>g.V().Values("age").Order().By(Order.Desc).Fold().Any(P.Gt(10))}}, 
{"g_V_valuesXageX_order_byXdescX_fold_anyXgtX42XX", new 
List, ITraversal>> 
{(g,p) 
=>g.V().Values("age").Order().By(Order.Desc).Fold().Any(P.Gt(42))}}, 
-   {"g_injectXabc_cdeX_anyXeqXbcdXX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"]).Any(P.Eq("bcd"))}}, 
+   {"g_injectXabc_cdeX_anyXeqXbcdXX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(new List {"abc", "cde"}).Any(P.Eq("bcd"))}}, 
{"g_injectXabc_bcdX_anyXeqXbcdXX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"]).Any(P.Eq("bcd"))}}, 
{"g_injectXnull_abcX_anyXTextP_startingWithXaXX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"]).Any(TextP.StartingWith("a"))}}, 
{"g_injectX5_8_10_10_7X_anyXeqX7XX", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"],p["xx2"]).Any(P.Eq(7))}}, 
@@ -633,6 +633,10 @@ namespace Gremlin.Net.IntegrationTest.Gherkin

{"g_V_hasLabelXsoftwareX_name_fold_orderXlocalX_index_unfold_order_byXtailXlocal_1XX",
 new List, ITraversal>> 
{(g,p) 
=>g.V().HasLabel("software").Values("name").Fold().Order(Scope.Local).Index().Unfold().Order().By(__.Tail(Scope.Local,1))}},
 
{"g_V_hasLabelXpersonX_name_fold_orderXlocalX_index_withXmapX", 
new List, ITraversal>> 
{(g,p) 
=>g.V().HasLabel("person").Values("name").Fold().Order(Scope.Local).Index().With("~tinkerpop.index.indexer",1)}},
 
{"g_VX1X_valuesXageX_index_unfold_unfold", new 
List, ITraversal>> 
{(g,p) 
=>g.V(p["vid1"]).Values("age").Index().Unfold().Unfold()}},
 
+   {"g_injectX__feature___test__nullX_lTrim", new 
List, ITraversal>> 
{(g,p) =>g.Inject("  feature"," one test",null,""," ").LTrim()}}, 
+   {"g_injectX__feature__X_lTrim", new 
List, ITraversal>> 
{(g,p) =>g.Inject("  feature  ").LTrim()}}, 
+   {"g_injectXListXa_bXX_lTrim", new 
List, ITraversal>> 
{(g,p) =>g.Inject(p["xx1"]).LTrim()}}, 
+   {"g_V_valuesXnameX_lTrim", new List, ITraversal>> {(g,p) 
=>g.AddV("person").Property("name"," marko 
").Property("age",29).As("marko").AddV("person").Property("name","  vadas  
").Property("age",27).As("vadas").AddV("software").Property("name","  
lop").Property("lang","java").As("lop").AddV("person").Property("name",

[GitHub] [tinkerpop] spmallette merged pull request #2241: TINKERPOP-2994 Fixed mergeV/E usage with PartitionStrategy

2023-09-28 Thread via GitHub


spmallette merged PR #2241:
URL: https://github.com/apache/tinkerpop/pull/2241


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

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

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



[tinkerpop] 01/03: Merge branch 'TINKERPOP-2994' into 3.6-dev

2023-09-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

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

commit 69a3253a5644196a5433d714b2a103d48403adb9
Merge: 9c0f89b740 38d8f2e130
Author: Stephen Mallette 
AuthorDate: Thu Sep 28 10:41:08 2023 -0400

Merge branch 'TINKERPOP-2994' into 3.6-dev

 CHANGELOG.asciidoc |   4 +
 docs/src/dev/developer/for-committers.asciidoc |   2 +
 .../process/traversal/step/map/MergeStep.java  |  43 +-
 .../strategy/decoration/PartitionStrategy.java |   3 +
 .../traversal/translator/DotNetTranslator.java |  17 +-
 .../traversal/translator/PythonTranslator.java |   4 +-
 .../traversal/step/map/MergeEdgeStepTest.java  |   5 +
 .../traversal/step/map/MergeVertexStepTest.java|   4 +
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |  24 ++
 gremlin-go/driver/cucumber/gremlin.go  |  24 ++
 gremlin-go/driver/strategies.go|   4 +-
 gremlin-go/driver/strategies_test.go   |   2 +-
 gremlin-go/driver/translator_test.go   |   2 +-
 gremlin-javascript/build/generate.groovy   |   2 +-
 .../gremlin-javascript/test/cucumber/gremlin.js|  26 +-
 gremlin-python/src/main/python/radish/gremlin.py   |  24 ++
 .../features/integrated/PartitionStrategy.feature  | 458 +
 17 files changed, 629 insertions(+), 19 deletions(-)



[tinkerpop] branch master updated (e9d26f7c38 -> 896e75eb94)

2023-09-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

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


from e9d26f7c38 Merge branch '3.6-dev'
 add 38d8f2e130 TINKERPOP-2994 Fixed mergeV/E usage with PartitionStrategy
 new 69a3253a56 Merge branch 'TINKERPOP-2994' into 3.6-dev
 new 3c779ac02a Merge branch '3.6-dev'
 new 896e75eb94 Regenerated test code after previous merge CTR

The 3 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 |   4 +
 docs/src/dev/developer/for-committers.asciidoc |   2 +
 .../process/traversal/step/map/MergeStep.java  |  43 +-
 .../strategy/decoration/PartitionStrategy.java |   3 +
 .../traversal/translator/DotNetTranslator.java |  17 +-
 .../traversal/translator/PythonTranslator.java |   4 +-
 .../traversal/step/map/MergeEdgeStepTest.java  |   5 +
 .../traversal/step/map/MergeVertexStepTest.java|   4 +
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |  44 +-
 gremlin-go/driver/cucumber/gremlin.go  |  44 +-
 gremlin-go/driver/strategies.go|   4 +-
 gremlin-go/driver/strategies_test.go   |   2 +-
 gremlin-go/driver/translator_test.go   |   2 +-
 gremlin-javascript/build/generate.groovy   |   2 +-
 .../gremlin-javascript/test/cucumber/gremlin.js|  46 ++-
 gremlin-python/src/main/python/radish/gremlin.py   |  44 +-
 .../features/integrated/PartitionStrategy.feature  | 458 +
 17 files changed, 669 insertions(+), 59 deletions(-)
 create mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/integrated/PartitionStrategy.feature



[tinkerpop] 02/03: Merge branch '3.6-dev'

2023-09-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

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

commit 3c779ac02a7b3da2f899f08a0b17cdf2952bf2c1
Merge: e9d26f7c38 69a3253a56
Author: Stephen Mallette 
AuthorDate: Thu Sep 28 11:54:14 2023 -0400

Merge branch '3.6-dev'

 CHANGELOG.asciidoc |   4 +
 docs/src/dev/developer/for-committers.asciidoc |   2 +
 .../process/traversal/step/map/MergeStep.java  |  43 +-
 .../strategy/decoration/PartitionStrategy.java |   3 +
 .../traversal/translator/DotNetTranslator.java |  17 +-
 .../traversal/translator/PythonTranslator.java |   4 +-
 .../traversal/step/map/MergeEdgeStepTest.java  |   5 +
 .../traversal/step/map/MergeVertexStepTest.java|   4 +
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |  24 ++
 gremlin-go/driver/cucumber/gremlin.go  |  24 ++
 gremlin-go/driver/strategies.go|   4 +-
 gremlin-go/driver/strategies_test.go   |   2 +-
 gremlin-go/driver/translator_test.go   |   2 +-
 gremlin-javascript/build/generate.groovy   |   2 +-
 .../gremlin-javascript/test/cucumber/gremlin.js|  26 +-
 gremlin-python/src/main/python/radish/gremlin.py   |  24 ++
 .../features/integrated/PartitionStrategy.feature  | 458 +
 17 files changed, 629 insertions(+), 19 deletions(-)

diff --cc 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/translator/DotNetTranslator.java
index 45e1154931,8e70b3000b..017e774c39
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/translator/DotNetTranslator.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/translator/DotNetTranslator.java
@@@ -192,20 -193,16 +193,26 @@@ public final class DotNetTranslator imp
  return o.toString();
  }
  
 +@Override
 +protected Script produceCardinalityValue(final Bytecode o) {
 +final Bytecode.Instruction inst = 
o.getSourceInstructions().get(0);
 +final String card = inst.getArguments()[0].toString();
 +script.append("CardinalityValue." + card.substring(0, 
1).toUpperCase() + card.substring(1) + "(");
 +convertToScript(inst.getArguments()[1]);
 +script.append(")");
 +return script;
 +}
 +
  @Override
  protected Script produceScript(final Set o) {
+ return produceScriptForHashSet(o, "object");
+ }
+ 
+ private Script produceScriptForHashSet(final Set o, final String 
generic) {
  final Iterator iterator = o.iterator();
- script.append("new HashSet {");
+ script.append("new HashSet<");
+ script.append(generic);
+ script.append("> {");
  
  while (iterator.hasNext()) {
  final Object nextItem = iterator.next();



[tinkerpop] branch 3.6-dev updated (9c0f89b740 -> 69a3253a56)

2023-09-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

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


from 9c0f89b740 CTR fix js import reference doc
 add 38d8f2e130 TINKERPOP-2994 Fixed mergeV/E usage with PartitionStrategy
 add 69a3253a56 Merge branch 'TINKERPOP-2994' into 3.6-dev

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.asciidoc |   4 +
 docs/src/dev/developer/for-committers.asciidoc |   2 +
 .../process/traversal/step/map/MergeStep.java  |  43 +-
 .../strategy/decoration/PartitionStrategy.java |   3 +
 .../traversal/translator/DotNetTranslator.java |  17 +-
 .../traversal/translator/PythonTranslator.java |   4 +-
 .../traversal/step/map/MergeEdgeStepTest.java  |   5 +
 .../traversal/step/map/MergeVertexStepTest.java|   4 +
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |  24 ++
 gremlin-go/driver/cucumber/gremlin.go  |  24 ++
 gremlin-go/driver/strategies.go|   4 +-
 gremlin-go/driver/strategies_test.go   |   2 +-
 gremlin-go/driver/translator_test.go   |   2 +-
 gremlin-javascript/build/generate.groovy   |   2 +-
 .../gremlin-javascript/test/cucumber/gremlin.js|  26 +-
 gremlin-python/src/main/python/radish/gremlin.py   |  24 ++
 .../features/integrated/PartitionStrategy.feature  | 458 +
 17 files changed, 629 insertions(+), 19 deletions(-)
 create mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/integrated/PartitionStrategy.feature



[GitHub] [tinkerpop] codecov-commenter commented on pull request #2267: Bump chai from 4.3.8 to 4.3.10 in /gremlin-javascript/src/main/javascript/gremlin-javascript

2023-09-28 Thread via GitHub


codecov-commenter commented on PR #2267:
URL: https://github.com/apache/tinkerpop/pull/2267#issuecomment-1739469437

   ## 
[Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/2267?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   > Merging 
[#2267](https://app.codecov.io/gh/apache/tinkerpop/pull/2267?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 (341a458) into 
[3.5-dev](https://app.codecov.io/gh/apache/tinkerpop/commit/a489e7b0348e557efd080475827216751b54d503?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 (a489e7b) will **decrease** coverage by `0.02%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@  Coverage Diff  @@
   ## 3.5-dev#2267  +/-   ##
   =
   - Coverage  69.95%   69.93%   -0.02% 
   =
 Files866   24 -842 
 Lines  41068 3449   -37619 
 Branches54760-5476 
   =
   - Hits   28728 2412   -26316 
   + Misses 10437  860-9577 
   + Partials1903  177-1726 
   ```
   
   
   [see 842 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/tinkerpop/pull/2267/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   


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

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

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



[GitHub] [tinkerpop] codecov-commenter commented on pull request #2265: Bump @types/node from 20.5.0 to 20.7.1 in /docs/gremlint

2023-09-28 Thread via GitHub


codecov-commenter commented on PR #2265:
URL: https://github.com/apache/tinkerpop/pull/2265#issuecomment-1739455401

   ## 
[Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/2265?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   > Merging 
[#2265](https://app.codecov.io/gh/apache/tinkerpop/pull/2265?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 (d6c3510) into 
[master](https://app.codecov.io/gh/apache/tinkerpop/commit/e9d26f7c383cb347b55a31883cdd19dbd92c3d10?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 (e9d26f7) will **decrease** coverage by `4.67%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@ Coverage Diff  @@
   ## master#2265  +/-   ##
   
   - Coverage 75.78%   71.11%   -4.67% 
   
 Files  1060   25-1035 
 Lines 64335 3895   -60440 
 Branches   71050-7105 
   
   - Hits  48757 2770   -45987 
   + Misses12928  934   -11994 
   + Partials   2650  191-2459 
   ```
   
   
   [see 1035 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/tinkerpop/pull/2265/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   


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

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

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



[GitHub] [tinkerpop] codecov-commenter commented on pull request #2266: Bump web-vitals from 3.4.0 to 3.5.0 in /docs/gremlint

2023-09-28 Thread via GitHub


codecov-commenter commented on PR #2266:
URL: https://github.com/apache/tinkerpop/pull/2266#issuecomment-1739452617

   ## 
[Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/2266?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   > Merging 
[#2266](https://app.codecov.io/gh/apache/tinkerpop/pull/2266?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 (e83998d) into 
[master](https://app.codecov.io/gh/apache/tinkerpop/commit/e9d26f7c383cb347b55a31883cdd19dbd92c3d10?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 (e9d26f7) will **decrease** coverage by `4.67%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@ Coverage Diff  @@
   ## master#2266  +/-   ##
   
   - Coverage 75.78%   71.11%   -4.67% 
   
 Files  1060   25-1035 
 Lines 64335 3895   -60440 
 Branches   71050-7105 
   
   - Hits  48757 2770   -45987 
   + Misses12928  934   -11994 
   + Partials   2650  191-2459 
   ```
   
   
   [see 1035 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/tinkerpop/pull/2266/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   


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

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

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



[GitHub] [tinkerpop] codecov-commenter commented on pull request #2264: Bump @types/node from 20.5.0 to 20.7.1 in /gremlint

2023-09-28 Thread via GitHub


codecov-commenter commented on PR #2264:
URL: https://github.com/apache/tinkerpop/pull/2264#issuecomment-1739430966

   ## 
[Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/2264?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   > Merging 
[#2264](https://app.codecov.io/gh/apache/tinkerpop/pull/2264?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 (f3ae2e4) into 
[3.5-dev](https://app.codecov.io/gh/apache/tinkerpop/commit/a489e7b0348e557efd080475827216751b54d503?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 (a489e7b) will **decrease** coverage by `0.02%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@  Coverage Diff  @@
   ## 3.5-dev#2264  +/-   ##
   =
   - Coverage  69.95%   69.93%   -0.02% 
   =
 Files866   24 -842 
 Lines  41068 3449   -37619 
 Branches54760-5476 
   =
   - Hits   28728 2412   -26316 
   + Misses 10437  860-9577 
   + Partials1903  177-1726 
   ```
   
   
   [see 842 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/tinkerpop/pull/2264/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   


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

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

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



[GitHub] [tinkerpop] dependabot[bot] closed pull request #2262: Bump chai from 4.3.8 to 4.3.9 in /gremlin-javascript/src/main/javascript/gremlin-javascript

2023-09-28 Thread via GitHub


dependabot[bot] closed pull request #2262: Bump chai from 4.3.8 to 4.3.9 in 
/gremlin-javascript/src/main/javascript/gremlin-javascript
URL: https://github.com/apache/tinkerpop/pull/2262


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

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

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



[tinkerpop] branch dependabot/npm_and_yarn/gremlin-javascript/src/main/javascript/gremlin-javascript/3.5-dev/chai-4.3.9 deleted (was 9d0694473b)

2023-09-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


 was 9d0694473b Bump chai in 
/gremlin-javascript/src/main/javascript/gremlin-javascript

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



[GitHub] [tinkerpop] dependabot[bot] commented on pull request #2262: Bump chai from 4.3.8 to 4.3.9 in /gremlin-javascript/src/main/javascript/gremlin-javascript

2023-09-28 Thread via GitHub


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

   Superseded by #2267.


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

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

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



[GitHub] [tinkerpop] dependabot[bot] opened a new pull request, #2267: Bump chai from 4.3.8 to 4.3.10 in /gremlin-javascript/src/main/javascript/gremlin-javascript

2023-09-28 Thread via GitHub


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

   Bumps [chai](https://github.com/chaijs/chai) from 4.3.8 to 4.3.10.
   
   Release notes
   Sourced from https://github.com/chaijs/chai/releases";>chai's 
releases.
   
   v4.3.10
   This release simply bumps all dependencies to their latest non-breaking 
versions.
   What's Changed
   
   upgrade all dependencies by https://github.com/keithamus";>@​keithamus in https://redirect.github.com/chaijs/chai/pull/1540";>chaijs/chai#1540
   
   Full Changelog: https://github.com/chaijs/chai/compare/v4.3.9...v4.3.10";>https://github.com/chaijs/chai/compare/v4.3.9...v4.3.10
   v4.3.9
   Upgrade dependencies.
   This release upgrades dependencies to address https://www.cve.org/CVERecord?id=CVE-2023-43646";>CVE-2023-43646
 where a large function name can cause "catastrophic backtracking" 
(aka ReDOS attack) which can cause the test suite to hang.
   Full Changelog: https://github.com/chaijs/chai/compare/v4.3.8...v4.3.9";>https://github.com/chaijs/chai/compare/v4.3.8...v4.3.9
   
   
   
   Commits
   
   https://github.com/chaijs/chai/commit/744a16e1cc4e8a9c6d4499e1e520a0bc4c80ec18";>744a16e
 4.3.10
   https://github.com/chaijs/chai/commit/0ccd823cb3ee6a433156c4e23cc67de79d4f368d";>0ccd823
 upgrade all dependencies (https://redirect.github.com/chaijs/chai/issues/1540";>#1540)
   https://github.com/chaijs/chai/commit/923d0a48fc59a910ecee37c85535379520a3e1b6";>923d0a4
 4.3.9
   https://github.com/chaijs/chai/commit/1a0f8872711f64b8353c30ebcfdf0ceeab404bab";>1a0f887
 make
   https://github.com/chaijs/chai/commit/a141e5739ab32ae579cd2df2eb745dbf1375ac27";>a141e57
 upgrade deps
   See full diff in https://github.com/chaijs/chai/compare/v4.3.8...v4.3.10";>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=chai&package-manager=npm_and_yarn&previous-version=4.3.8&new-version=4.3.10)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



[tinkerpop] branch dependabot/npm_and_yarn/gremlin-javascript/src/main/javascript/gremlin-javascript/3.5-dev/chai-4.3.10 created (now 341a45829c)

2023-09-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


  at 341a45829c Bump chai in 
/gremlin-javascript/src/main/javascript/gremlin-javascript

No new revisions were added by this update.



[GitHub] [tinkerpop] dependabot[bot] opened a new pull request, #2266: Bump web-vitals from 3.4.0 to 3.5.0 in /docs/gremlint

2023-09-28 Thread via GitHub


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

   Bumps [web-vitals](https://github.com/GoogleChrome/web-vitals) from 3.4.0 to 
3.5.0.
   
   Changelog
   Sourced from https://github.com/GoogleChrome/web-vitals/blob/main/CHANGELOG.md";>web-vitals's
 changelog.
   
   v3.5.0 (2023-09-28)
   
   Run onLCP callback in separate task (https://redirect.github.com/GoogleChrome/web-vitals/pull/386";>#386)
   Fix INP durationThreshold bug when set to 0 (https://redirect.github.com/GoogleChrome/web-vitals/pull/372";>#372)
   Prevent FID entries being emitted as INP for non-supporting browsers (https://redirect.github.com/GoogleChrome/web-vitals/pull/368";>#368)
   
   
   
   
   Commits
   
   https://github.com/GoogleChrome/web-vitals/commit/dfdf57d112a33ec3cd29e7bc293b253274e4e38d";>dfdf57d
 Release v3.5.0
   https://github.com/GoogleChrome/web-vitals/commit/9cad8ee79728c49aa28524c80016dee499fc3512";>9cad8ee
 Update CHANGELOG for 3.5.0 (https://redirect.github.com/GoogleChrome/web-vitals/issues/387";>#387)
   https://github.com/GoogleChrome/web-vitals/commit/1cc298c62305dd3615f4ddb4acd13df4b6a81bab";>1cc298c
 Run onLCP callback in own task (https://redirect.github.com/GoogleChrome/web-vitals/issues/386";>#386)
   https://github.com/GoogleChrome/web-vitals/commit/1e942216c0ff7120bfae03a16157057ee2cab2f4";>1e94221
 Bump nunjucks from 3.2.3 to 3.2.4 (https://redirect.github.com/GoogleChrome/web-vitals/issues/385";>#385)
   https://github.com/GoogleChrome/web-vitals/commit/8fcf698a321b2afd8ae3fe8563c075bc122a230b";>8fcf698
 Upgrade selenium and webdriver (https://redirect.github.com/GoogleChrome/web-vitals/issues/384";>#384)
   https://github.com/GoogleChrome/web-vitals/commit/4b769ffe84e994b98f3f17cce351665606ed1af0";>4b769ff
 Fix INP durationThreshold bug when set to 0 (https://redirect.github.com/GoogleChrome/web-vitals/issues/372";>#372)
   https://github.com/GoogleChrome/web-vitals/commit/27db8a0644f76550fcb4ef17555b9b53f673870d";>27db8a0
 Readme fixes for INP (https://redirect.github.com/GoogleChrome/web-vitals/issues/379";>#379)
   https://github.com/GoogleChrome/web-vitals/commit/a948d3cde1770eabb8a215072cfd9713e940c4d9";>a948d3c
 Remove reference to Universal Analytics from README (https://redirect.github.com/GoogleChrome/web-vitals/issues/371";>#371)
   https://github.com/GoogleChrome/web-vitals/commit/3806160ffbc93c3c4abf210a167b81228172b31c";>3806160
 Prevent FID entries being emitted as INP for non-supporting browsers (https://redirect.github.com/GoogleChrome/web-vitals/issues/368";>#368)
   See full diff in https://github.com/GoogleChrome/web-vitals/compare/v3.4.0...v3.5.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=web-vitals&package-manager=npm_and_yarn&previous-version=3.4.0&new-version=3.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

For queries about this service, please contact Infrastructure at:
us.

[tinkerpop] branch dependabot/npm_and_yarn/docs/gremlint/master/types/node-20.7.0 deleted (was 27866096bd)

2023-09-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


 was 27866096bd Bump @types/node from 20.5.0 to 20.7.0 in /docs/gremlint

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



[tinkerpop] branch dependabot/npm_and_yarn/docs/gremlint/master/web-vitals-3.5.0 created (now e83998d665)

2023-09-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


  at e83998d665 Bump web-vitals from 3.4.0 to 3.5.0 in /docs/gremlint

No new revisions were added by this update.



[tinkerpop] branch dependabot/npm_and_yarn/docs/gremlint/master/types/node-20.7.1 created (now d6c3510769)

2023-09-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


  at d6c3510769 Bump @types/node from 20.5.0 to 20.7.1 in /docs/gremlint

No new revisions were added by this update.



[GitHub] [tinkerpop] dependabot[bot] closed pull request #2260: Bump @types/node from 20.5.0 to 20.7.0 in /docs/gremlint

2023-09-28 Thread via GitHub


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


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

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

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



[GitHub] [tinkerpop] dependabot[bot] commented on pull request #2260: Bump @types/node from 20.5.0 to 20.7.0 in /docs/gremlint

2023-09-28 Thread via GitHub


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

   Superseded by #2265.


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

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

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



[GitHub] [tinkerpop] dependabot[bot] opened a new pull request, #2265: Bump @types/node from 20.5.0 to 20.7.1 in /docs/gremlint

2023-09-28 Thread via GitHub


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

   Bumps 
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
 from 20.5.0 to 20.7.1.
   
   Commits
   
   See full diff in https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=20.5.0&new-version=20.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



[GitHub] [tinkerpop] dependabot[bot] opened a new pull request, #2264: Bump @types/node from 20.5.0 to 20.7.1 in /gremlint

2023-09-28 Thread via GitHub


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

   Bumps 
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
 from 20.5.0 to 20.7.1.
   
   Commits
   
   See full diff in https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=20.5.0&new-version=20.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



[tinkerpop] branch dependabot/npm_and_yarn/gremlint/3.5-dev/types/node-20.7.0 deleted (was 77c766d006)

2023-09-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


 was 77c766d006 Bump @types/node from 20.5.0 to 20.7.0 in /gremlint

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



[GitHub] [tinkerpop] dependabot[bot] closed pull request #2261: Bump @types/node from 20.5.0 to 20.7.0 in /gremlint

2023-09-28 Thread via GitHub


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


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

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

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



[GitHub] [tinkerpop] dependabot[bot] commented on pull request #2261: Bump @types/node from 20.5.0 to 20.7.0 in /gremlint

2023-09-28 Thread via GitHub


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

   Superseded by #2264.


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

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

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



[tinkerpop] branch dependabot/npm_and_yarn/gremlint/3.5-dev/types/node-20.7.1 created (now f3ae2e4d32)

2023-09-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


  at f3ae2e4d32 Bump @types/node from 20.5.0 to 20.7.1 in /gremlint

No new revisions were added by this update.



[GitHub] [tinkerpop] dependabot[bot] opened a new pull request, #2263: Bump Polly from 7.2.4 to 8.0.0 in /gremlin-dotnet

2023-09-28 Thread via GitHub


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

   Bumps [Polly](https://github.com/App-vNext/Polly) from 7.2.4 to 8.0.0.
   
   Release notes
   Sourced from https://github.com/App-vNext/Polly/releases";>Polly's 
releases.
   
   8.0.0
   What's Changed
   
   BenchmarkDotNet 0.13.2 by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/972";>App-vNext/Polly#972
   Update branch guidance by https://github.com/martincostello";>@​martincostello in 
https://redirect.github.com/App-vNext/Polly/pull/976";>App-vNext/Polly#976
   Merge v724-or-v730 to default branch by https://github.com/martincostello";>@​martincostello in 
https://redirect.github.com/App-vNext/Polly/pull/979";>App-vNext/Polly#979
   update to Moq 4.18.3 by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/974";>App-vNext/Polly#974
   Microsoft.NET.Test.Sdk 17.4 by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/973";>App-vNext/Polly#973
   Fix bracket in documentation by https://github.com/tomaszek92";>@​tomaszek92 in https://redirect.github.com/App-vNext/Polly/pull/983";>App-vNext/Polly#983
   Changed the branch name to main by https://github.com/joelhulen";>@​joelhulen in https://redirect.github.com/App-vNext/Polly/pull/987";>App-vNext/Polly#987
   Updated the branch to main by https://github.com/joelhulen";>@​joelhulen in https://redirect.github.com/App-vNext/Polly/pull/988";>App-vNext/Polly#988
   Updated the changelog link to the main branch by https://github.com/joelhulen";>@​joelhulen in https://redirect.github.com/App-vNext/Polly/pull/989";>App-vNext/Polly#989
   Fixed paths and links by https://github.com/joelhulen";>@​joelhulen in https://redirect.github.com/App-vNext/Polly/pull/990";>App-vNext/Polly#990
   Added blog post on circuit breakers in asp.net 6 by https://github.com/rocklan";>@​rocklan in https://redirect.github.com/App-vNext/Polly/pull/986";>App-vNext/Polly#986
   #944- Added to readme explaining waitand/retryforever is not actually… 
by https://github.com/james-2001";>@​james-2001 in https://redirect.github.com/App-vNext/Polly/pull/992";>App-vNext/Polly#992
   Remove AppVeyor build by https://github.com/martincostello";>@​martincostello in 
https://redirect.github.com/App-vNext/Polly/pull/993";>App-vNext/Polly#993
   Upload code coverage to codecov.io by https://github.com/martincostello";>@​martincostello in 
https://redirect.github.com/App-vNext/Polly/pull/995";>App-vNext/Polly#995
   Build on Linux and macOS by https://github.com/martincostello";>@​martincostello in 
https://redirect.github.com/App-vNext/Polly/pull/996";>App-vNext/Polly#996
   update to SDK 7.0.101 by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/984";>App-vNext/Polly#984
   remove redundant Microsoft.CSharp by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/998";>App-vNext/Polly#998
   remove some trailing whitespace by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/997";>App-vNext/Polly#997
   Microsoft.Extensions.Caching.Memory 7.0.0 by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/999";>App-vNext/Polly#999
   remove redundant langversion by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/1000";>App-vNext/Polly#1000
   enable nullable in benchmarks by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/1001";>App-vNext/Polly#1001
   Add some missing asserts by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/1002";>App-vNext/Polly#1002
   remove some redundant async state machines by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/985";>App-vNext/Polly#985
   Enable nullable in tests by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/1003";>App-vNext/Polly#1003
   Add dependabot updates by https://github.com/martincostello";>@​martincostello in 
https://redirect.github.com/App-vNext/Polly/pull/1004";>App-vNext/Polly#1004
   Add GitHub Actions workflow to update the .NET SDK by https://github.com/martincostello";>@​martincostello in 
https://redirect.github.com/App-vNext/Polly/pull/1005";>App-vNext/Polly#1005
   remove some redundant parens by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/1008";>App-vNext/Polly#1008
   Move to implicit usings by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github.com/App-vNext/Polly/pull/1006";>App-vNext/Polly#1006
   move tests from net472 to 481 by https://github.com/SimonCropp";>@​SimonCropp in https://redirect.github

[tinkerpop] branch dependabot/nuget/gremlin-dotnet/3.5-dev/Polly-8.0.0 created (now 9a7932cd41)

2023-09-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/nuget/gremlin-dotnet/3.5-dev/Polly-8.0.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


  at 9a7932cd41 Bump Polly from 7.2.4 to 8.0.0 in /gremlin-dotnet

No new revisions were added by this update.