sat-rs/satrs/CHANGELOG.md

48 lines
1.6 KiB
Markdown
Raw Normal View History

Change Log
=======
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
# [unreleased]
2024-02-12 16:55:19 +01:00
2024-02-23 14:19:30 +01:00
## Changed
- Refactored `EventManager` to heavily use generics instead of trait objects.
- `SendEventProvider` -> `EventSendProvider`. `id` trait method renamed to `channel_id`.
- `ListenerTable` -> `ListenerMapProvider`
- `SenderTable` -> `SenderMapProvider`
- There is an `EventManagerWithMpsc` and a `EventManagerWithBoundedMpsc` helper type now.
- Refactored ECSS TM sender abstractions to be generic over different message queue backends.
- Refactored Verification Reporter abstractions and implementation to be generic over the sender
instead of using trait objects.
2024-02-23 14:19:30 +01:00
2024-02-26 10:53:33 +01:00
## Fixed
- Update deprecated API for `PusScheduler::insert_wrapped_tc_cds_short`
and `PusScheduler::insert_wrapped_tc_cds_long`.
2024-02-21 11:08:22 +01:00
# [v0.2.0-rc.0] 2024-02-21
## Added
- New PUS service abstractions for HK (PUS 3) and actions (PUS 8). Introducing new abstractions
allows to move some boilerplate code into the framework.
- New `VerificationReportingProvider` abstraction to avoid relying on a concrete verification
reporting provider.
2024-02-20 14:36:34 +01:00
## Changed
- Verification reporter API timestamp arguments are not `Option`al anymore. Empty timestamps
can be passed by simply specifying the `&[]` empty slice argument.
2024-02-12 17:56:01 +01:00
# [v0.1.1] 2024-02-12
- Minor fixes for crate config `homepage` entries and links in documentation.
2024-02-12 16:55:19 +01:00
# [v0.1.0] 2024-02-12
Initial release.