chore(deps): update dependency com_google_absl to v20250814 #2337
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.
Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.
This PR contains the following updates:
20240116.0
->20250814.0
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
abseil/abseil-cpp (com_google_absl)
v20250814.0
: Abseil LTS branch, August 2025Compare Source
Abseil LTS
2025081
.0What's New:
absl::Mutex
now contains lower-case method names likelock()
andshared_lock()
to align with standard C++ mutex methods. This allowsabsl::Mutex
to be used withstd::scoped_lock
and friends. The old names are still present but may be removed in a future release.absl::MutexLock
,absl::ReaderMutexLock
, and friends now accept references toabsl::Mutex
. The pointer-accepting constructors are now deprecated, and may be removed in a future release.Breaking Changes:
absl::string_view(nullptr)
, which is undefined behavior according to the C++ standard, now triggers anassert
failure. Note that unless you changedabsl/base/options.h
,absl::string_view
is an alias forstd::string_view
, so by default you will be inheriting the behavior of your standard library instead of using the Abseil implementation.sizeof(size_t)
.Known Issues
CHECK_<OP>
is failing to compile on older versions of GCC when one of the arguments is a C-style string. This is fixed byba9a180
and will be included in a future patch release.Baseline:
987c57f
v20250512.1
: Abseil LTS branch, May 2025, Patch 1Compare Source
Abseil LTS
2025051
.1What's New:
absl::any
,absl::optional
, andabsl::variant
are now aliases forstd::any
,std::optional
, andstd::variant
in all builds. (Note that the polyfill implementationabsl::string_view
remains at the present time, but it defaults to being an aliasstd::string_view
in all builds.)absl::FastTypeId<Type>()
, which evaluates at compile-time to a unique id for the passed-in type.absl::endian
andabsl::byteswap
polyfills (25bce12
).Breaking Changes:
absl_nonnull
,absl_nullable
) should be used instead (caf854d
).Known Issues
Baseline:
bc257a8
Cherry-pick:
76bb243
(Patch 1)v20250512.0
: Abseil LTS branch, May 2025Compare Source
Abseil LTS
2025051
.0What's New:
absl::any
,absl::optional
, andabsl::variant
are now aliases forstd::any
,std::optional
, andstd::variant
in all builds. (Note that the polyfill implementationabsl::string_view
remains at the present time, but it defaults to being an aliasstd::string_view
in all builds.)absl::FastTypeId<Type>()
, which evaluates at compile-time to a unique id for the passed-in type.absl::endian
andabsl::byteswap
polyfills (25bce12
).Breaking Changes:
absl_nonnull
,absl_nullable
) should be used instead (caf854d
).Known Issues
Baseline:
bc257a8
v20250127.1
: Abseil LTS branch, January 2025, Patch 1Compare Source
Abseil LTS
2025012
.1What's New:
ABSL_ATTRIBUTE_VIEW
andABSL_ATTRIBUTE_OWNER
for diagnosing certain lifetime issuesBreaking Changes:
BUILD
files now reference repositories by their canonical names from the Bazel Central Registry. For example, Abseil is now@abseil-cpp
instead of@com_google_absl
, and GoogleTest is now@googletest
instead of@com_google_googletest
. Users still using the oldWORKSPACE
system may need to userepo_mapping
on repositories that still use the old names. See90a7ba6
for an example.Other:
Known Issues
Baseline:
98ebd7e
Cherry-pick:
9ac7062
Cherry-pick:
d9e4955
(Patch 1)v20250127.0
: Abseil LTS branch, January 2025Compare Source
Abseil LTS
2025012
.0What's New:
ABSL_ATTRIBUTE_VIEW
andABSL_ATTRIBUTE_OWNER
for diagnosing certain lifetime issuesBreaking Changes:
BUILD
files now reference repositories by their canonical names from the Bazel Central Registry. For example, Abseil is now@abseil-cpp
instead of@com_google_absl
, and GoogleTest is now@googletest
instead of@com_google_googletest
. Users still using the oldWORKSPACE
system may need to userepo_mapping
on repositories that still use the old names. See90a7ba6
for an example.Other:
Known Issues
Baseline:
98ebd7e
Cherry-pick:
9ac7062
v20240722.1
: Abseil LTS branch, July 2024, Patch 1Compare Source
Abseil LTS
2024072
.1What's New:
absl::Status
. These matchers make it easier to write unit tests for code that usesabsl::Status
.Breaking Changes:
absl::AlphaNum
no longer allows brace-initialization. This was never intended to be supported, nor is it recommended thatabsl::AlphaNum
ever be spelled in user code.absl::kuint128max
has been removed and should be replaced withabsl::Uint128Max()
.absl::aligned_storage_t
, which was a polyfill consistent withstd::aligned_storage_t
, has been removed.std::aligned_storage_t
is deprecated in C++23. See https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p1413r3.pdf for a suggested replacement.absl::StrJoin
now has aabsl::string_view
overload. This allows for passing a collection of string-like objects without having to convert everything to the same type first. However, this may be a breaking change for users passing an explicit template argument toabsl::StrJoin
. In this case, simply remove the explicit template parameter.vlog_is_on.h
is now a public header and is no longer included fromlog.h
. To useVLOG_IS_ON()
,absl/log/vlog_is_on.h
must be included.Known Issues
Baseline:
3358286
Cherry-pick:
2138590
Cherry-pick:
9a0743a
Cherry-pick:
4447c75
Cherry-pick:
dd4c89b
(Patch 1)v20240722.0
: Abseil LTS branch, July 2024Compare Source
Abseil LTS
2024072
.0What's New:
absl::Status
. These matchers make it easier to write unit tests for code that usesabsl::Status
.Breaking Changes:
absl::AlphaNum
no longer allows brace-initialization. This was never intended to be supported, nor is it recommended thatabsl::AlphaNum
ever be spelled in user code.absl::kuint128max
has been removed and should be replaced withabsl::Uint128Max()
.absl::aligned_storage_t
, which was a polyfill consistent withstd::aligned_storage_t
, has been removed.std::aligned_storage_t
is deprecated in C++23. See https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p1413r3.pdf for a suggested replacement.absl::StrJoin
now has aabsl::string_view
overload. This allows for passing a collection of string-like objects without having to convert everything to the same type first. However, this may be a breaking change for users passing an explicit template argument toabsl::StrJoin
. In this case, simply remove the explicit template parameter.vlog_is_on.h
is now a public header and is no longer included fromlog.h
. To useVLOG_IS_ON()
,absl/log/vlog_is_on.h
must be included.Known Issues
Baseline:
3358286
Cherry-pick:
2138590
Cherry-pick:
9a0743a
Cherry-pick:
4447c75
v20240116.3
: Abseil LTS branch, Jan 2024, Patch 3Compare Source
Abseil LTS
2024011
.3What's New:
absl::NoDestructor<T>
to simplify defining static types that do not need to be destructed upon program exit.VLOG
).absl::Overload()
, which returns a functor that provides overloads based on the functors passed to it. Note that this functionality requires C++17 or newer.Breaking Changes:
AbslHashValue()
no longer accepts C-style arrays as a parameter. Previously the array would decay to a pointer type, which could lead to subtle, unintended bugs. The most common potential error is passing a C-string literal. After this change, these call-sites require wrapping the literal inabsl::string_view
.absl::weak_equality
andabsl::strong_equality
have been removed. The correspondingstd
types were removed before C++20 was finalized (https://wg21.link/P1959R0).Known Issues
Baseline:
10f3e61
Cherry pick:
4a2c633
Cherry pick:
3ab97e7
(Patch 1)Cherry pick:
d7aaad8
(Patch 2)Cherry pick:
54fac21
(Patch 3)v20240116.2
: Abseil LTS branch, Jan 2024, Patch 2Compare Source
Abseil LTS
2024011
.2What's New:
absl::NoDestructor<T>
to simplify defining static types that do not need to be destructed upon program exit.VLOG
).absl::Overload()
, which returns a functor that provides overloads based on the functors passed to it. Note that this functionality requires C++17 or newer.Breaking Changes:
AbslHashValue()
no longer accepts C-style arrays as a parameter. Previously the array would decay to a pointer type, which could lead to subtle, unintended bugs. The most common potential error is passing a C-string literal. After this change, these call-sites require wrapping the literal inabsl::string_view
.absl::weak_equality
andabsl::strong_equality
have been removed. The correspondingstd
types were removed before C++20 was finalized (https://wg21.link/P1959R0).Known Issues
Baseline:
10f3e61
Cherry pick:
4a2c633
Cherry pick:
3ab97e7
(Patch 1)Cherry pick:
d7aaad8
(Patch 2)v20240116.1
: Abseil LTS branch, Jan 2024, Patch 1Compare Source
Abseil LTS
2024011
.1What's New:
absl::NoDestructor<T>
to simplify defining static types that do not need to be destructed upon program exit.VLOG
).absl::Overload()
, which returns a functor that provides overloads based on the functors passed to it. Note that this functionality requires C++17 or newer.Breaking Changes:
AbslHashValue()
no longer accepts C-style arrays as a parameter. Previously the array would decay to a pointer type, which could lead to subtle, unintended bugs. The most common potential error is passing a C-string literal. After this change, these call-sites require wrapping the literal inabsl::string_view
.absl::weak_equality
andabsl::strong_equality
have been removed. The correspondingstd
types were removed before C++20 was finalized (https://wg21.link/P1959R0).Known Issues
Baseline:
10f3e61
Cherry pick:
4a2c633
Cherry pick:
3ab97e7
(Patch 1)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.