opentelemetry-cpp 1.12.0#151221
Merged
BrewTestBot merged 2 commits intoOct 16, 2023
Merged
Conversation
p-linnane
approved these changes
Oct 16, 2023
Contributor
|
🤖 An automated task has requested bottles to be published to this PR. |
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 bumpCreated with
brew bump-formula-pr.Details
release notes
and exporter packages:
What's Changed
pkg-configby @dbolduc in [BUILD] Supportpkg-configopen-telemetry/opentelemetry-cpp#2269Important changes
#2224
ABIbreaking change, the fix is only availablewith the
CMakeoptionWITH_ABI_VERSION_2=ON.CMakeoptionWITH_ABI_VERSION_1=ON(by default)the
ABIis unchanged, and the fix is not available.Breaking changes
[BUILD] Need fine-grained HAVE_CPP_STDLIB
#2304
CMAKE, the boolean optionWITH_STLas changed to an optionthat accepts the values
OFF,ON,CXX11,CXX14,CXX17,CXX20andCXX23.WITH_STL=OFFinstead (this is the default).WITH_STL=ONinstead, or may choose to pick a specific value.APIheader files, the preprocessor symbolHAVE_CPP_STDLIBis no longer used.
HAVE_CPP_STDLIBbefore, need to setOPENTELEMETRY_STL_VERSION=<version>instead, to build with aspecific STL version (2011, 2014, 2017, 2020, 2023).
CMAKE_CXX_STANDARD by itself.
Instead, the CMAKE_CXX_STANDARD and/or compiler options -stdc++ used
by the caller are honored.
options may need to provide a C++ standard in their makefiles.
[REMOVAL] Drop C++11 support
#2342
New Contributors
Full Changelog: open-telemetry/opentelemetry-cpp@v1.11.0...v1.12.0