Skip to content

Commit 151ed31

Browse files
chore(deps): update dependency com_google_absl to v20240722.1 (#448)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [com_google_absl](https://redirect.github.com/abseil/abseil-cpp) | http_archive | minor | `20240722.0` -> `20240722.1` | --- ### Release Notes <details> <summary>abseil/abseil-cpp (com_google_absl)</summary> ### [`v20240722.1`](https://redirect.github.com/abseil/abseil-cpp/releases/tag/20240722.1): Abseil LTS branch, July 2024, Patch 1 [Compare Source](https://redirect.github.com/abseil/abseil-cpp/compare/20240722.0...20240722.1) ### Abseil LTS [`2024072`](https://redirect.github.com/abseil/abseil-cpp/commit/20240722).1 #### What's New: - Added [GoogleTest matchers](https://redirect.github.com/abseil/abseil-cpp/blob/master/absl/status/status_matchers.h) for `absl::Status`. These matchers make it easier to write unit tests for code that uses `absl::Status`. - Patch 1 addresses a [security issue](https://redirect.github.com/abseil/abseil-cpp/commit/5a0e2cb5e3958dd90bb8569a2766622cb74d90c1) in hash container create/resize. #### Breaking Changes: - [`absl::AlphaNum` no longer allows brace-initialization.](https://redirect.github.com/abseil/abseil-cpp/commit/2be67701e7a33b45d322064349827e1155953338) This was never intended to be supported, nor is it recommended that `absl::AlphaNum` ever be spelled in user code. - The deprecated symbol `absl::kuint128max` [has been removed](https://redirect.github.com/abseil/abseil-cpp/commit/34604d5b1f6ae14c65b3992478b59f7108051979) and should be replaced with `absl::Uint128Max()`. - `absl::aligned_storage_t`, which was a polyfill consistent with `std::aligned_storage_t`, [has been removed](https://redirect.github.com/abseil/abseil-cpp/commit/42133464db0ae5383fef723067835ef768b849f8). `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 a `absl::string_view` overload.](https://redirect.github.com/abseil/abseil-cpp/commit/73841853760d6f86f5fe0372f17b2456874b6399) 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 to `absl::StrJoin`. In this case, simply remove the explicit template parameter. - [`vlog_is_on.h` is now a public header](https://redirect.github.com/abseil/abseil-cpp/commit/d0d902e6e1dcfec1e861bddee00e30fa04d4084d) and is no longer included from `log.h`. To use `VLOG_IS_ON()`, `absl/log/vlog_is_on.h` must be included. #### Known Issues - None known at this time. Baseline: [`3358286`](https://redirect.github.com/abseil/abseil-cpp/commit/3358286120d143e6a622652675b8b1b78447293c) Cherry-pick: [`2138590`](https://redirect.github.com/abseil/abseil-cpp/commit/21385900073e3ca2c4aefb13fd05ca2da40d5ff1) Cherry-pick: [`9a0743a`](https://redirect.github.com/abseil/abseil-cpp/commit/9a0743ac27df5ec018974e605cf61db7652b26c1) Cherry-pick: [`4447c75`](https://redirect.github.com/abseil/abseil-cpp/commit/4447c7562e3bc702ade25105912dce503f0c4010) Cherry-pick: [`dd4c89b`](https://redirect.github.com/abseil/abseil-cpp/commit/dd4c89bd657f1e247ce5111a5c89ffe6ccfd0c92) (Patch 1) </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/bazel-contrib/toolchains_llvm). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8c8c1f4 commit 151ed31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,9 @@ wasi_sdk_sysroots(name = "wasi_sdk_sysroots")
224224

225225
http_archive(
226226
name = "com_google_absl",
227-
sha256 = "f50e5ac311a81382da7fa75b97310e4b9006474f9560ac46f54a9967f07d4ae3",
228-
strip_prefix = "abseil-cpp-20240722.0",
229-
urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240722.0/abseil-cpp-20240722.0.tar.gz"],
227+
sha256 = "40cee67604060a7c8794d931538cb55f4d444073e556980c88b6c49bb9b19bb7",
228+
strip_prefix = "abseil-cpp-20240722.1",
229+
urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240722.1/abseil-cpp-20240722.1.tar.gz"],
230230
)
231231

232232
# As a test dep of com_google_absl.

0 commit comments

Comments
 (0)