You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/09/17 10:26:45 UTC

[dubbo-go-hessian2] branch master updated (e0c085c -> 74a8ece)

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

alexstocks pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-go-hessian2.git.


    from e0c085c  release note for v1.9.3
     new 4d74555  feat(*): add Integer[] serializer
     new bc7edd2  feat(*): support wrapper classes for Java basic types
     new 8512ed3  style(*): add nolint
     new b470210  feat(*): support java Character[] & format unit test
     new feebbd1  feat(*): use uint8 as Byte & use int16 as Short
     new 9aafe3b  feat(*): add cross language encode/decode test
     new 74a8ece  Merge pull request #278 from Mulavar/feat/wrap-clazz

The 678 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:
 array.go                                           | 257 +++++++++++++++++++++
 array_test.go                                      | 148 ++++++++++++
 object_test.go                                     |  50 ++++
 output/output.go                                   |   8 +
 output/testfuncs/wrapper_class_array.go            |  86 +++++++
 ...JavaSqlTime.java => TestWrapperClassArray.java} |  32 ++-
 .../test/java/unit/GoWrapperClassArrayTest.java    |  44 ++++
 7 files changed, 613 insertions(+), 12 deletions(-)
 create mode 100644 array.go
 create mode 100644 array_test.go
 create mode 100644 output/testfuncs/wrapper_class_array.go
 copy test_hessian/src/main/java/test/{TestJavaSqlTime.java => TestWrapperClassArray.java} (51%)
 create mode 100644 test_hessian/src/test/java/unit/GoWrapperClassArrayTest.java