This is an automated email from the ASF dual-hosted git repository.

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

commit 956dad10969525e7291bb901ec1ba56b2f0f6f5d
Merge: 390ab7012a fd25c7727b
Author: Cole Greer <[email protected]>
AuthorDate: Mon Jul 27 12:41:54 2026 -0700

    Merge branch '3.7-dev' into 3.8-dev

 .../gremlin/process/traversal/translator/DotNetTranslator.java |  4 ++++
 .../process/traversal/translator/DotNetTranslatorTest.java     | 10 ++++++++++
 .../Gremlin.Net.IntegrationTest/Gherkin/GherkinTestRunner.cs   |  3 +--
 .../Gremlin.Net.IntegrationTest/Gherkin/IgnoreException.cs     |  7 +------
 4 files changed, 16 insertions(+), 8 deletions(-)

diff --cc 
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/GherkinTestRunner.cs
index 8044c357b7,5462260cff..9a90a57f85
--- 
a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/GherkinTestRunner.cs
+++ 
b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/GherkinTestRunner.cs
@@@ -48,12 -48,8 +48,11 @@@ namespace Gremlin.Net.IntegrationTest.G
              new Dictionary<string, IgnoreReason>
              {
                  // Add here the name of scenarios to ignore and the reason, 
e.g.:
 +                {"g_VX1X_outEXknowsX_subgraphXsgX_name_capXsgX", 
IgnoreReason.SubgraphStepNotSupported},
 +                
{"g_V_repeatXbothEXcreatedX_subgraphXsgX_outVX_timesX5X_name_dedup_capXsgX", 
IgnoreReason.SubgraphStepNotSupported},
                  {"g_withStrategiesXProductiveByStrategyX_V_group_byXageX", 
IgnoreReason.NullKeysInMapNotSupported},
 -                
{"g_withStrategiesXProductiveByStrategyX_V_groupCount_byXageX", 
IgnoreReason.NullKeysInMapNotSupported}
 +                
{"g_withStrategiesXProductiveByStrategyX_V_groupCount_byXageX", 
IgnoreReason.NullKeysInMapNotSupported},
-                 
{"g_withStrategiesXProductiveByStrategyX_V_group_byXageX_byXnameX", 
IgnoreReason.NullKeysInMapNotSupported},
-                 {"g_injectXpoint5fX", 
IgnoreReason.FloatLiteralTypeNotPreserved}
++                
{"g_withStrategiesXProductiveByStrategyX_V_group_byXageX_byXnameX", 
IgnoreReason.NullKeysInMapNotSupported}
              };
  
          private static class Keywords
diff --cc 
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/IgnoreException.cs
index 1fd55c66fa,3eb59d4f57..3a86d82017
--- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/IgnoreException.cs
+++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/IgnoreException.cs
@@@ -60,21 -60,6 +60,16 @@@ namespace Gremlin.Net.IntegrationTest.G
          /// <summary>
          /// The GLV suite does not test against a graph that has null 
property values enabled.
          /// </summary>
 -        NullPropertyValuesNotSupportedOnTestGraph
 +        NullPropertyValuesNotSupportedOnTestGraph,
 +
 +        /// <summary>
 +        /// subgraph() is not supported yet
 +        /// </summary>
 +        SubgraphStepNotSupported,
 +
 +        /// <summary>
 +        /// tree() is not supported yet
 +        /// </summary>
-         TreeStepNotSupported,
- 
-         /// The translator does not preserve the numeric type of a float 
literal, so a value such as
-         /// <c>.5f</c> is emitted as a bare <c>0.5</c> and read back as a 
<c>double</c> rather than a <c>float</c>.
-         /// </summary>
-         FloatLiteralTypeNotPreserved
++        TreeStepNotSupported
      }
  }

Reply via email to