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

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


The following commit(s) were added to refs/heads/dotnet-http-connection by this 
push:
     new b49183940a clean up gb1 token and re-enable GHA for .net
b49183940a is described below

commit b49183940aa30203fc2404954226872c4fb9e640
Author: Yang Xia <[email protected]>
AuthorDate: Thu Mar 12 11:19:38 2026 -0700

    clean up gb1 token and re-enable GHA for .net
---
 .github/workflows/build-test.yml                   | 68 +++++++++++-----------
 .../Structure/IO/SerializationTokens.cs            |  5 --
 2 files changed, 34 insertions(+), 39 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 3d6eb331cd..ed9df6163e 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -339,40 +339,40 @@ jobs:
           EXCLUDE="${EXCLUDE_MODULES/,-:gremlin-python},$EXCLUDE_FOR_GLV"
           mvn clean install -pl $EXCLUDE -q -DskipTests -Dci
           mvn verify -pl gremlin-python
-#  dotnet:
-#    name: .NET
-#    timeout-minutes: 20
-#    needs: cache-gremlin-server-docker-image
-#    runs-on: ubuntu-latest
-#    steps:
-#      - uses: actions/checkout@v6
-#      - name: Set up JDK11
-#        uses: actions/setup-java@v5
-#        with:
-#          java-version: '11'
-#          distribution: 'temurin'
-#      - name: Set up .NET 8.0.x
-#        uses: actions/setup-dotnet@v4
-#        with:
-#          dotnet-version: '8.0.x'
-#      - name: Get Cached Server Base Image
-#        uses: actions/cache@v5
-#        id: gremlin-server-test-docker-image
-#        with:
-#          path: |
-#            ./gremlin-server/*
-#            ~/.m2/repository/org/apache/tinkerpop/*
-#          key: ${{ github.sha }}
-#      - name: Load Docker Image
-#        working-directory: ./gremlin-server
-#        run: docker load --input gremlin-server.tar
-#      - name: Build with Maven
-#        run: |
-#          touch gremlin-dotnet/src/.glv
-#          touch gremlin-dotnet/test/.glv
-#          
EXCLUDE="${EXCLUDE_MODULES/-:gremlin-dotnet-source,-:gremlin-dotnet-tests,},$EXCLUDE_FOR_GLV"
-#          mvn clean install -pl $EXCLUDE -q -DskipTests -Dci
-#          mvn verify -pl :gremlin-dotnet,:gremlin-dotnet-tests -P 
gremlin-dotnet
+  dotnet:
+    name: .NET
+    timeout-minutes: 20
+    needs: cache-gremlin-server-docker-image
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v6
+      - name: Set up JDK11
+        uses: actions/setup-java@v5
+        with:
+          java-version: '11'
+          distribution: 'temurin'
+      - name: Set up .NET 8.0.x
+        uses: actions/setup-dotnet@v4
+        with:
+          dotnet-version: '8.0.x'
+      - name: Get Cached Server Base Image
+        uses: actions/cache@v5
+        id: gremlin-server-test-docker-image
+        with:
+          path: |
+            ./gremlin-server/*
+            ~/.m2/repository/org/apache/tinkerpop/*
+          key: ${{ github.sha }}
+      - name: Load Docker Image
+        working-directory: ./gremlin-server
+        run: docker load --input gremlin-server.tar
+      - name: Build with Maven
+        run: |
+          touch gremlin-dotnet/src/.glv
+          touch gremlin-dotnet/test/.glv
+          
EXCLUDE="${EXCLUDE_MODULES/-:gremlin-dotnet-source,-:gremlin-dotnet-tests,},$EXCLUDE_FOR_GLV"
+          mvn clean install -pl $EXCLUDE -q -DskipTests -Dci
+          mvn verify -pl :gremlin-dotnet,:gremlin-dotnet-tests -P 
gremlin-dotnet
   neo4j-gremlin:
     name: neo4j-gremlin
     timeout-minutes: 20
diff --git a/gremlin-dotnet/src/Gremlin.Net/Structure/IO/SerializationTokens.cs 
b/gremlin-dotnet/src/Gremlin.Net/Structure/IO/SerializationTokens.cs
index 6c4a8deefd..0defc97f11 100644
--- a/gremlin-dotnet/src/Gremlin.Net/Structure/IO/SerializationTokens.cs
+++ b/gremlin-dotnet/src/Gremlin.Net/Structure/IO/SerializationTokens.cs
@@ -38,11 +38,6 @@ namespace Gremlin.Net.Structure.IO
         /// </summary>
         public const string GraphSON3MimeType = 
"application/vnd.gremlin-v3.0+json";
 
-        /// <summary>
-        ///     The MIME type for GraphBinary 1.
-        /// </summary>
-        public const string GraphBinary1MimeType = 
"application/vnd.graphbinary-v1.0";
-
         /// <summary>
         ///     The MIME type for GraphBinary 4.0.
         /// </summary>

Reply via email to