Skip to content
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

Update dependency com_google_absl to v20230802 - autoclosed #45

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 26, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
com_google_absl git_repository major 20211102.0 -> 20230802.1

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

abseil/abseil-cpp (com_google_absl)

v20230802.1: Abseil LTS branch, Aug 2023, Patch 1

Compare Source

Abseil LTS 2023080.1

What's New:

  • Added the nullability library for designating the expected nullability of pointers. Currently these serve as annotations only, but it is expected that compilers will one day be able to use these annotations for diagnostic purposes.
  • Added the prefetch library as a portable layer for moving data into caches before it is read.
  • Abseil's hash tables now detect many more programming errors in debug and sanitizer builds.
  • Abseil's synchronization objects now differentiate absolute waits (when passed an absl::Time) from relative waits (when passed an absl::Duration) when the underlying platform supports differentiating these cases. This only makes a difference when system clocks are adjusted.
  • Abseil's flag parsing library includes additional methods that make it easier to use when another library also expects to be able to parse flags.
  • absl::string_view is now available as a smaller target, @com_google_absl//absl/strings:string_view, so that users may use this library without depending on the much larger @com_google_absl//absl/strings target.

Breaking Changes:

  • None known at this time.

Known Issues

  • None known at this time.

Baseline: fdf5be1
Cherry pick: 659b77b
Cherry pick: fb3621f (Patch 1)

v20230802.0: Abseil LTS branch, Aug 2023

Compare Source

Abseil LTS 2023080

What's New:

  • Added the nullability library for designating the expected nullability of pointers. Currently these serve as annotations only, but it is expected that compilers will one day be able to use these annotations for diagnostic purposes.
  • Added the prefetch library as a portable layer for moving data into caches before it is read.
  • Abseil's hash tables now detect many more programming errors in debug and sanitizer builds.
  • Abseil's synchronization objects now differentiate absolute waits (when passed an absl::Time) from relative waits (when passed an absl::Duration) when the underlying platform supports differentiating these cases. This only makes a difference when system clocks are adjusted.
  • Abseil's flag parsing library includes additional methods that make it easier to use when another library also expects to be able to parse flags.
  • absl::string_view is now available as a smaller target, @com_google_absl//absl/strings:string_view, so that users may use this library without depending on the much larger @com_google_absl//absl/strings target.

Breaking Changes:

  • None known at this time.

Known Issues

  • This release does not build in some configurations on several unsupported platforms, including FreeBSD, NetBSD, OpenBSD, and MinGW. 20230802.1 addresses this issue.

Baseline: fdf5be1
Cherry pick: 659b77b

v20230125.3: Abseil LTS branch, Jan 2023, Patch 3

Compare Source

Abseil LTS 2023012.3

What's New:

  • The Abseil logging library has been released. This library provides facilities for writing short text messages about the status of a program to stderr, disk files, or other sinks (via an extension API). See the logging library documentation for more information.
  • An extension point, AbslStringify(), allows user-defined types to seamlessly work with Abseil's string formatting functions like absl::StrCat() and absl::StrFormat().
  • A library for computing CRC32C checksums has been added.
  • Floating-point parsing now uses the Eisel-Lemire algorithm, which provides a significant speed improvement.
  • The flags library now provides suggestions for the closest flag(s) in the case of misspelled flags.
  • Using CMake to install Abseil now makes the installed artifacts (in particular absl/base/options.h) reflect the compiled ABI.

Breaking Changes:

  • Abseil now requires at least C++14 and follows Google's Foundational C++ Support Policy. See this table for a list of currently supported versions compilers, platforms, and build tools.
  • The legacy spellings of the thread annotation macros/functions (e.g. GUARDED_BY()) have been removed by default in favor of the ABSL_ prefixed versions (e.g. ABSL_GUARDED_BY()) due to clashes with other libraries. The compatibility macro ABSL_LEGACY_THREAD_ANNOTATIONS can be defined on the compile command-line to temporarily restore these spellings, but this compatibility macro will be removed in the future.

Known Issues

  • The Abseil logging library in this release is not a feature-complete replacement for glog yet. VLOG and DFATAL are examples of features that have not yet been released.

Baseline: a69b0ae
Cherry pick: 35e8e3f (Patch 1)
Cherry pick: a0f9b46 (Patch 1)
Cherry pick: 2de126c (Patch 2)
Cherry pick: 807763a (Patch 3)

v20230125.2: Abseil LTS branch, Jan 2023, Patch 2

Compare Source

Abseil LTS 2023012.2

What's New:

  • The Abseil logging library has been released. This library provides facilities for writing short text messages about the status of a program to stderr, disk files, or other sinks (via an extension API). See the logging library documentation for more information.
  • An extension point, AbslStringify(), allows user-defined types to seamlessly work with Abseil's string formatting functions like absl::StrCat() and absl::StrFormat().
  • A library for computing CRC32C checksums has been added.
  • Floating-point parsing now uses the Eisel-Lemire algorithm, which provides a significant speed improvement.
  • The flags library now provides suggestions for the closest flag(s) in the case of misspelled flags.
  • Using CMake to install Abseil now makes the installed artifacts (in particular absl/base/options.h) reflect the compiled ABI.

