|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to the iceoryx2-csharp bindings will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [Unreleased] |
| 9 | + |
| 10 | +### Features |
| 11 | + |
| 12 | +<!-- New features go here --> |
| 13 | + |
| 14 | +### Bugfixes |
| 15 | + |
| 16 | +<!-- Bug fixes go here --> |
| 17 | + |
| 18 | +### Refactoring |
| 19 | + |
| 20 | +<!-- Code refactoring, internal improvements go here --> |
| 21 | + |
| 22 | +### API Breaking Changes |
| 23 | + |
| 24 | +<!-- Breaking changes that require user action go here --> |
| 25 | + |
| 26 | +--- |
| 27 | + |
| 28 | +<!-- |
| 29 | +
|
| 30 | +## [0.1.0] - Initial Release |
| 31 | +
|
| 32 | +Based on iceoryx2 v0.8.0 |
| 33 | +
|
| 34 | +### Features |
| 35 | +
|
| 36 | +- **Core Bindings** |
| 37 | + - P/Invoke bindings to iceoryx2 native library (C FFI) |
| 38 | + - Support for .NET 8.0 and .NET 9.0 |
| 39 | + - Cross-platform support (Windows, Linux, macOS) |
| 40 | +
|
| 41 | +- **Publish-Subscribe Pattern** |
| 42 | + - `Publisher<T>` and `Subscriber<T>` for typed messaging |
| 43 | + - Zero-copy message transfer via shared memory |
| 44 | + - Support for dynamic payloads |
| 45 | +
|
| 46 | +- **Request-Response Pattern** |
| 47 | + - `Client<TRequest, TResponse>` and `Server<TRequest, TResponse>` support |
| 48 | + - Typed request/response communication |
| 49 | +
|
| 50 | +- **Event System** |
| 51 | + - `Notifier` and `Listener` for event-based signaling |
| 52 | + - `WaitSet` for multiplexed event handling |
| 53 | + - `IAsyncEnumerable<T>` support for async event consumption |
| 54 | +
|
| 55 | +- **Service Discovery** |
| 56 | + - Service discovery APIs for runtime service enumeration |
| 57 | +
|
| 58 | +- **Reactive Extensions** (`Iceoryx2.Reactive`) |
| 59 | + - `IObservable<T>` integration for reactive programming |
| 60 | + - `ObservableWaitSet` for reactive event handling |
| 61 | +
|
| 62 | +- **Logging Integration** |
| 63 | + - `Microsoft.Extensions.Logging` integration |
| 64 | + - Configurable log levels |
| 65 | +
|
| 66 | +- **Quality of Service** |
| 67 | + - Configurable buffer sizes |
| 68 | + - History and subscriber settings |
| 69 | +
|
| 70 | +### Examples |
| 71 | +
|
| 72 | +- PublishSubscribe - Basic pub/sub pattern |
| 73 | +- AsyncPubSub - Async/await pub/sub usage |
| 74 | +- Event - Event notification example |
| 75 | +- WaitSetMultiplexing - Multiplexed event handling |
| 76 | +- WaitSetAsyncEnumerable - Async enumerable events |
| 77 | +- ReactiveExample - Reactive extensions usage |
| 78 | +- ObservableWaitSet - Observable pattern with WaitSet |
| 79 | +- RequestResponse - Request/response pattern |
| 80 | +- ServiceDiscovery - Service enumeration |
| 81 | +- ComplexDataTypes - Structured data transfer |
| 82 | +- Logging - Logging configuration |
| 83 | +- QualityOfService - QoS settings |
| 84 | +
|
| 85 | +--- |
| 86 | +
|
| 87 | +[Unreleased]: https://github.com/eclipse-iceoryx2/iceoryx2-csharp/compare/v0.1.0...HEAD |
| 88 | +[0.1.0]: https://github.com/eclipse-iceoryx2/iceoryx2-csharp/releases/tag/v0.1.0 |
| 89 | +
|
| 90 | +--> |
0 commit comments