Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/protobuf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.3
Choose a base ref
...
head repository: golang/protobuf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.5.2
Choose a head ref
  • 7 commits
  • 12 files changed
  • 2 contributors

Commits on Mar 3, 2021

  1. ptypes: deprecate the package (#1217)

    Deprecate the ptypes package since all the equivalent functionality
    is now directly generated with the well-known types themselves.
    dsnet committed Mar 3, 2021
    Configuration menu
    Copy the full SHA
    eccd77d View commit details
    Browse the repository at this point in the history
  2. all: rely on protodesc.ToFileDescriptorProto (#1214)

    Use protodesc.ToFileDescriptorProto to retrieve the raw descriptors
    for legacy support instead of the undocumented ProtoLegacyRawDesc method
    that we expect v2 to provide.
    
    This change will cause the legacy proto package to incur a dependency
    on the descriptorpb package.
    dsnet committed Mar 3, 2021
    Configuration menu
    Copy the full SHA
    acacf81 View commit details
    Browse the repository at this point in the history
  3. Switch from Travis-CI to GitHub actions (#1286)

    Travis-CI is dead. GitHub actions is the new hotness.
    The minimally supported version is Go1.11 to make use of modules.
    dsnet committed Mar 3, 2021
    Configuration menu
    Copy the full SHA
    78b1f09 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2021

  1. Configuration menu
    Copy the full SHA
    f746d3b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a36a1a1 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2021

  1. jsonpb: restore previous behavior for handling nulls and JSONPBUnmars…

    …haler (#1300)
    
    When a JSON null is encountered for a field which implements JSONPBUnmarshaler,
    jsonpb will now call the unmarshal method, instead of just skipping the field.
    krzysztofdrys committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    af94003 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2021

  1. all: deprecate the module (#1306)

    Use the new deprecation feature to mark this module as deprecated.
    See https://golang.org/issue/40357.
    
    Considerations:
    * google.golang.org/protobuf/cmd/[email protected] 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.
    dsnet committed Mar 29, 2021
    Configuration menu
    Copy the full SHA
    ae97035 View commit details
    Browse the repository at this point in the history
Loading