Breaking Changes:

  • Abseil now requires at least C++14 and follows Google's Foundational C++ Support Policy. See this table for a list of currently supported versions compilers, platforms, and build tools.
  • The legacy spellings of the thread annotation macros/functions (e.g. GUARDED_BY()) have been removed by default in favor of the ABSL_ prefixed versions (e.g. ABSL_GUARDED_BY()) due to clashes with other libraries. The compatibility macro ABSL_LEGACY_THREAD_ANNOTATIONS can be defined on the compile command-line to temporarily restore these spellings, but this compatibility macro will be removed in the future.

Known Issues

  • The Abseil logging library in this release is not a feature-complete replacement for glog yet. VLOG and DFATAL are examples of features that have not yet been released.

Baseline: a69b0ae
Cherry pick: 35e8e3f (Patch 1)
Cherry pick: a0f9b46 (Patch 1)
Cherry pick: 2de126c (Patch 2)

v20230125.1: Abseil LTS branch, Jan 2023, Patch 1

Compare Source

Abseil LTS 2023012.1

What's New:

  • The Abseil logging library has been released. This library provides facilities for writing short text messages about the status of a program to stderr, disk files, or other sinks (via an extension API). See the logging library documentation for more information.
  • An extension point, AbslStringify(), allows user-defined types to seamlessly work with Abseil's string formatting functions like absl::StrCat() and absl::StrFormat().
  • A library for computing CRC32C checksums has been added.
  • Floating-point parsing now uses the Eisel-Lemire algorithm, which provides a significant speed improvement.
  • The flags library now provides suggestions for the closest flag(s) in the case of misspelled flags.
  • Using CMake to install Abseil now makes the installed artifacts (in particular absl/base/options.h) reflect the compiled ABI.

Breaking Changes:

  • Abseil now requires at least C++14 and follows Google's Foundational C++ Support Policy. See this table for a list of currently supported versions compilers, platforms, and build tools.
  • The legacy spellings of the thread annotation macros/functions (e.g. GUARDED_BY()) have been removed by default in favor of the ABSL_ prefixed versions (e.g. ABSL_GUARDED_BY()) due to clashes with other libraries. The compatibility macro ABSL_LEGACY_THREAD_ANNOTATIONS can be defined on the compile command-line to temporarily restore these spellings, but this compatibility macro will be removed in the future.

Known Issues

  • The Abseil logging library in this release is not a feature-complete replacement for glog yet. VLOG and DFATAL are examples of features that have not yet been released.

Baseline: a69b0ae
Cherry pick: 35e8e3f (Patch 1)
Cherry pick: a0f9b46 (Patch 1)

v20230125.0: Abseil LTS branch, Jan 2023

Compare Source

Abseil LTS 2023012

What's New:

  • The Abseil logging library has been released. This library provides facilities for writing short text messages about the status of a program to stderr, disk files, or other sinks (via an extension API). See the logging library documentation for more information.
  • An extension point, AbslStringify(), allows user-defined types to seamlessly work with Abseil's string formatting functions like absl::StrCat() and absl::StrFormat().
  • A library for computing CRC32C checksums has been added.
  • Floating-point parsing now uses the Eisel-Lemire algorithm, which provides a significant speed improvement.
  • The flags library now provides suggestions for the closest flag(s) in the case of misspelled flags.
  • Using CMake to install Abseil now makes the installed artifacts (in particular absl/base/options.h) reflect the compiled ABI.

Breaking Changes:

  • Abseil now requires at least C++14 and follows Google's Foundational C++ Support Policy. See this table for a list of currently supported versions compilers, platforms, and build tools.
  • The legacy spellings of the thread annotation macros/functions (e.g. GUARDED_BY()) have been removed by default in favor of the ABSL_ prefixed versions (e.g. ABSL_GUARDED_BY()) due to clashes with other libraries. The compatibility macro ABSL_LEGACY_THREAD_ANNOTATIONS can be defined on the compile command-line to temporarily restore these spellings, but this compatibility macro will be removed in the future.

Known Issues

  • The Abseil logging library in this release is not a feature-complete replacement for glog yet. VLOG and DFATAL are examples of features that have not yet been released.

Baseline: a69b0ae

v20220623.1: Abseil LTS branch, June 2022, Patch 1

Compare Source

Abseil LTS 2022062.1

What's New:

Breaking Changes:

Other:

  • This will be the last release to support C++11. Future releases will require at least C++14.

Baseline: 273292d
Cherry pick: 8c0b94e (Patch 1)

v20220623.0: Abseil LTS branch, June 2022

Compare Source

Abseil LTS 2022062

What's New:

Breaking Changes:

Other:

  • This will be the last release to support C++11. Future releases will require at least C++14.

Baseline: 273292d


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Asia/Tokyo, 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency com_google_absl to v20230802 Update dependency com_google_absl to v20230802 Dec 11, 2023
@renovate renovate bot changed the title Update dependency com_google_absl to v20230802 Update dependency com_google_absl to v20230802 - autoclosed Jan 22, 2024
@renovate renovate bot closed this Jan 22, 2024
@renovate renovate bot deleted the renovate/com_google_absl-20230802.x branch January 22, 2024 23:14
melpon pushed a commit that referenced this pull request Mar 26, 2024
…bitrate-value

sdl_sample の audio_codec_lyra_bitrate を 0 で初期化する
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants