Skip to content

Latest commit

 

History

History
115 lines (62 loc) · 5.56 KB

CHANGELOG.md

File metadata and controls

115 lines (62 loc) · 5.56 KB

Changelog

Unreleased

v1.5.0 - 2024-06-05

Improvements

  • #119 The functions proto.Marshal, proto.Unmarshal, and proto.MessageName, as well as the jsonpb marshaling and unmarshaling methods now all support official google.golang.org/protobuf types. This allows users to gradually start using these types instead of gogo proto without needing to refactor all of their code with type switch statements.

v1.4.12 - 2024-03-20

Improvements

  • #115 Move any type from cosmos-sdk/codec/types to types/any.

v1.4.11 - 2023-08-18

Improvements

  • #83 Bump golang.org/x/exp to latest version. This solves API incompatibilities for users bumping x/exp to latest version in their app.

v1.4.10 - 2023-05-11

Improvements

  • #67 Remove warning about double registration. The Cosmos SDK does purposely double-registration so this warning is not useful.

v1.4.9 - 2023-05-03

Breaking changes

  • #62 Change public API for MergedFileDescriptors, MergedGlobalFileDescriptors, etc. introduced in v1.4.8, retracting that release.

Improvements

  • #62 Add the proto.HybridResolver var which exposes the merged *protoregistry.Files functionality in a high-performance way. Also add the proto.GogoResolver var.

v1.4.8 - 2023-04-18

RETRACTED

Breaking changes

  • #61 Use all available cores when merging registries. Existing calls to proto.MergedRegistry() do not need to change. The signature of proto.MergedFileDescriptors has changed to accept explicit arguments for the "global files" and "app files". Calls to proto.MergedFileDescriptors() should change to proto.MergedGlobalFileDescriptors() or proto.MergedGlobalFileDescriptorsWithValidation().

Improvements

  • #59 Reuse buffers and gzip readers to reduce memory allocations during MergedFileDescriptors.
  • #60 Skip work to check import path and file descriptor differences during MergedFileDescriptors, when not in debug mode.

v1.4.7 - 2023-03-30

Bug Fixes

  • #55 Get a file descriptor diff only when debug is enabled.

v1.4.6 - 2023-02-21

Improvements

  • #45 Remove the StdErr warning about file descriptor mismatches, which was deemed unclear and too invasive.

v1.4.5 - 2023-02-20

Improvements

  • #43 Relax runtime linter checks introduced in #37: instead of throwing an error, simply log a warning to StdErr. Also provide a helper function DebugFileDescriptorsMismatch to debug these errors.
  • #37 Add MergedFileDescriptors and MergedRegistry to retrieve a registry with merged file descriptors from both gogo and protoregistry.

Bug Fixes

  • #34 Allow empty package name, as per gogo original behavior. Fix regression introduced in v1.4.4

v1.4.4 - 2023-01-30

Improvements

  • #32 The prtoc-gen-gogo generator requires that all proto files import paths match their fully-qualified package name.

v1.4.3 - 2022-10-14

Bug Fixes

  • #24 Fix CompactTextString panics with nested Anys and private fields.
  • #14 Fix make regenerate.

v1.4.2 - 2022-09-14

Features

  • #13 Add AllFileDescriptors function.

Improvements

  • #8 Fix typo in doc.go.
  • #8 Support for merging messages implementing Merger which are embedded by value.
  • #8 Use reflect.Value.String() for String kinds in proto equal.

v1.4.1 - 2022-08-30

Improvements

  • #6 Add buf.yaml for cosmos/gogo-proto module.

Bug Fixes

  • 226206f Fixed order of imports, make stable generation result.

v1.4.0 - 2022-03-18