-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update gomod #58
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also related AB#548696
Not sure why it's having an issue with the kubernetes libraries vs the third party one as this doesn't update anything related to those. Have to dig more. |
4429d24
4f06fda
to
4429d24
Compare
- update transitive dependencies for go - update only the compatible packages that don't require api changes (so known issue on protobuf and grpc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
worked through manual updates and excluded the packages that are incompatible.
efbcd41
This PR contains the following updates:
EDIT: Removed protobuf and grpc from this manually. - Sheldon/Andrii
v0.21.4
->v0.22.0
v1.2.0
->v1.5.3
v1.8.0
->v1.8.1
v1.14.0
->v1.15.0
v0.12.58
->v0.12.75
v1.0.0
->v1.0.1
v1.2.0
->v1.9.3
v1.8.2
->v1.8.4
Release Notes
bitfield/script (github.com/bitfield/script)
v0.22.0
Compare Source
golang/protobuf (github.com/golang/protobuf)
v1.5.3
Compare Source
Notable changes
*( #1363) jsonpb: accept 'null' as a valid representation of NullValue in unmarshal
v1.5.2
Compare Source
Notable changes:
v1.5.1
Compare Source
Notable changes:
v1.5.0
Compare Source
Overview
This marks the
ptypes
package as deprecated and upgrades the dependency ongoogle.golang.org/protobuf
to a pre-release version of v1.26.0. A subsequent patch release will update the dependency to v1.26.0 proper.Notable changes
v1.4.3
Compare Source
Notable changes:
v1.4.2
Compare Source
Notable changes:
v1.4.1
Compare Source
Notable changes:
v1.4.0
Compare Source
Descriptor
methodsgenerator
packageOverview
This release of the
github.com/golang/protobuf
module introduces a number of significant changes relative to the previous minor release. In particular, this module is now implemented in terms of the newgoogle.golang.org/protobuf
module, which is the next major revision of Go bindings for protocol buffers. From this point onwards, most of the development effort for Go protobufs will be dedicated to the new module, with minimal changes being made to this module.See the release notes for the new module for specific implementation details that may affect this release.
Backwards compatibility
This release maintains backwards compatibility with previous releases of this module. Any observable changes in behavior are to fix bugs, change unspecified behavior, or to make behavior more compliant with the protobuf specification. The compatibility document provides us the freedom to make changes in these areas.
Notable changes
Wire serialization
Wire serialization is now implemented in terms of the new
proto
package by calling out to the relevant functionality in that package (e.g.,proto.Marshal
andproto.Unmarshal
). There should be no observable changes in behavior other what is mentioned elsewhere in the release notes (e.g., behavior around errors or nil values).JSON and text serialization
The JSON and text format implementations have been ported to use protobuf reflection under the hood instead of relying on Go reflection. This provides flexibility as they can operate on any concrete message type that properly implements the new
proto.Message
interface.The implementations do not use the new
protojson
orprototext
packages in order to maintain a higher degree of backwards compatibility. Our analysis unfortunately showed us that too many tests rely on their output being stable by performing byte-for-byte comparisons. Even though the compatibility promise gives us the freedom to change the output, we have chosen not to do so for pragmatic reasons. The implementations are now functionally frozen (bugs and all) and will not receive future improvements. Users are encouraged to migrate to theprotojson
orprototext
packages instead.Well-known types
The well-known types declared under
ptypes
are moved to thegoogle.golang.org/protobuf
module. The packages continue to exist, but all declarations forward to ones in the new module.For a period of time, it is expected that the
protoc-gen-go
plugin continues to generate code with dependencies on the well-known types in this module. The import paths for the well-known types are determined by thego_package
option specified in the.proto
files. Since these files are managed by the main protocol buffers project, it will require a new release of the protobuf toolchain before the new import paths take effect. Depending on this module’s packages for well-known types is fine since they simply forward over to the new packages.While
descriptor
andplugin
are not packages for well-known types, they too have also been moved to the new module.Types registry
In order for dynamic usages of protobufs to operate correctly, there must be a unified registry between this module and the new
google.golang.org/protobuf
module. Theprotoregistry
package is the primary registry for all protobuf files that are linked into a Go program. The registration functions (e.g.,proto.RegisterType
) in this package forward to the global registries in that module, and the lookup functions (e.g.,proto.MessageType
) in this package source from the global registries in that module.Nil values
Use of the
google.golang.org/protobuf
module for the underlying implementation means that semantics for nil values may have changed. See that module’s release notes for details.Errors
A consequence of using the
google.golang.org/protobuf
module as the underlying implementation means that the text for some errors may change in trivial ways. This may break brittle tests depending on the error message. See that module’s release notes for details.Generated code
The
protoc-gen-go
plugin in this module is now a thin wrapper over theprotoc-gen-go
plugin in thegoogle.golang.org/protobuf
module. As a result, there are many changes to the generated code. See that module’s release notes for details. Users should migrate to use the newprotoc-gen-go
plugin instead of the old one. Code generated by either plugin should be compatible with either module.For backward compatibility purposes, the
protoc-gen-go
plugin in this module continues to support generation of gRPC bindings, while theprotoc-gen-go
plugin in the new module does not.Upcoming breakage changes
Per the compatibility agreement for Go protobufs, we promise to make announcements about deliberate or potentially breaking changes 6 months in advance.
None of these changes are effective yet in this release.
Deprecation of
Descriptor
methodsThe
Descriptor
methods on generated messages are deprecated and may be removed in the future.The
descriptor.Message
type is deprecated as fewer and fewer message types in the future will implement thedescriptor.Message
interface. Existing usages should migrate to the newproto.Message
interface.The
descriptor.ForMessage
function is also deprecated. Users should migrate the code to use protobuf reflection to access descriptor information.Removal of
generator
packageThe
generator
package is an internal implementation detail ofprotoc-gen-go
and existed before the internal package mechanism. It has long been exempt from the compatibility promise. A future release of this module will remove the package. Existing users must migrate to the newcompiler/protogen
package, which is a stable API for implementing protoc plugins, or fork the existinggenerator
package.Similarly, the
grpc
package is also an internal implementation detail ofprotoc-gen-go
and will also be deleted in a future release of this module.v1.3.5
Compare Source
Notable changes:
go.mod
Go version togo 1.9
.v1.3.4
Compare Source
Notable changes:
google/protobuf/*.proto
togithub.com/protocolbuffers/protobuf
v3.11.4.protoc-gen-go
output to avoid post-gofmt
variation between go1.13 and go1.14.v1.3.3
Compare Source
Notable changes:
v1.3.2
Compare Source
Notable changes:
os.Stderr
to uselog.Printf
v1.3.1
Compare Source
Notable change:
go.mod
has now been reduced to only the standard library.v1.3.0
Compare Source
Notable changes:
.pb.go
files generated by[email protected]
will require the[email protected]
package to workgorilla/mux (github.com/gorilla/mux)
v1.8.1
Compare Source
What's Changed
authenticationMiddleware
initialization in theREADME.md
file by @amustaque97 in https://github.com/gorilla/mux/pull/693Single Page Application
example inREADME.md
file by @amustaque97 in https://github.com/gorilla/mux/pull/678New Contributors
Full Changelog: gorilla/mux@v1.8.0...v1.8.1
magefile/mage (github.com/magefile/mage)
v1.15.0
Compare Source
Changelog
9e91a03
Update CI (#466)9199872
fix erroneous docstring of sh.Exec() (#452)02bde0b
Update jQuery to 3.5.0 (#458)1b8774a
-d dir contains magefiles stop with "No .go files marked with the mage build tag..." (#447) (#448)a920604
mage: cancel context on SIGINT (#313)pterm/pterm (github.com/pterm/pterm)
v0.12.75
Compare Source
What's Changed
Fixes 🔧
PanelPrinter
ignored the set Writer by @MarvinJWendt in https://github.com/pterm/pterm/pull/614Full Changelog: pterm/pterm@v0.12.74...v0.12.75
v0.12.74
Compare Source
What's Changed
Exciting New Features 🎉
CallerOffset
inpterm.NewSlogHandler
by @MarvinJWendt in https://github.com/pterm/pterm/pull/609Other Changes
interactive_multiselect
examples by @MarvinJWendt in https://github.com/pterm/pterm/pull/606Full Changelog: pterm/pterm@v0.12.73...v0.12.74
v0.12.73
Compare Source
What's Changed
Fixes 🔧
LogLevelDisabled
does no longer print anything by @MarvinJWendt in https://github.com/pterm/pterm/pull/601Other Changes
New Contributors
Full Changelog: pterm/pterm@v0.12.72...v0.12.73
v0.12.72
Compare Source
What's Changed
Fixes 🔧
ctrl+c
in interactive printers by default by @panbanda in https://github.com/pterm/pterm/pull/593Other Changes
New Contributors
Full Changelog: pterm/pterm@v0.12.71...v0.12.72
v0.12.71
Compare Source
What's Changed
Fixes 🔧
Full Changelog: pterm/pterm@v0.12.70...v0.12.71
v0.12.70
: Heatmap Printer 🎉Compare Source
What's Changed
Exciting New Features 🎉
Fixes 🔧
Full Changelog: pterm/pterm@v0.12.69...v0.12.70
v0.12.69
Compare Source
What's Changed
Exciting New Features 🎉
New Contributors
Full Changelog: pterm/pterm@v0.12.68...v0.12.69
v0.12.68
Compare Source
What's Changed
Fixes 🔧
New Contributors
Full Changelog: pterm/pterm@v0.12.67...v0.12.68
v0.12.67
: Pretty slog handler!Compare Source
What's Changed
Exciting New Features 🎉
Full Changelog: pterm/pterm@v0.12.66...v0.12.67
v0.12.66
Compare Source
What's Changed
Exciting New Features 🎉
Other Changes
Full Changelog: pterm/pterm@v0.12.65...v0.12.66
v0.12.65
Compare Source
What's Changed
Fixes 🔧
Full Changelog: pterm/pterm@v0.12.64...v0.12.65
v0.12.64
Compare Source
What's Changed
Exciting New Features 🎉
New Contributors
Full Changelog: pterm/pterm@v0.12.63...v0.12.64
v0.12.63
Compare Source
What's Changed
Exciting New Features 🎉
select
printer by @alirezaarzehgar in https://github.com/pterm/pterm/pull/530Fixes 🔧
Other Changes
keys.Space
as unsafe whenFilter
is enabled. by @MarvinJWendt in https://github.com/pterm/pterm/pull/519reviewdog
by @MarvinJWendt in https://github.com/pterm/pterm/pull/521golangci-lint
action by @MarvinJWendt in https://github.com/pterm/pterm/pull/532New Contributors
Full Changelog: pterm/pterm@v0.12.62...v0.12.63
v0.12.62
Compare Source
What's Changed
Fixes 🔧
TreePrinter
is not styled by @dedefer in https://github.com/pterm/pterm/pull/511New Contributors
Full Changelog: pterm/pterm@v0.12.61...v0.12.62
v0.12.61
Compare Source
What's Changed
Fixes 🔧
Full Changelog: pterm/pterm@v0.12.60...v0.12.61
v0.12.60
Compare Source
What's Changed
Exciting New Features 🎉
Fixes 🔧
Other Changes
Full Changelog: pterm/pterm@v0.12.59...v0.12.60
v0.12.59
Compare Source
What's Changed
Exciting New Features 🎉
Other Changes
New Contributors
Full Changelog: pterm/pterm@v0.12.58...v0.12.59
sheldonhull/magetools (github.com/sheldonhull/magetools)
v1.0.1
Compare Source
🎉 Feature
trunk
for automation on trunk installation, upgrades, and setup.🤖 CI & Build
🐛 Bug Fix
go:lint
incorrectly statedgotestsum
found. This is fixed.🔨 Refactor
magetoolsutils
output to be less verbose and output to debug when matching condition instead of Info level, as this has to be used in many functions and is noisy.ci.IsCI()
to detect GitHub specifically, Gitlab, and then resolveCI=1
as generic CI instead.sirupsen/logrus (github.com/sirupsen/logrus)
v1.9.3
Compare Source
Full Changelog: sirupsen/logrus@v1.9.2...v1.9.3
v1.9.2
Compare Source
Full Changelog: sirupsen/logrus@v1.9.1...v1.9.2
v1.9.1
Compare Source
What's Changed
New Contributors
Full Changelog: sirupsen/logrus@v1.9.0...v1.9.1
v1.9.0
Compare Source
v1.8.3
Compare Source
What's Changed
New Contributors
Full Changelog: sirupsen/logrus@v1.8.2...v1.8.3
v1.8.2
Compare Source
What's Changed
New Contributors
Full Changelog: sirupsen/logrus@v1.8.1...v1.8.2
v1.8.1
Compare Source
v1.8.0
Compare Source
Correct versioning number replacing v1.7.1
v1.7.1
Compare Source
Code quality:
Fixes:
Features:
v1.7.0
: Add new BufferPool and LogFunction APIsCompare Source
<LogLevel>Fn()
functions have been addedConfiguration
📅 Schedule: Branch creation - "every weekday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.