Skip to content
Snippets Groups Projects
  1. Jan 08, 2023
  2. Dec 29, 2022
  3. Oct 30, 2022
  4. Dec 01, 2021
  5. Sep 08, 2021
  6. Mar 29, 2021
    • Joe Tsai's avatar
      all: deprecate the module (#1306) · ae970356
      Joe Tsai authored
      Use the new deprecation feature to mark this module as deprecated.
      See https://golang.org/issue/40357.
      
      Considerations:
      * google.golang.org/protobuf/cmd/protoc-gen-go@v1.25.0 and below
      used to generate a hard dependency on github.com/golang/protobuf,
      which would be frustrating since it would force an explicit dependency
      on a deprecated module. However, that is no longer the case in v1.26.0.
      * google.golang.org/protobuf and github.com/golang/protobuf have
      a cyclic dependency on each other. However, this should not be a problem
      since proposal 40357 only marks direct dependencies in the go.mod file,
      rather than all transitive dependencies in the go.sum file.
  7. Mar 24, 2021
  8. Mar 18, 2021
  9. Mar 03, 2021
  10. Oct 15, 2020
  11. Sep 25, 2020
  12. Sep 24, 2020
  13. Jul 13, 2020
  14. Jul 09, 2020
  15. Jun 30, 2020
  16. May 14, 2020
    • Joe Tsai's avatar
    • Joe Tsai's avatar
      proto: make InternalMessageInfo functional (#1129) · 07c14f10
      Joe Tsai authored
      The InternalMessageInfo type only exists to implement the
      XXX methods on generated messages where those methods were
      only ever intended to be called by this module itself.
      
      Since v1.4.0, this module no longer relies on the XXX methods,
      so the InternalMessageInfo and its implementation is supposed
      to be dead code. Unfortunately, there are external usages that
      violate our compatibility agreement and either directly call
      the XXX methods or indirectly call it because some library
      type-asserts to the existence of these methods.
      
      This change adds minimal support for InternalMessageInfo by
      just calling out directly to the v2 implementation.
  17. May 11, 2020
  18. May 04, 2020
Loading