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
Important changes
[API] Add InstrumentationScope attributes in TracerProvider::GetTracer()
#2371
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.[API] Add a new AddLink() operation to Span
#2380
API
Span::AddLink() adds a single link to a span.API
Span::AddLinks() adds multiple links to a span.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.[BUILD] Make WITH_OTLP_HTTP_SSL_PREVIEW mainstream
#2378
CMake
optionWITH_OTLP_HTTP_SSL_PREVIEW
is now promoted to stable. The default is changed to
ON
.CMake
optionWITH_OTLP_HTTP_SSL_TLS_PREVIEW
is now promoted to stable. The default is changed to
ON
.building without SSL/TLS will no longer be possible.
[EXPORTER] Rework OTLP/HTTP and OTLP/GRPC exporter options
#2388
OtlpGrpcMetricExporterOptions
used to honor_TRACES_
environment variables, instead of
_METRICS_
environment variables.OtlpGrpcMetricExporterOptions
is now fixed.to make sure
_METRICS_
variables are set as expected.Breaking changes
[BUILD] Remove WITH_REMOVE_METER_PREVIEW, use WITH_ABI_VERSION_2 instead
#2370
CMake
optionWITH_REMOVE_METER_PREVIEW
is removed,use option
WITH_ABI_VERSION_2
instead.[BUILD] enum CanonicalCode names too generic... conflict with old C defines
#2385
opentelemetry/trace/canonical_code.h
is unused,and is now removed.
If this is the case, please remove any remaining include directives.
[BUILD] Fix exported definitions when building DLL with STL
#2387
and InstrumentSelectorFactory APIs now use const std::string&
instead of nostd::string_view for name, version and schema to
maintain a single export definition for DLL.
[EXPORTER] Rework OTLP/HTTP and OTLP/GRPC exporter options
#2388
OtlpGrpcLogRecordExporter
incorrectly usedOtlpGrpcExporterOptions
,which are options for traces and not logs.
OtlpGrpcLogRecordExporter
honors_TRACES_
environment variables, instead of
_LOGS_
environment variables.OtlpGrpcLogRecordExporter
is changed to useOtlpGrpcLogRecordExporterOptions
instead, fixing the bug.and uses exporter options, should adjust to replace
OtlpGrpcExporterOptions
withOtlpGrpcLogRecordExporterOptions
.to make sure
_LOGS_
variables are set as expected.[REMOVAL] Remove ZPAGES
#2433
the deprecated ZPAGES exporter is now removed.
New Contributors
Full Changelog: open-telemetry/opentelemetry-cpp@v1.12.0...v1.13.0