From 50ef4909e3a97020b103d27716d3a7c9c9e28a10 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 19 Feb 2026 07:44:52 -0700 Subject: [PATCH] Add changelog entries for PR #3774 --- changelog/3774.added.md | 1 + changelog/3774.fixed.md | 1 + 2 files changed, 2 insertions(+) create mode 100644 changelog/3774.added.md create mode 100644 changelog/3774.fixed.md diff --git a/changelog/3774.added.md b/changelog/3774.added.md new file mode 100644 index 000000000..032d8238f --- /dev/null +++ b/changelog/3774.added.md @@ -0,0 +1 @@ +- Added `broadcasted` field to the base `Frame` class. This field is automatically set to `True` by `broadcast_frame()` and `broadcast_frame_instance()` to distinguish broadcasted frames from single-direction frames. diff --git a/changelog/3774.fixed.md b/changelog/3774.fixed.md new file mode 100644 index 000000000..a839f56ed --- /dev/null +++ b/changelog/3774.fixed.md @@ -0,0 +1 @@ +- Fixed `RTVIObserver` not processing upstream-only frames. Previously, all upstream frames were filtered out to avoid duplicate messages from broadcasted frames. Now only upstream copies of broadcasted frames are skipped.