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
and exporter packages:
What's Changed
pkg-config
by @dbolduc in [BUILD] Supportpkg-config
open-telemetry/opentelemetry-cpp#2269Important changes
#2224
ABI
breaking change, the fix is only availablewith the
CMake
optionWITH_ABI_VERSION_2=ON
.CMake
optionWITH_ABI_VERSION_1=ON
(by default)the
ABI
is unchanged, and the fix is not available.Breaking changes
[BUILD] Need fine-grained HAVE_CPP_STDLIB
#2304
CMAKE
, the boolean optionWITH_STL
as changed to an optionthat accepts the values
OFF
,ON
,CXX11
,CXX14
,CXX17
,CXX20
andCXX23
.WITH_STL=OFF
instead (this is the default).WITH_STL=ON
instead, or may choose to pick a specific value.API
header files, the preprocessor symbolHAVE_CPP_STDLIB
is no longer used.
HAVE_CPP_STDLIB
before, 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