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 Loading
base: v1.4.2
Choose a base ref
...
head repository: golang/protobuf Loading
compare: v1.5.1
Choose a head ref
  • 8 commits
  • 13 files changed
  • 3 contributors

Commits on Sep 24, 2020

  1. proto: convert integer to rune before converting to string (#1210)

    Go 1.15 introduced a new `go vet` warning
    (https://golang.org/doc/go1.15#vet) for conversions of the form
    `string(x)` where `x` is an integer type other than `rune` or `byte`.
    This warning is enabled by default when running `go test`. As a
    consequence, running `go test github.com/golang/protobuf/proto`
    results in a build failure prior to this commit.
    saser committed Sep 24, 2020
    Configuration menu
    Copy the full SHA
    3860b27 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2020

  1. travis.yml: update tested versions of Go (#1211)

    While this module is deprecated, it is still important to ensure
    that it continues to work with higher versions of Go.
    Update travis.yml to test up to Go1.15.
    dsnet committed Sep 25, 2020
    Configuration menu
    Copy the full SHA
    91c84e0 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2020

  1. jsonpb: Fix marshaling of Duration (#1221)

    Negative nanosecond should not have negative sign after decimal point.
    Add check for max and min seconds.
    
    Fixes #1219.
    cybrcodr committed Oct 15, 2020
    Configuration menu
    Copy the full SHA
    4846b58 View commit details
    Browse the repository at this point in the history

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
Loading