Re: [PR] Implement list filtering `none()` step [tinkerpop]
Cole-Greer commented on PR #2385: URL: https://github.com/apache/tinkerpop/pull/2385#issuecomment-1865367797 Thanks Ryan. I've gone through the docs, the feature tests, NoneStep, and NoneStepTest and it all looks good to me. VOTE +1 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Option to force the message to be sent as string instead of bytecode [tinkerpop]
divad1196 commented on PR #2314: URL: https://github.com/apache/tinkerpop/pull/2314#issuecomment-1865221001 Hi @Cole-Greer , I think that I will close the MR for now. I agree that we shouldn't adapt the library to CosmosDB. I still think that a solution should be proposed and having an external "monkey-patching library" would be good enough. For the other ideas, I will come back with the correct process. Thank you again for your time and the project. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Option to force the message to be sent as string instead of bytecode [tinkerpop]
divad1196 closed pull request #2314: Option to force the message to be sent as string instead of bytecode URL: https://github.com/apache/tinkerpop/pull/2314 -- 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 master updated: Replace `none()` with `discard()` (#2377)
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 The following commit(s) were added to refs/heads/master by this push: new 62a3935152 Replace `none()` with `discard()` (#2377) 62a3935152 is described below commit 62a3935152354eea54f2cfadc39edf10ebe2005d Author: Ryan Tan <65996005+r...@users.noreply.github.com> AuthorDate: Wed Dec 20 14:05:53 2023 -0800 Replace `none()` with `discard()` (#2377) Renames none() to discard() to make room for a new list filtering none() step in #2385. --- CHANGELOG.asciidoc | 2 +- docs/src/reference/the-traversal.asciidoc | 32 +++--- docs/src/upgrade/release-4.x.x.asciidoc| 10 + .../grammar/DefaultGremlinBaseVisitor.java | 2 +- .../language/grammar/TraversalRootVisitor.java | 4 +- .../gremlin/process/traversal/Traversal.java | 18 .../traversal/dsl/graph/GraphTraversal.java| 8 ++-- .../gremlin/process/traversal/dsl/graph/__.java| 1 - .../filter/{NoneStep.java => DiscardStep.java} | 4 +- .../strategy/optimization/EarlyLimitStrategy.java | 22 +- .../strategy/optimization/LazyBarrierStrategy.java | 6 +-- .../optimization/PathRetractionStrategy.java | 8 +--- .../verification/StandardVerificationStrategy.java | 7 ++-- .../process/traversal/util/BytecodeHelper.java | 12 +++--- .../language/grammar/TraversalRootVisitorTest.java | 6 +-- .../traversal/dsl/graph/GraphTraversalTest.java| 2 +- .../optimization/EarlyLimitStrategyTest.java | 16 +++ .../StandardVerificationStrategyTest.java | 2 +- .../Process/Traversal/DefaultTraversal.cs | 2 +- .../Process/Traversal/GraphTraversal.cs| 18 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 3 ++ gremlin-go/driver/anonymousTraversal.go| 14 +++ gremlin-go/driver/cucumber/gremlin.go | 3 ++ gremlin-go/driver/graphTraversal.go| 12 +++--- gremlin-go/driver/traversal.go | 2 +- .../lib/process/graph-traversal.js | 20 - .../gremlin-javascript/lib/process/traversal.js| 2 +- .../gremlin-javascript/test/cucumber/gremlin.js| 3 ++ gremlin-language/src/main/antlr4/Gremlin.g4| 6 +-- .../gremlin_python/process/graph_traversal.py | 8 ++-- .../python/gremlin_python/process/traversal.py | 2 +- gremlin-python/src/main/python/radish/gremlin.py | 3 ++ .../process/traversal/CoreTraversalTest.java | 5 +-- .../gremlin/test/features/filter/Discard.feature | 49 ++ 34 files changed, 187 insertions(+), 127 deletions(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 604c5aabd4..65dff64335 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -31,6 +31,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima * Deprecated `withEmbedded()` and `withRemote()` options on `AnonymousTraversalSource`. * Added `with()` on `AnonymousTraversalSource` to cover both embedded and remote creation options. * Removed the deprecated `withGraph()` option from `AnonymousTraversalSource`. +* Renamed the traversal discarding `none()` step to `discard()`. * Bumped to `commons-collection4`. == TinkerPop 3.7.0 (Gremfir Master of the Pan Flute) @@ -41,7 +42,6 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima === TinkerPop 3.7.2 (NOT OFFICIALLY RELEASED YET) - [[release-3-7-1]] === TinkerPop 3.7.1 (November 20, 2023) diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc index 01f92208b8..fe1e3e7224 100644 --- a/docs/src/reference/the-traversal.asciidoc +++ b/docs/src/reference/the-traversal.asciidoc @@ -1448,6 +1448,21 @@ g.V().values("name").fold().difference(__.V().limit(2).values("name").fold()) link:++https://tinkerpop.apache.org/javadocs/x.y.z/core/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html#difference(java.lang.Object)++[`difference(Object)`] link:++https://tinkerpop.apache.org/docs/x.y.z/dev/provider/#difference-step++[`Semantics`] +[[discard-step]] +=== Discard Step + +The `discard()`-step (*filter*) filters all objects from a traversal stream. It is especially useful for traversals +that are executed remotely where returning results is not useful and the traversal is only meant to generate +side-effects. Choosing not to return results saves in serialization and network costs as the objects are filtered on +the remote end and not returned to the client side. Typically, this step does not need to be used directly and is +quietly used by the `iterate()` terminal step which appends `discard()` to the traversal before actually cycling through +results. + +*Additional References* + +link:+
Re: [PR] Replace `none()` with `discard()` [tinkerpop]
xiazcy merged PR #2377: URL: https://github.com/apache/tinkerpop/pull/2377 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Replace `none()` with `discard()` [tinkerpop]
xiazcy commented on PR #2377: URL: https://github.com/apache/tinkerpop/pull/2377#issuecomment-1865187463 LGTM. VOTE +1 -- 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 master updated (3f37c0ff99 -> dc5b190ec3)
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 3f37c0ff99 Merge branch '3.7-dev' add c28aa2ec8c Notice for renaming `none()` to `discard()` (#2408) new dc5b190ec3 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| 2 +- docs/src/reference/the-traversal.asciidoc | 4 +++- docs/src/upgrade/release-3.7.x.asciidoc | 6 ++ 3 files changed, 10 insertions(+), 2 deletions(-)
Re: [PR] Notice for renaming `none()` to `discard()` [tinkerpop]
Cole-Greer merged PR #2408: URL: https://github.com/apache/tinkerpop/pull/2408 -- 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/01: Merge branch '3.7-dev'
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 dc5b190ec314a0678a4a7c326e075eaba102d9a2 Merge: 3f37c0ff99 c28aa2ec8c Author: Yang Xia <55853655+xia...@users.noreply.github.com> AuthorDate: Wed Dec 20 13:07:45 2023 -0800 Merge branch '3.7-dev' CHANGELOG.asciidoc| 2 +- docs/src/reference/the-traversal.asciidoc | 4 +++- docs/src/upgrade/release-3.7.x.asciidoc | 6 ++ 3 files changed, 10 insertions(+), 2 deletions(-)
(tinkerpop) branch 3.7-dev updated: Notice for renaming `none()` to `discard()` (#2408)
This is an automated email from the ASF dual-hosted git repository. colegreer pushed a commit to branch 3.7-dev in repository https://gitbox.apache.org/repos/asf/tinkerpop.git The following commit(s) were added to refs/heads/3.7-dev by this push: new c28aa2ec8c Notice for renaming `none()` to `discard()` (#2408) c28aa2ec8c is described below commit c28aa2ec8cce281d51e9323070610d3f71a6291e Author: Ryan Tan <65996005+r...@users.noreply.github.com> AuthorDate: Wed Dec 20 13:07:04 2023 -0800 Notice for renaming `none()` to `discard()` (#2408) Provides notice in release notes that none() will be renamed to discard() in TinkerPop 4.0 --- CHANGELOG.asciidoc| 2 +- docs/src/reference/the-traversal.asciidoc | 4 +++- docs/src/upgrade/release-3.7.x.asciidoc | 6 ++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index bfff86bfab..c1b4fccaec 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -82,7 +82,7 @@ This release also includes changes from <> and
Re: [PR] Replace `none()` with `discard()` [tinkerpop]
vkagamlyk commented on PR #2377: URL: https://github.com/apache/tinkerpop/pull/2377#issuecomment-1865134464 VOTE+1 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Notice for renaming `none()` to `discard()` [tinkerpop]
vkagamlyk commented on PR #2408: URL: https://github.com/apache/tinkerpop/pull/2408#issuecomment-1865110862 VOTE+1 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Replace `none()` with `discard()` [tinkerpop]
ryn5 commented on code in PR #2377: URL: https://github.com/apache/tinkerpop/pull/2377#discussion_r1433130575 ## gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/__.java: ## @@ -806,6 +805,13 @@ public static GraphTraversal> difference(final Object values) { return __.start().difference(values); } +/** + * @see GraphTraversal#discard() + */ +public static GraphTraversal discard() { Review Comment: This was originally added to pass a test that looks for steps being implemented in GraphTraversal, but after looking into it again it seems it should just be ignored as none() was previously, so I'll be adding "discard" as an ignore case and removing this function. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] TINKERPOP-2995 Create Sample Applications in each GLV 4.0 [tinkerpop]
xiazcy closed pull request #2406: TINKERPOP-2995 Create Sample Applications in each GLV 4.0 URL: https://github.com/apache/tinkerpop/pull/2406 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] TINKERPOP-2995 Create Sample Applications in each GLV 4.0 [tinkerpop]
xiazcy commented on PR #2406: URL: https://github.com/apache/tinkerpop/pull/2406#issuecomment-1865028186 Closing as all changes here are addressed in 76b2989 and https://github.com/apache/tinkerpop/pull/2409 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Notice for renaming `none()` to `discard()` [tinkerpop]
xiazcy commented on code in PR #2408: URL: https://github.com/apache/tinkerpop/pull/2408#discussion_r1433103260 ## docs/src/upgrade/release-3.7.x.asciidoc: ## @@ -30,9 +30,15 @@ complete list of all the modifications that are part of this release. === Upgrading for Users + Renaming `none()` Step to `discard()` Review Comment: ```suggestion Notice: Renaming `none()` step to `discard()` in 4.0.0 ``` ## docs/src/upgrade/release-3.7.x.asciidoc: ## @@ -30,9 +30,15 @@ complete list of all the modifications that are part of this release. === Upgrading for Users + Renaming `none()` Step to `discard()` +`none()`, which is primarily used by `iterate()` to discard traversal results in remote contexts, will be renamed to +`discard()` in release 4.0.0. === Upgrading for Providers + Renaming NoneStep to DiscardStep Review Comment: ```suggestion Notice: Renaming NoneStep to DiscardStep in 4.0.0 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Bump xunit from 2.6.1 to 2.6.3 in /gremlin-dotnet [tinkerpop]
codecov-commenter commented on PR #2394: URL: https://github.com/apache/tinkerpop/pull/2394#issuecomment-1864684472 ## [Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/2394?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report All modified and coverable lines are covered by tests :white_check_mark: > Comparison is base [(`e86eed2`)](https://app.codecov.io/gh/apache/tinkerpop/commit/e86eed20a868d5ba8fcf64939f032b87093811c1?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 71.15% compared to head [(`4fbe26d`)](https://app.codecov.io/gh/apache/tinkerpop/pull/2394?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 71.23%. Additional details and impacted files ```diff @@ Coverage Diff @@ ## 3.6-dev#2394 +/- ## === + Coverage71.15% 71.23% +0.07% === Files 25 25 Lines 3772 3772 === + Hits 2684 2687 +3 + Misses 900 898 -2 + Partials 188 187 -1 ``` [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/tinkerpop/pull/2394?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?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
(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0 updated (ded066efd9 -> 736d0b8fc9)
This is an automated email from the ASF dual-hosted git repository. github-bot 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 discard ded066efd9 Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions 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 736d0b8fc9 Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions 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 (ded066efd9) \ N -- N -- N refs/heads/dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0 (736d0b8fc9) 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: .../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/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0 updated (ff01381d51 -> ded066efd9)
This is an automated email from the ASF dual-hosted git repository. github-bot 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 discard ff01381d51 Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions add 2f4fd40814 Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in /gremlin-dotnet add ded066efd9 Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions 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 (ff01381d51) \ N -- N -- N refs/heads/dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0 (ded066efd9) 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: .../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 dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.6.3 updated (e19b91d5b1 -> 9e9e5f572a)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.6.3 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git discard e19b91d5b1 Bump xunit from 2.6.1 to 2.6.3 in /gremlin-dotnet add b48fd8c0ff Add ARM64 console docker images (#2391) add 67b8a334eb TINKERPOP-3022 Fixed JavaTranslator issues with has(String,null) add 7b2580e520 Add missing int16 serialization type to graphson in python (#2396) add 9f97af5a87 TINKERPOP-2995 Create Sample Applications in each GLV 3.6 (#2299) add b4e79889f5 Add requestIds to server HTTP error response. add d4fc477a5c Merge pull request #2365 add 1e10331e2c TINKERPOP-2950 Add docker shutdown handling to close containers gracefully (#2397) add 654faed678 Minor update to GLV examples (#2409) add 87a9574d93 Bump eslint (#2407) add 1b9dd6504f Bump github/codeql-action from 2 to 3 (#2400) add 8ac642e0e3 Bump github.com/google/uuid from 1.4.0 to 1.5.0 in /gremlin-go (#2399) add de74d3c9e2 Bump ws in /gremlin-javascript/src/main/javascript/gremlin-javascript (#2398) 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 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 add 9e9e5f572a Bump xunit from 2.6.1 to 2.6.3 in /gremlin-dotnet 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 (e19b91d5b1) \ N -- N -- N refs/heads/dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.6.3 (9e9e5f572a) 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: .github/workflows/codeql.yml | 14 +- CHANGELOG.asciidoc | 4 + bin/run-examples.sh| 119 docs/src/dev/developer/release.asciidoc| 4 +- docs/src/reference/gremlin-variants.asciidoc | 170 +-- gremlin-console/pom.xml| 7 +- .../traversal/dsl/graph/GraphTraversal.java| 12 + .../Examples/BasicGremlin/BasicGremlin.cs | 54 .../Examples/BasicGremlin/BasicGremlin.csproj | 30 ++ gremlin-dotnet/Examples/Connections/Connections.cs | 74 + .../Examples/Connections/Connections.csproj| 30 ++ gremlin-dotnet/Examples/Examples.sln | 37 +++ .../Examples/ModernTraversals/ModernTraversals.cs | 71 + .../ModernTraversals/ModernTraversals.csproj | 30 ++ gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 4 +- .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 1 + .../Gremlin.Net.IntegrationTest.csproj | 2 +- .../Gremlin.Net.Template.IntegrationTest.csproj| 2 +- .../Gremlin.Net.UnitTest.csproj| 2 +- gremlin-driver/pom.xml | 9 + .../src/main/java/examples/BasicGremlin.java | 56 .../src/main/java/examples/Connections.java| 116 .../src/main/java/examples/ModernTraversals.java | 71 + gremlin-driver/src/main/java/examples/pom.xml | 91 ++ .../driver/handler/HttpGremlinResponseDecoder.java | 24 +- gremlin-go/driver/cucumber/gremlin.go | 1 + gremlin-go/example/go.sum | 315 - gremlin-go/examples/basic_gremlin.go | 69 + .../example.go => examples/connections.go} | 59 ++-- gremlin-go/{example => examples}/go.mod| 8 +- gremlin-go/examples/go.sum | 44 +++ gremlin-go/examples/modern_traversals.go | 77 + gremlin-go/go.mod | 2 +- gremlin-go/go.sum | 4 +- gremlin-javascript/examples/.gitignore | 1 + gremlin-javascript/examples/basic-gremlin.js | 51 gremlin-javascript/examples/connections.js | 65 + gremlin-javascript/examples/modern-traversals.js | 69 + gremlin-javascript/examples/package-lock.json | 47 +++ gremlin-javascript/examples/package.json | 14 + .../gremlin-javascript/package-lock.j
(tinkerpop) branch master updated (54e58bec6d -> 3f37c0ff99)
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)
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'
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)
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 dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.6.3 updated (9e9e5f572a -> 4fbe26d669)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.6.3 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git discard 9e9e5f572a Bump xunit from 2.6.1 to 2.6.3 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 add 4fbe26d669 Bump xunit from 2.6.1 to 2.6.3 in /gremlin-dotnet 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 (9e9e5f572a) \ N -- N -- N refs/heads/dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.6.3 (4fbe26d669) 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: .../test/Gremlin.Net.Benchmarks/Gremlin.Net.Benchmarks.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Re: [PR] Bump BenchmarkDotNet from 0.13.10 to 0.13.11 in /gremlin-dotnet [tinkerpop]
FlorianHockmann merged PR #2412: URL: https://github.com/apache/tinkerpop/pull/2412 -- 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 (2f4fd40814 -> e86eed20a8)
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)
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)
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(-)
Re: [PR] Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in /gremlin-dotnet [tinkerpop]
FlorianHockmann merged PR #2411: URL: https://github.com/apache/tinkerpop/pull/2411 -- 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/01: Merge branch '3.7-dev'
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)
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)
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(-)
Re: [PR] Bump xunit from 2.6.1 to 2.6.3 in /gremlin-dotnet [tinkerpop]
FlorianHockmann commented on PR #2394: URL: https://github.com/apache/tinkerpop/pull/2394#issuecomment-1864573916 The failing Gherkin test seems to be caused by this: xunit/xunit#2850 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[PR] Bump eslint-plugin-prettier from 5.0.1 to 5.1.0 in /gremlin-javascript/src/main/javascript/gremlin-javascript [tinkerpop]
dependabot[bot] opened a new pull request, #2413: URL: https://github.com/apache/tinkerpop/pull/2413 Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 5.0.1 to 5.1.0. Release notes Sourced from https://github.com/prettier/eslint-plugin-prettier/releases";>eslint-plugin-prettier's releases. v.5.1.0 Minor Changes https://redirect.github.com/prettier/eslint-plugin-prettier/pull/616";>#616 https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135";>3856413 Thanks https://github.com/BPScott";>@BPScott! - Add recommended config for the flat config format. If you are using flat config, import the recommended config from eslint-plugin-prettier/recommended. Like the legacy format recommended config, this automatically includes the contents of eslint-config-prettier. // eslint.config.js const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended'); module.exports = [ // Any other config imports go at the top eslintPluginPrettierRecommended, ]; Patch Changes https://redirect.github.com/prettier/eslint-plugin-prettier/pull/614";>#614 https://github.com/prettier/eslint-plugin-prettier/commit/5270877d169bec05449861c8ad7e6338b0ad47c0";>5270877 Thanks https://github.com/BPScott";>@BPScott! - Add meta block to plugin. This improves debugging and cachebusting when using the new flat config https://redirect.github.com/prettier/eslint-plugin-prettier/pull/603";>#603 https://github.com/prettier/eslint-plugin-prettier/commit/a63a570f8f3e3d53b90b1cf35e06fd7e3c387a5a";>a63a570 Thanks https://github.com/filiptammergard";>@filiptammergard! - fix: specify eslint-config-prettier as peer dependency It's already added to peerDependenciesMeta as optional, which means it should also be specified in peerDependencies. New Contributors https://github.com/filiptammergard";>@filiptammergard made their first contribution in https://redirect.github.com/prettier/eslint-plugin-prettier/pull/594";>prettier/eslint-plugin-prettier#594 Full Changelog: https://github.com/prettier/eslint-plugin-prettier/compare/v5.0.1...v5.1.0";>https://github.com/prettier/eslint-plugin-prettier/compare/v5.0.1...v5.1.0 Changelog Sourced from https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md";>eslint-plugin-prettier's changelog. 5.1.0 Minor Changes https://redirect.github.com/prettier/eslint-plugin-prettier/pull/616";>#616 https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135";>3856413 Thanks https://github.com/BPScott";>@BPScott! - Add recommended config for the flat config format. If you are using flat config, import the recommended config from eslint-plugin-prettier/recommended. Like the legacy format recommended config, this automatically includes the contents of eslint-config-prettier. // eslint.config.js const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended'); module.exports = [ // Any other config imports go at the top eslintPluginPrettierRecommended, ]; Patch Changes https://redirect.github.com/prettier/eslint-plugin-prettier/pull/614";>#614 https://github.com/prettier/eslint-plugin-prettier/commit/5270877d169bec05449861c8ad7e6338b0ad47c0";>5270877 Thanks https://github.com/BPScott";>@BPScott! - Add meta block to plugin. This improves debugging and cachebusting when using the new flat config https://redirect.github.com/prettier/eslint-plugin-prettier/pull/603";>#603 https://github.com/prettier/eslint-plugin-prettier/commit/a63a570f8f3e3d53b90b1cf35e06fd7e3c387a5a";>a63a570 Thanks https://github.com/filiptammergard";>@filiptammergard! - fix: specify eslint-config-prettier as peer dependency It's already added to peerDependenciesMeta as optional, which means it should also be specified in peerDependencies. Commits https://github.com/prettier/eslint-plugin-prettier/commit/183f45c050188809a19c5088832b06ccc5b2e5b4";>183f45c chore: release eslint-plugin-prettier (https://redirect.github.com/prettier/eslint-plugin-prettier/issues/604";>#604) https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135";>3856413 Add flat recommended config (https://redirect.github.com/prettier/eslint-plugin-prettier/issues/616";>#616) https://github.com/prettier/eslint-plugin-prettier/commit/78c8b80f514719ad59a6e20fe2aa5318108f8c6d";>78c8b80 Use flat config for the project's eslint configuration (https://redirect.github.com/prettier/eslint-plugin-prettier/issues/615";>#615) https://github.com/prettier/eslint-plugin-prettier/commit/5270877d169bec05449861c8ad7e6338b0ad47c0";>5270877 feat: add meta block to config (https://redirect.github.com/prettie
(tinkerpop) branch dependabot/npm_and_yarn/gremlin-javascript/src/main/javascript/gremlin-javascript/3.6-dev/eslint-plugin-prettier-5.1.0 created (now c6e11c4676)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/npm_and_yarn/gremlin-javascript/src/main/javascript/gremlin-javascript/3.6-dev/eslint-plugin-prettier-5.1.0 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git at c6e11c4676 Bump eslint-plugin-prettier No new revisions were added by this update.
[PR] Bump BenchmarkDotNet from 0.13.10 to 0.13.11 in /gremlin-dotnet [tinkerpop]
dependabot[bot] opened a new pull request, #2412: URL: https://github.com/apache/tinkerpop/pull/2412 Bumps [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet) from 0.13.10 to 0.13.11. Release notes Sourced from https://github.com/dotnet/BenchmarkDotNet/releases";>BenchmarkDotNet's releases. 0.13.11 Full changelog: https://benchmarkdotnet.org/changelog/v0.13.11.html";>https://benchmarkdotnet.org/changelog/v0.13.11.html In the https://github.com/dotnet/BenchmarkDotNet/issues?q=milestone:v0.13.11";>v0.13.11 scope, 4 issues were resolved and 8 pull requests were merged. This release includes 28 commits by 7 contributors. Resolved issues (4) https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2060";>#2060 NativeAOT benchmark started from .Net Framework host doesn't have all intrinsics enabled (assignee: https://github.com/adamsitnik";>@adamsitnik) https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2233";>#2233 Q: Include hardware counters in XML output (assignee: https://github.com/nazulg";>@nazulg) https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2388";>#2388 Include AVX512 in listed HardwareIntrinsics https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2463";>#2463 Bug. Native AOT .NET 7.0 doesn't work. System.NotSupportedException: X86Serialize (assignee: https://github.com/adamsitnik";>@adamsitnik) Merged pull requests (8) https://redirect.github.com/dotnet/BenchmarkDotNet/pull/2412";>#2412 Add HardwareIntrinsics AVX-512 info (by https://github.com/nietras";>@nietras) https://redirect.github.com/dotnet/BenchmarkDotNet/pull/2458";>#2458 Adds Metrics Columns to Benchmark Report Output (by https://github.com/nazulg";>@nazulg) https://redirect.github.com/dotnet/BenchmarkDotNet/pull/2459";>#2459 Enable MemoryDiagnoser on Legacy Mono (by https://github.com/MichalPetryka";>@MichalPetryka) https://redirect.github.com/dotnet/BenchmarkDotNet/pull/2462";>#2462 update SDK to .NET 8 (by https://github.com/adamsitnik";>@adamsitnik) https://redirect.github.com/dotnet/BenchmarkDotNet/pull/2464";>#2464 Use "native" for .NET 8, don't use "serialize" for .NET 7 (by https://github.com/adamsitnik";>@adamsitnik) https://redirect.github.com/dotnet/BenchmarkDotNet/pull/2465";>#2465 fix NativeAOT toolchain and tests (by https://github.com/adamsitnik";>@adamsitnik) https://redirect.github.com/dotnet/BenchmarkDotNet/pull/2468";>#2468 Add OperationsPerSecondAttribute (by https://github.com/DarkWanderer";>@DarkWanderer) https://redirect.github.com/dotnet/BenchmarkDotNet/pull/2475";>#2475 Fix some tests (by https://github.com/timcassell";>@timcassell) Commits (28) https://github.com/dotnet/BenchmarkDotNet/commit/bb55e6b067829c74e04838255e96d949857d5731";>bb55e6 Set next BenchmarkDotNet version: 0.13.11 (by https://github.com/AndreyAkinshin";>@AndreyAkinshin) https://github.com/dotnet/BenchmarkDotNet/commit/db4d8b6d8a652db4bb1e4b1b4b0cd9df917e9584";>db4d8b Adds Metrics Columns to Benchmark Report Output (https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2458";>#2458) (by https://github.com/nazulg";>@nazulg) https://github.com/dotnet/BenchmarkDotNet/commit/e93b2b1b332fc90da4934025e2edba7d67a15b54";>e93b2b Use "native" for .NET 8, don't use "serialize" for .NET 7 (https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2464";>#2464) (by https://github.com/adamsitnik";>@adamsitnik) https://github.com/dotnet/BenchmarkDotNet/commit/127157924014afe2d0b58398d682381a855d7c34";>127157 [build] Fix spellcheck-docs workflow (by https://github.com/AndreyAkinshin";>@AndreyAkinshin) https://github.com/dotnet/BenchmarkDotNet/commit/8a02ec28d55529f9be0ea66d843049738b2be8fa";>8a02ec [build] Use our .NET SDK on Windows (by https://github.com/AndreyAkinshin";>@AndreyAkinshin) https://github.com/dotnet/BenchmarkDotNet/commit/1b39e8e6d5437bdbf0bb62986e680e54b19cc873";>1b39e8 Suppress NU1903 in IntegrationTests.ManualRunning.MultipleFrameworks (by https://github.com/AndreyAkinshin";>@AndreyAkinshin) https://github.com/dotnet/BenchmarkDotNet/commit/e90311539d78e4bf9d90c6aeae9f40219b31a4ac";>e90311 update SDK to .NET 8 (https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2462";>#2462) (by https://github.com/adamsitnik";>@adamsitnik) https://github.com/dotnet/BenchmarkDotNet/commit/fc7afeddcff7a52ccee165ac99ba216e8eb138ab";>fc7afe Enable MemoryDiagnoser on Legacy Mono (https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2459";>#2459) (by https://github.com/MichalPetryka";>@MichalPetryka) https://github.com/dotnet/BenchmarkDotNet/commit/630622b6df3192f766ffa03ff07b5086e70cb264";>630622 fix NativeAOT toolchain and tests (https://redirect.github.com/dotnet/BenchmarkDotNet/issues/2465";>#2465) (by https://github.com/adamsitnik";>@adamsitnik) https://github.com/dotnet/BenchmarkDotNet/commit/536a28e0ff2196255fb120aa0d39e40bdbde454a";>5
(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.5.5 created (now 2f4fd40814)
This is an automated email from the ASF dual-hosted git repository. github-bot 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 at 2f4fd40814 Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in /gremlin-dotnet No new revisions were added by this update.
(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/BenchmarkDotNet-0.13.11 created (now 9a8b639e85)
This is an automated email from the ASF dual-hosted git repository. github-bot 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 at 9a8b639e85 Bump BenchmarkDotNet from 0.13.10 to 0.13.11 in /gremlin-dotnet No new revisions were added by this update.
[PR] Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in /gremlin-dotnet [tinkerpop]
dependabot[bot] opened a new pull request, #2411: URL: https://github.com/apache/tinkerpop/pull/2411 Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.5.3 to 2.5.5. Commits https://github.com/xunit/visualstudio.xunit/commit/28b46ff510a2846342ea1756a32c2a14d17b9938";>28b46ff v2.5.5 https://github.com/xunit/visualstudio.xunit/commit/409be7a45f67ce0578c912340c3d5320c7246b62";>409be7a Add PackageId to solve VS issues (see https://redirect.github.com/dotnet/sdk/issues/22";>dotnet/sdk#22... https://github.com/xunit/visualstudio.xunit/commit/56db5de6cece6ca1341664ceece0a1e186dceca8";>56db5de Latest dependencies (and use ExecutionSink instead of delegating sinks) https://github.com/xunit/visualstudio.xunit/commit/1f419e62a61cbbfbcf06b7dd4d0022dafe7299f5";>1f419e6 Update README https://github.com/xunit/visualstudio.xunit/commit/f052a1dfa46cee7faf8d5af54bec69aaaececb41";>f052a1d Bump up to v2.5.5-pre https://github.com/xunit/visualstudio.xunit/commit/b9eacec401591bf17d5a3a5436223045c980562e";>b9eacec v2.5.4 https://github.com/xunit/visualstudio.xunit/commit/316c225a721e952c98ee36fbd722c2859ff3847e";>316c225 Latest dependencies https://github.com/xunit/visualstudio.xunit/commit/9d3aaa076f1c5596dd5aed68941aef6ca9657c55";>9d3aaa0 Latest dependencies https://github.com/xunit/visualstudio.xunit/commit/da1033b99db9ae1debee355466a031081540dd78";>da1033b Latest dependencies https://github.com/xunit/visualstudio.xunit/commit/8b760896810eb16a3a55c30a3ee63739ff84a1eb";>8b76089 Remove unnecessary global.json Additional commits viewable in https://github.com/xunit/visualstudio.xunit/compare/2.5.3...2.5.5";>compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xunit.runner.visualstudio&package-manager=nuget&previous-version=2.5.3&new-version=2.5.5)](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/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0 updated (dd4978fe5f -> ff01381d51)
This is an automated email from the ASF dual-hosted git repository. github-bot 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 discard dd4978fe5f Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions add 5403cf73d6 Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in /gremlin-dotnet add ff01381d51 Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions 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 (dd4978fe5f) \ N -- N -- N refs/heads/dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0 (ff01381d51) 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: gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
(tinkerpop) 01/01: Merge branch '3.7-dev'
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)
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)
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)
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)
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(-)
Re: [PR] Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in /gremlin-dotnet [tinkerpop]
FlorianHockmann merged PR #2350: URL: https://github.com/apache/tinkerpop/pull/2350 -- 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/nuget/gremlin-dotnet/3.5-dev/Microsoft.SourceLink.GitHub-8.0.0 updated (377fc32ae3 -> 5403cf73d6)
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/Microsoft.SourceLink.GitHub-8.0.0 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git discard 377fc32ae3 Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in /gremlin-dotnet add 636b49d200 CTR Bump to 3.6.7-SNAPSHOT add 296bbcdb27 Fix flaky traversal test due to duplicated key generated for project step (#2361) add 75f7ac0977 Bump actions/setup-dotnet from 3 to 4 (#2381) add b6910013fe Bump actions/setup-java from 3 to 4 (#2370) add aec4fc25ee Bump actions/checkout from 3 to 4 (#2231) add 0a3505760b Bump github.com/nicksnyder/go-i18n/v2 from 2.2.2 to 2.3.0 in /gremlin-go (#2379) add 18fd6a3dfa Bump @types/node from 20.9.0 to 20.10.3 in /gremlint (#2375) add 100084e78c Bump eslint (#2373) add 1e0cfaea35 Bump eslint-config-prettier (#2372) add 500252dcfc Let JavaTranslator.translateObject() throw clearer ISE add bf19ce9e16 [TINKERPOP-2913] Ensure that if tx.commit() is called remotely it does not hang for graphs without transactions (#2364) add 6af49cbe9c Bump com.github.eirslett:frontend-maven-plugin from 1.12.1 to 1.15.0 (#2384) add c2e20863a2 Bump actions/setup-python from 4 to 5 (#2383) add da8a5fbe05 Bump actions/setup-go from 4 to 5 (#2386) add 1006f515e0 CTR Remove docker "latest" tag from 3.6.x add 20ddedd308 Bump io.fabric8:docker-maven-plugin from 0.42.0 to 0.43.4 (#2300) add b48fd8c0ff Add ARM64 console docker images (#2391) add 67b8a334eb TINKERPOP-3022 Fixed JavaTranslator issues with has(String,null) add 7b2580e520 Add missing int16 serialization type to graphson in python (#2396) add 9f97af5a87 TINKERPOP-2995 Create Sample Applications in each GLV 3.6 (#2299) add b4e79889f5 Add requestIds to server HTTP error response. add d4fc477a5c Merge pull request #2365 add 1e10331e2c TINKERPOP-2950 Add docker shutdown handling to close containers gracefully (#2397) add 654faed678 Minor update to GLV examples (#2409) add 87a9574d93 Bump eslint (#2407) add 1b9dd6504f Bump github/codeql-action from 2 to 3 (#2400) add 8ac642e0e3 Bump github.com/google/uuid from 1.4.0 to 1.5.0 in /gremlin-go (#2399) add de74d3c9e2 Bump ws in /gremlin-javascript/src/main/javascript/gremlin-javascript (#2398) 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 5403cf73d6 Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in /gremlin-dotnet 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 (377fc32ae3) \ N -- N -- N refs/heads/dependabot/nuget/gremlin-dotnet/3.5-dev/Microsoft.SourceLink.GitHub-8.0.0 (5403cf73d6) 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: .github/workflows/build-test.yml | 64 ++--- .github/workflows/codeql.yml | 20 +- CHANGELOG.asciidoc | 10 + bin/run-examples.sh| 119 docs/src/dev/developer/release.asciidoc| 4 +- docs/src/reference/gremlin-variants.asciidoc | 170 +-- docs/src/upgrade/release-3.6.x.asciidoc| 14 + gremlin-annotations/pom.xml| 2 +- gremlin-archetype/gremlin-archetype-dsl/pom.xml| 2 +- gremlin-archetype/gremlin-archetype-server/pom.xml | 2 +- .../gremlin-archetype-tinkergraph/pom.xml | 2 +- gremlin-archetype/pom.xml | 2 +- gremlin-console/bin/gremlin.sh | 2 +- gremlin-console/pom.xml| 9 +- gremlin-core/pom.xml | 2 +- .../tinkerpop/gremlin/jsr223/JavaTranslator.java | 2 +- .../traversal/dsl/graph/GraphTraversal.java| 12 + .../org/apache/tinkerpop/gremlin/util/Gremlin.java | 2 +- .../traversal/dsl/graph/GraphTraversalTest.java| 10 + .../Examples/BasicGremlin/BasicGremlin.cs | 54 .../BasicGremlin/BasicGremlin.csproj} | 64 ++--- gremlin-dotnet/Examples/Connections/Connections.cs | 74 + .../Connections/Connections.csproj}| 64 ++---
Re: [PR] Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions in /gremlin-dotnet [tinkerpop]
codecov-commenter commented on PR #2410: URL: https://github.com/apache/tinkerpop/pull/2410#issuecomment-1864155254 ## [Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/2410?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report All modified and coverable lines are covered by tests :white_check_mark: > Comparison is base [(`74591f5`)](https://app.codecov.io/gh/apache/tinkerpop/commit/74591f57cd3a3eafc12ccb3b3f53ddbc96c32d8d?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 71.23% compared to head [(`dd4978f`)](https://app.codecov.io/gh/apache/tinkerpop/pull/2410?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) 71.23%. Additional details and impacted files ```diff @@ Coverage Diff@@ ## 3.6-dev#2410 +/- ## Coverage71.23% 71.23% Files 25 25 Lines 3772 3772 Hits 2687 2687 Misses 898 898 Partials 187 187 ``` [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/tinkerpop/pull/2410?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?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
Re: [PR] Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 in /gremlin-dotnet [tinkerpop]
FlorianHockmann commented on PR #2350: URL: https://github.com/apache/tinkerpop/pull/2350#issuecomment-1864152950 @dependabot rebase -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Bump Microsoft.Extensions.Logging.Console, Microsoft.Extensions.Logging.Abstractions and System.Text.Json in /gremlin-dotnet [tinkerpop]
dependabot[bot] closed pull request #2376: Bump Microsoft.Extensions.Logging.Console, Microsoft.Extensions.Logging.Abstractions and System.Text.Json in /gremlin-dotnet URL: https://github.com/apache/tinkerpop/pull/2376 -- 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 master updated (45fe5d0349 -> 87aa30f1ce)
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)
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(-)
[PR] Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions in /gremlin-dotnet [tinkerpop]
dependabot[bot] opened a new pull request, #2410: URL: https://github.com/apache/tinkerpop/pull/2410 Bumps [Microsoft.Extensions.Logging.Console](https://github.com/dotnet/runtime) and [Microsoft.Extensions.Logging.Abstractions](https://github.com/dotnet/runtime). These dependencies needed to be updated together. Updates `Microsoft.Extensions.Logging.Console` from 7.0.0 to 8.0.0 Release notes Sourced from https://github.com/dotnet/runtime/releases";>Microsoft.Extensions.Logging.Console's releases. .NET 8.0.0 https://github.com/dotnet/core/releases/tag/v8.0.0";>Release What's Changed [release/8.0-rc1] [release/8.0] Events for IL methods without IL headers by https://github.com/github-actions";>@github-actions in https://redirect.github.com/dotnet/runtime/pull/92317";>dotnet/runtime#92317 [release/8.0] Update dependencies from dotnet/source-build-externals by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92340";>dotnet/runtime#92340 [release/8.0-rc1] [release/8.0] Fix wasi build. by https://github.com/github-actions";>@github-actions in https://redirect.github.com/dotnet/runtime/pull/92368";>dotnet/runtime#92368 [automated] Merge branch 'release/8.0-rc2' => 'release/8.0' by https://github.com/dotnet-maestro-bot";>@dotnet-maestro-bot in https://redirect.github.com/dotnet/runtime/pull/92325";>dotnet/runtime#92325 [release/8.0] Update dependencies from dotnet/roslyn by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92303";>dotnet/runtime#92303 [automated] Merge branch 'release/8.0-rc1' => 'release/8.0' by https://github.com/dotnet-maestro-bot";>@dotnet-maestro-bot in https://redirect.github.com/dotnet/runtime/pull/92374";>dotnet/runtime#92374 [release/8.0] Bump version to GA by https://github.com/carlossanlop";>@carlossanlop in https://redirect.github.com/dotnet/runtime/pull/92305";>dotnet/runtime#92305 [release/8.0] Update dependencies from dotnet/source-build-externals by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92476";>dotnet/runtime#92476 [automated] Merge branch 'release/8.0-rc2' => 'release/8.0' by https://github.com/dotnet-maestro-bot";>@dotnet-maestro-bot in https://redirect.github.com/dotnet/runtime/pull/92401";>dotnet/runtime#92401 [release/8.0] Update dependencies from dotnet/roslyn by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92418";>dotnet/runtime#92418 [release/8.0] Update dependencies from dotnet/source-build-reference-packages by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92474";>dotnet/runtime#92474 [release/8.0] Update dependencies from dnceng/internal/dotnet-optimization by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92473";>dotnet/runtime#92473 [release/8.0] Update dependencies from dotnet/roslyn by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92488";>dotnet/runtime#92488 [automated] Merge branch 'release/8.0-rc2' => 'release/8.0' by https://github.com/dotnet-maestro-bot";>@dotnet-maestro-bot in https://redirect.github.com/dotnet/runtime/pull/92484";>dotnet/runtime#92484 [release/8.0] Update dependencies from dotnet/roslyn-analyzers by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92499";>dotnet/runtime#92499 [release/8.0] Update dependencies from dotnet/emsdk by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92532";>dotnet/runtime#92532 [automated] Merge branch 'release/8.0-rc2' => 'release/8.0' by https://github.com/dotnet-maestro-bot";>@dotnet-maestro-bot in https://redirect.github.com/dotnet/runtime/pull/92515";>dotnet/runtime#92515 [release/8.0] Update dependencies from dotnet/source-build-externals by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92641";>dotnet/runtime#92641 [release/8.0] Update dependencies from dotnet/emsdk dotnet/hotreload-utils by https://github.com/dotnet-maestro";>@dotnet-maestro in https://redirect.github.com/dotnet/runtime/pull/92606";>dotnet/runtime#92606 [release/8.0][wasm] Fix regressed file sizes for blazor by https://github.com/radical";>@radical in https://redirect.github.com/dotnet/runtime/pull/92627";>dotnet/runtime#92627 [release/8.0] JIT: Fixed containment of STOREIND of HW intrinsics ConvertTo*/Extract* by https://github.com/github-actions";>@github-actions in https://redirect.github.com/dotnet/runtime/pull/92513";>dotnet/runtime#92513 [release/8.0] Define bool as Interop.BOOL to prevent upper bytes setting native bool by http
(tinkerpop) branch dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-8.0.0 created (now dd4978fe5f)
This is an automated email from the ASF dual-hosted git repository. github-bot 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 at dd4978fe5f Bump Microsoft.Extensions.Logging.Console and Microsoft.Extensions.Logging.Abstractions No new revisions were added by this update.
Re: [PR] Bump Microsoft.Extensions.Logging.Console, Microsoft.Extensions.Logging.Abstractions and System.Text.Json in /gremlin-dotnet [tinkerpop]
dependabot[bot] commented on PR #2376: URL: https://github.com/apache/tinkerpop/pull/2376#issuecomment-1864138125 Looks like these dependencies are updatable in another way, so this is no longer needed. -- 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/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-and-System.Text.Json-8.0.0 deleted (was cd28eefaea)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/nuget/gremlin-dotnet/3.6-dev/Microsoft.Extensions.Logging.Console-and-Microsoft.Extensions.Logging.Abstractions-and-System.Text.Json-8.0.0 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git was cd28eefaea Bump Microsoft.Extensions.Logging.Console, Microsoft.Extensions.Logging.Abstractions and System.Text.Json 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'
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(-)
Re: [PR] Bump System.Text.Json from 7.0.3 to 8.0.0 in /gremlin-dotnet [tinkerpop]
FlorianHockmann merged PR #2345: URL: https://github.com/apache/tinkerpop/pull/2345 -- 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/01: Merge pull request #2345 from apache/dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0
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)
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.
(tinkerpop) branch 3.6-dev updated (de74d3c9e2 -> 74591f57cd)
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 de74d3c9e2 Bump ws in /gremlin-javascript/src/main/javascript/gremlin-javascript (#2398) add 525ab5e5a3 Bump System.Text.Json from 7.0.3 to 8.0.0 in /gremlin-dotnet new 74591f57cd Merge pull request #2345 from apache/dependabot/nuget/gremlin-dotnet/3.5-dev/System.Text.Json-8.0.0 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(-)