- Jan 08, 2023
-
-
Shengjing Zhu authored
-
Shengjing Zhu authored
-
- Dec 29, 2022
-
-
Shengjing Zhu authored
-
Shengjing Zhu authored
-
- Oct 30, 2022
-
-
Shengjing Zhu authored
-
Shengjing Zhu authored
-
Shengjing Zhu authored
-
Shengjing Zhu authored
-
Shengjing Zhu authored
-
Shengjing Zhu authored
So we can use old protoc-gen-go-1-3 to generate pb.go files but use golang-github-golang-protobuf-1-5-dev same time.
-
Shengjing Zhu authored
Update to upstream version '1.3.5' with Debian dir bdab896378ad7ac2c0019721d4107d5e97164405
-
Shengjing Zhu authored
-
Shengjing Zhu authored
-
Shengjing Zhu authored
-
- Dec 01, 2021
-
-
Aloïs Micard authored
See: https://salsa.debian.org/go-team/infra/pkg-go-tools Gbp-Dch: Ignore
-
- Sep 08, 2021
-
-
- Mar 29, 2021
-
-
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.
-
- Mar 24, 2021
-
-
Krzysztof Dryś authored
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.
-
- Mar 18, 2021
- Mar 03, 2021
-
-
Joe Tsai authored
Travis-CI is dead. GitHub actions is the new hotness. The minimally supported version is Go1.11 to make use of modules.
-
Joe Tsai authored
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.
-
Joe Tsai authored
Deprecate the ptypes package since all the equivalent functionality is now directly generated with the well-known types themselves.
-
- Oct 15, 2020
-
-
Herbie Ong authored
Negative nanosecond should not have negative sign after decimal point. Add check for max and min seconds. Fixes #1219.
-
- Sep 25, 2020
-
-
Joe Tsai authored
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.
-
- Sep 24, 2020
-
-
Christian Persson authored
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.
-
- Jul 13, 2020
-
-
Balint Reczey authored
-
Balint Reczey authored
-
Balint Reczey authored
-
- Jul 09, 2020
-
-
Balint Reczey authored
Upstream dropped regenerate.sh and carrying this code in packaging is too much work for questionable gain.
-
Balint Reczey authored
-
Balint Reczey authored
-
Balint Reczey authored
-
- Jun 30, 2020
-
-
Balint Reczey authored
-
Balint Reczey authored
Update to upstream version '1.4.2' with Debian dir 4957d7e3f4e258d60c10464b4d9af2b3e0206116
-
Balint Reczey authored
-
- May 14, 2020
-
-
Joe Tsai authored
-
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.
-
- May 11, 2020
-
-
Isaac Schwabacher authored
The in argument is a []byte. Using the %v print flag prints this list of integers instead of as a string representation of the enum value. Use %q instead.
-
- May 04, 2020
-
-
Joe Tsai authored
-