Dubbo Go Hessian2 Versions Save

caucho hessian2 implementation in Go for [apache/dubbo-go](https://github.com/apache/dubbo-go) which is compatible with [dubbo-hessian-lite](https://github.com/apache/dubbo-hessian-lite)

v1.12.4

5 months ago

Bugfixes

  • fix null encoding for nil pointer. #368

v1.12.3

6 months ago

Bugfixes

  • fix Decoder failed to decode int8/int16 type values of map field in struct. #366

v1.12.2

1 year ago

Bugfixes

  • fix pointer value set. #361

v1.12.1

1 year ago

Bugfixes

  • fix ref to wrong type of map for nil value. #357

v1.12.0

1 year ago
  • upgrade go from v1.13 to v1.17
  • using time.UnixMills api to release time scope limit
  • Deprecate these array types, including hessian.IntegerArray, hessian.ByteArray, hessian.ShortArray, hessian.BooleanArray, hessian.LongArray, hessian.FloatArray, hessian.DoubleArray, hessian.CharacterArray.
  • Support java wrapper types:
hessian type java type golang type
Integer java.lang.Integer *int32
Byte java.lang.Byte *byte
Short java.lang.Short *int16
Boolean java.lang.Boolean *bool
Long java.lang.Long *int64
Float java.lang.Float *float32
Double java.lang.Double *float64
Character java.lang.Character *hessian.Rune

v1.11.7

1 year ago
  • upgrade go from v1.13 to v1.17
  • using time.UnixMills api to release time scope limit

v1.11.6

1 year ago

Deprecate the following array types , which will not be supported in the next major version.

hessian.IntegerArray
hessian.ByteArray
hessian.ShortArray
hessian.BooleanArray
hessian.LongArray
hessian.FloatArray
hessian.DoubleArray
hessian.CharacterArray

more: https://github.com/apache/dubbo-go-hessian2/issues/349

v1.11.5

1 year ago

Bugfixes

  • fix empty slice encode/decode error. #341

v1.11.4

1 year ago

v1.11.3

1 year ago

Bugfixes

  • fix java enum decoding incorrectly. #332