You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by wo...@apache.org on 2020/09/03 14:51:14 UTC

[dubbo-go-hessian2] branch 1.6 updated (7370d4e -> a93b11c)

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

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


    from 7370d4e  Merge pull request #217 from apache/master
     add 9b32032  [refer dubbo 2.7.6] attachment type from map[string]stiring to map[string]interface{}  (#218)
     add 2d98319  java.sql.Time
     add e9a300f  java.sql.Time simple test
     add a0458bd  java.sql.Time java.sql.Date
     add a9869e3  fix errors
     add 8935be6  compare time with unix nano
     add 9de5cb6  add comment and optimize
     add ceba5b3  refactor code
     add 68ebf21  add license
     add b76a7ff  optimize code
     add d3e7ea2  Merge pull request #219 from zhangshen023/master
     add 067bdf6  update readme
     add 94c6718  add java_time
     add 396b558  delete err code
     add 539ecdc  delete fun
     add 97e42f6  add localdateatime add second, nano
     add ef54e11  Merge pull request #221 from cyb-code/master
     new a93b11c  Merge pull request #222 from apache/master

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.md                                          |   2 +
 hessian.go                                         |   4 +-
 hessian_test.go                                    |  15 ++-
 java8_time.go                                      |   7 +-
 java8_time/{local_date.go => offset_date_time.go}  |  15 +--
 java8_time/{local_date.go => offset_time.go}       |  15 +--
 java8_time/{year.go => zone_off_set.go}            |  14 +-
 .../{local_date_time.go => zoned_date_time.go}     |  15 ++-
 java8_time_test.go                                 |   6 +-
 java_sql_time.go                                   | 145 +++++++++++++++++++++
 null_test.go => java_sql_time/date.go              |  49 +++++--
 .../month_day.go => java_sql_time/java_sql_time.go |  21 ++-
 null_test.go => java_sql_time/time.go              |  51 +++++---
 java_sql_time_test.go                              | 102 +++++++++++++++
 request.go                                         |  17 +--
 request_test.go                                    |   8 +-
 response.go                                        |  23 ++--
 response_test.go                                   |   5 +-
 test_hessian/src/main/java/test/Hessian.java       |  23 +++-
 test_hessian/src/main/java/test/TestJava8Time.java |   6 +-
 .../test/{TestString.java => TestJavaSqlTime.java} |  30 +++--
 21 files changed, 457 insertions(+), 116 deletions(-)
 copy java8_time/{local_date.go => offset_date_time.go} (72%)
 copy java8_time/{local_date.go => offset_time.go} (73%)
 copy java8_time/{year.go => zone_off_set.go} (77%)
 copy java8_time/{local_date_time.go => zoned_date_time.go} (70%)
 create mode 100644 java_sql_time.go
 copy null_test.go => java_sql_time/date.go (58%)
 copy java8_time/month_day.go => java_sql_time/java_sql_time.go (73%)
 copy null_test.go => java_sql_time/time.go (58%)
 create mode 100644 java_sql_time_test.go
 copy test_hessian/src/main/java/test/{TestString.java => TestJavaSqlTime.java} (62%)


[dubbo-go-hessian2] 01/01: Merge pull request #222 from apache/master

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wongoo pushed a commit to branch 1.6
in repository https://gitbox.apache.org/repos/asf/dubbo-go-hessian2.git

commit a93b11c978d679805097a4f940c2fc5cd8d6c808
Merge: 7370d4e ef54e11
Author: 望哥 <ge...@163.com>
AuthorDate: Thu Sep 3 22:49:18 2020 +0800

    Merge pull request #222 from apache/master
    
    merge for v1.6.3

 README.md                                          |   2 +
 hessian.go                                         |   4 +-
 hessian_test.go                                    |  15 ++-
 java8_time.go                                      |   7 +-
 java8_time.go => java8_time/offset_date_time.go    |  25 ++--
 java8_time.go => java8_time/offset_time.go         |  25 ++--
 java8_time.go => java8_time/zone_off_set.go        |  24 ++--
 java8_time.go => java8_time/zoned_date_time.go     |  26 ++--
 java8_time_test.go                                 |   6 +-
 java_sql_time.go                                   | 145 +++++++++++++++++++++
 java8_time.go => java_sql_time/date.go             |  58 ++++++---
 java8_time.go => java_sql_time/java_sql_time.go    |  24 ++--
 java8_time.go => java_sql_time/time.go             |  58 ++++++---
 java_sql_time_test.go                              | 102 +++++++++++++++
 request.go                                         |  17 +--
 request_test.go                                    |   8 +-
 response.go                                        |  23 ++--
 response_test.go                                   |   5 +-
 test_hessian/src/main/java/test/Hessian.java       |  23 +++-
 test_hessian/src/main/java/test/TestJava8Time.java |   6 +-
 .../src/main/java/test/TestJavaSqlTime.java        |  43 +++---
 21 files changed, 493 insertions(+), 153 deletions(-)