You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by va...@apache.org on 2023/02/09 19:46:56 UTC

[tinkerpop] branch master updated (81fc436863 -> 06d2d02167)

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

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


    from 81fc436863 Merge pull request #1939 from Bit-Quill/cole/go-per-request-settings
     add 97dd2948de Bumped eslint to ecmaVersion 2021
     add e3da9c2f37 Merge pull request #1959 from Bit-Quill/cole/eslint-version-bump
     add b6002232e5 added badges linking to GLV repository pages
     add 79a01c1544 Merge pull request #1966 from Bit-Quill/cole/addBadges
     add 12ca0a246f patch: Fixing generateUserAgent() to handle null and undefined properly
     add 7d64d34eab patch: Small refactoring
     add a4f6ad17ff Merge pull request #1960 from iAmmarTahir/fix/gremlin-js-null-check
     add d9abdb0fd9 TINKERPOP-2810 allow newer aiohttp versions
     add 2141f42135 Merge pull request #1958 from phillipuniverse/backport-relax-aiohttp
     add 36d2962f39 Throw explaining exception when reading unsupported GraphBinary type
     add 0e9f24d3c2 Merge pull request #1941 from tormodhau/TINKERPOP-2853
     add 95834c8bc2 merge from 3.5-dev
     new 06d2d02167 merge from 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:
 README.asciidoc                                    |  9 +++++-
 .../IO/GraphBinary/TypeSerializerRegistry.cs       |  6 ++--
 .../Types/Sample/SamplePersonSerializerTests.cs    | 35 ++++++++++++++++++++++
 .../javascript/gremlin-javascript/.eslintrc.js     |  2 +-
 .../javascript/gremlin-javascript/lib/utils.js     | 22 +++++++++++---
 gremlin-python/src/main/python/setup.py            |  1 +
 6 files changed, 67 insertions(+), 8 deletions(-)


[tinkerpop] 01/01: merge from 3.6-dev

Posted by va...@apache.org.
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

commit 06d2d02167e478a4cf4eb08ae5a9081743edf16b
Merge: 81fc436863 95834c8bc2
Author: Valentyn Kahamlyk <va...@bitquilltech.com>
AuthorDate: Thu Feb 9 11:46:46 2023 -0800

    merge from 3.6-dev

 README.asciidoc                                    |  9 +++++-
 .../IO/GraphBinary/TypeSerializerRegistry.cs       |  6 ++--
 .../Types/Sample/SamplePersonSerializerTests.cs    | 35 ++++++++++++++++++++++
 .../javascript/gremlin-javascript/.eslintrc.js     |  2 +-
 .../javascript/gremlin-javascript/lib/utils.js     | 22 +++++++++++---
 gremlin-python/src/main/python/setup.py            |  1 +
 6 files changed, 67 insertions(+), 8 deletions(-)

diff --cc gremlin-dotnet/src/Gremlin.Net/Structure/IO/GraphBinary/TypeSerializerRegistry.cs
index 878152ba85,eca99cf854..58cca37806
--- a/gremlin-dotnet/src/Gremlin.Net/Structure/IO/GraphBinary/TypeSerializerRegistry.cs
+++ b/gremlin-dotnet/src/Gremlin.Net/Structure/IO/GraphBinary/TypeSerializerRegistry.cs
@@@ -221,11 -211,10 +221,11 @@@ namespace Gremlin.Net.Structure.IO.Grap
                  }
              }
  
-             throw new InvalidOperationException($"No serializer found for type ${valueType}.");
+             throw new InvalidOperationException($"No serializer found for type '{valueType}'.");
          }
  
 -        private static bool IsDictionaryType(Type type, out Type keyType, out Type valueType)
 +        private static bool IsDictionaryType(Type type, [NotNullWhen(returnValue: true)] out Type? keyType,
 +            [NotNullWhen(returnValue: true)] out Type? valueType)
          {
              var maybeInterfaceType = type
                  .GetInterfaces()
diff --cc gremlin-python/src/main/python/setup.py
index 15626a664a,bec7142b11..2ca7e9a167
--- a/gremlin-python/src/main/python/setup.py
+++ b/gremlin-python/src/main/python/setup.py
@@@ -46,8 -46,9 +46,9 @@@ version = __version__.versio
  
  install_requires = [
      'nest_asyncio',
 -    'aiohttp>=3.8.0,<=4.0.0',
 +    'aiohttp>=3.8.0,<4.0.0',
      'aenum>=1.4.5,<4.0.0',
+     'six>=1.10.0,<2.0.0',
      'isodate>=0.6.0,<1.0.0'
  ]