File tree 6 files changed +10
-5
lines changed
6 files changed +10
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.18.1
2
+
3
+ - Update ` http ` dependency.
4
+ - Log error on export failure instead of exiting.
5
+
1
6
## 0.18.0
2
7
3
8
- Dart 3 support, primarily through dependency version ranges
Original file line number Diff line number Diff line change 4
4
import '../../../api.dart' as api;
5
5
6
6
@Deprecated (
7
- 'This class will be moved to the SDK package in v0.18 .0. Use [SpanExporter] from SDK instead.' )
7
+ 'This class will be moved to the SDK package in v0.19 .0. Use [SpanExporter] from SDK instead.' )
8
8
abstract class SpanExporter {
9
9
void export (List <api.Span > spans);
10
10
Original file line number Diff line number Diff line change 4
4
/// Represents versioning metadata for this library within applications
5
5
/// which use multiple implementations of OpenTelemetry.
6
6
// See https://github.com/open-telemetry/oteps/blob/main/text/0083-component.md#instrumentationlibrary
7
- @Deprecated ('This class will be removed in 0.18 .0.' )
7
+ @Deprecated ('This class will be removed in 0.19 .0.' )
8
8
abstract class InstrumentationLibrary {
9
9
String get name;
10
10
String get version;
Original file line number Diff line number Diff line change 4
4
import '../../../api.dart' as api;
5
5
6
6
@Deprecated (
7
- 'This class will be moved to the SDK package in v0.18 .0. Use [SpanExporter] from SDK instead.' )
7
+ 'This class will be moved to the SDK package in v0.19 .0. Use [SpanExporter] from SDK instead.' )
8
8
abstract class SpanProcessor {
9
9
void onStart (api.Span span, api.Context parentContext);
10
10
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import '../../api.dart' as api;
5
5
6
6
// Represents the instrumentation library.
7
7
@Deprecated (
8
- 'This class will be removed in 0.18 .0. Use InstrumentationScope from SDK intead.' )
8
+ 'This class will be removed in 0.19 .0. Use InstrumentationScope from SDK intead.' )
9
9
class InstrumentationLibrary implements api.InstrumentationLibrary {
10
10
final String _name;
11
11
final String _version;
Original file line number Diff line number Diff line change 1
1
name : opentelemetry
2
- version : 0.18.0
2
+ version : 0.18.1
3
3
description : A framework for collecting traces from applications.
4
4
homepage : https://github.com/Workiva/opentelemetry-dart
5
5
environment :
You can’t perform that action at this time.
0 commit comments