-
-
Notifications
You must be signed in to change notification settings - Fork 12.4k
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
glog 0.7.0 #163094
Closed
Closed
glog 0.7.0 #163094
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
added
the
bump-formula-pr
PR was created using `brew bump-formula-pr`
label
Feb 17, 2024
chenrui333
force-pushed
the
bump-glog-0.7.0
branch
2 times, most recently
from
February 18, 2024 01:20
0f9f71c
to
1857446
Compare
|
cho-m
force-pushed
the
bump-glog-0.7.0
branch
2 times, most recently
from
March 21, 2024 17:54
6f02834
to
a7f88eb
Compare
chenrui333
force-pushed
the
bump-glog-0.7.0
branch
from
April 2, 2024 18:15
a7f88eb
to
fa0da4c
Compare
This was referenced Apr 4, 2024
glog: update test Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Add patch to work with `glog` 0.7 Signed-off-by: Rui Chen <[email protected]> Signed-off-by: Michael Cho <[email protected]>
Signed-off-by: Rui Chen <[email protected]>
Closed
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
build failure
CI fails while building the software
bump-formula-pr
PR was created using `brew bump-formula-pr`
CI-requeued
PR has been re-added to the queue
in progress
Stale bot should stay away
outdated
PR was locked due to age
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.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
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 Warn about dragons in the Bazelinclude
path google/glog#927ParseTemplateArg
recursion depth by @sergiud in fix(demangle): limitParseTemplateArg
recursion depth google/glog#963check_library_exists
bycheck_cxx_symbol_exists
by @sergiud in cmake: replacecheck_library_exists
bycheck_cxx_symbol_exists
google/glog#991gmtime_r
check by @sergiud in fix: add missinggmtime_r
check google/glog#1013stderrthreshold
usingGLOG_stderrthreshold
by @sergiud in fix: allow settingstderrthreshold
usingGLOG_stderrthreshold
google/glog#1034New Contributors
Full Changelog: google/glog@v0.6.0...v0.7.0