From 0f4f1186a080996ab6e5c1d0fbeb7fbdac8994bd Mon Sep 17 00:00:00 2001 From: Kenny Trytek Date: Mon, 26 Feb 2024 13:08:03 -0600 Subject: [PATCH] Version Bump --- CHANGELOG.md | 5 +++++ lib/src/api/exporters/span_exporter.dart | 2 +- lib/src/api/instrumentation_library.dart | 2 +- lib/src/api/span_processors/span_processor.dart | 2 +- lib/src/sdk/instrumentation_library.dart | 2 +- pubspec.yaml | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94b5be52..f8caf365 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.18.1 + +- Update `http` dependency. +- Log error on export failure instead of exiting. + ## 0.18.0 - Dart 3 support, primarily through dependency version ranges diff --git a/lib/src/api/exporters/span_exporter.dart b/lib/src/api/exporters/span_exporter.dart index 2b01fb90..eb3e5731 100644 --- a/lib/src/api/exporters/span_exporter.dart +++ b/lib/src/api/exporters/span_exporter.dart @@ -4,7 +4,7 @@ import '../../../api.dart' as api; @Deprecated( - 'This class will be moved to the SDK package in v0.18.0. Use [SpanExporter] from SDK instead.') + 'This class will be moved to the SDK package in v0.19.0. Use [SpanExporter] from SDK instead.') abstract class SpanExporter { void export(List spans); diff --git a/lib/src/api/instrumentation_library.dart b/lib/src/api/instrumentation_library.dart index da243f52..782fa199 100644 --- a/lib/src/api/instrumentation_library.dart +++ b/lib/src/api/instrumentation_library.dart @@ -4,7 +4,7 @@ /// Represents versioning metadata for this library within applications /// which use multiple implementations of OpenTelemetry. // See https://github.com/open-telemetry/oteps/blob/main/text/0083-component.md#instrumentationlibrary -@Deprecated('This class will be removed in 0.18.0.') +@Deprecated('This class will be removed in 0.19.0.') abstract class InstrumentationLibrary { String get name; String get version; diff --git a/lib/src/api/span_processors/span_processor.dart b/lib/src/api/span_processors/span_processor.dart index 3b6a539e..5d12caff 100644 --- a/lib/src/api/span_processors/span_processor.dart +++ b/lib/src/api/span_processors/span_processor.dart @@ -4,7 +4,7 @@ import '../../../api.dart' as api; @Deprecated( - 'This class will be moved to the SDK package in v0.18.0. Use [SpanExporter] from SDK instead.') + 'This class will be moved to the SDK package in v0.19.0. Use [SpanExporter] from SDK instead.') abstract class SpanProcessor { void onStart(api.Span span, api.Context parentContext); diff --git a/lib/src/sdk/instrumentation_library.dart b/lib/src/sdk/instrumentation_library.dart index eeb0ab30..01223693 100644 --- a/lib/src/sdk/instrumentation_library.dart +++ b/lib/src/sdk/instrumentation_library.dart @@ -5,7 +5,7 @@ import '../../api.dart' as api; // Represents the instrumentation library. @Deprecated( - 'This class will be removed in 0.18.0. Use InstrumentationScope from SDK intead.') + 'This class will be removed in 0.19.0. Use InstrumentationScope from SDK intead.') class InstrumentationLibrary implements api.InstrumentationLibrary { final String _name; final String _version; diff --git a/pubspec.yaml b/pubspec.yaml index cfcbe3b1..80a56d4a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: opentelemetry -version: 0.18.0 +version: 0.18.1 description: A framework for collecting traces from applications. homepage: https://github.com/Workiva/opentelemetry-dart environment: