Skip to content

Commit c9c8929

Browse files
derekxu16Commit Queue
authored andcommitted
[package:vm_service] Add kTimerSignificantlyOverdue field to EventKind
I overlooked making this additon earlier. This CL also prepares `package:vm_service 15.0.2` to be published. TEST=CI Change-Id: I4d28d87c027d27c4e532e5608f57b62eaa290e44 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/433082 Reviewed-by: Ben Konyi <[email protected]> Commit-Queue: Derek Xu <[email protected]>
1 parent e891cac commit c9c8929

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

pkg/vm_service/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
## 15.0.2
2+
- Add `kTimerSignificantlyOverdue` field to `EventKind`.
3+
14
## 15.0.1
25
- Update to version `4.19` of the spec.
36
- Add `Timer` stream.
4-
- Add `TimerSignificantlyOverdue` event kind.
57
- Add `details` property to `Event`.
68
- Add `getQueuedMicrotasks` RPC.
79
- Add `Microtask` and `QueuedMicrotasks` types.

pkg/vm_service/lib/src/vm_service.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2412,6 +2412,9 @@ abstract class EventKind {
24122412
/// Event from dart:developer.log.
24132413
static const String kLogging = 'Logging';
24142414

2415+
/// A timer fired significantly later than expected.
2416+
static const String kTimerSignificantlyOverdue = 'TimerSignificantlyOverdue';
2417+
24152418
/// A block of timeline events has been completed.
24162419
///
24172420
/// This service event is not sent for individual timeline events. It is

pkg/vm_service/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: vm_service
2-
version: 15.0.1
2+
version: 15.0.2
33
description: >-
44
A library to communicate with a service implementing the Dart VM
55
service protocol.

runtime/vm/service/service.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2781,6 +2781,9 @@ enum EventKind {
27812781
// Event from dart:developer.log.
27822782
Logging,
27832783
2784+
// A timer fired significantly later than expected.
2785+
TimerSignificantlyOverdue,
2786+
27842787
// A block of timeline events has been completed.
27852788
//
27862789
// This service event is not sent for individual timeline events. It is

0 commit comments

Comments
 (0)