chore(deps): update dependency ext/glog to v0.7.1 #16
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.6.0
->v0.7.1
Release Notes
google/glog (ext/glog)
v0.7.1
: google-glog 0.7.1Compare Source
This is a maintenance release that addresses several issues found in glog 0.7.0. In particular, we fixed Android detection (#1094) and properly format unknown stack frames now (#1092).
Full Changelog: google/glog@v0.7.0...v0.7.1
v0.7.0
: google-glog 0.7.0Compare Source
In this release, glog underwent a major overhaul to take advantage of C++14 language and library features. Among the many changes, the public API has also been extended to use the more up-to-date standard library types (notably
chrono
).Highlights
Compatibility
glog aims to maintain source compatibility with the previous release. We did our best to ensure such compatibility in this version as well. However, downstream clients must recompile against the new glog version due to ABI incompatible changes.
Deprecations
A number of functions, methods, and types have been deprecated in favor of more uniform interface.
google::LogMessage::getMessageTime
has been superseded bygoogle::LogMessage::time
.google::LogMessageTime::timestamp
has been superseded bygoogle::LogMessageTime::when
.google::LogMessageTime::gmtoff
has been superseded bygoogle::LogMessageTime::gmtoffset
.google::EnableLogCleaner(unsigned)
has been superseded bygoogle::EnableLogCleaner(std::chrono::minutes)
.google::LogSink::send
acceptingstd::tm
(deprecated since glog 0.6.0) has been superseded bygoogle::LogSink::send
to acceptgoogle::LogMessageTime
instead.google::LogMessageInfo
and the custom prefix callback accepting this type have been superseded bygoogle::LogMessage
. To customize the log line prefix use thegoogle::InstallPrefixFormatter
function instead of thegoogle::InitGoogleLogging
overload.Further changes
google::LogSeverity
has been converted to an unscopedenum
. This can result in compilation issues if implicit conversion between anint
andgoogle::LogSeverity
was erroneously assumed.WITH_PKGCONFIG
to be explicitly set toON
.What's Changed
include
path by @drigz in https://github.com/google/glog/pull/927ParseTemplateArg
recursion depth by @sergiud in https://github.com/google/glog/pull/963check_library_exists
bycheck_cxx_symbol_exists
by @sergiud in https://github.com/google/glog/pull/991gmtime_r
check by @sergiud in https://github.com/google/glog/pull/1013stderrthreshold
usingGLOG_stderrthreshold
by @sergiud in https://github.com/google/glog/pull/1034New Contributors
Full Changelog: google/glog@v0.6.0...v0.7.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.