Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ members = [
]

[workspace.dependencies]
embassy-futures = { version = "0.1", default-features = false }
embassy-futures = { version = "0.1.2", default-features = false }
embassy-sync = { version = "0.7", default-features = false }
embassy-time = { version = "0.4", default-features = false }
embedded-io-async = { version = "0.6", default-features = false }
Expand Down
5 changes: 4 additions & 1 deletion edge-dhcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

* Updated embassy-futures to 0.1.2

## [0.6.0] - 2025-05-29
* Optional `defmt` support via two new features (one has to specify one, or the other, or neither, but not both):
* `log` - uses the `log` crate for all logging
Expand All @@ -23,4 +27,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Migrated the client and the server to the `edge-nal` traits
* Migrated the server to only require `UdpSend` and `UdpReceive`, without the need to manipulate raw IP payloads anymore
* Raised MSRV to 1.77

4 changes: 4 additions & 0 deletions edge-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

* Updated embassy-futures to 0.1.2

## [0.6.0] - 2025-05-29
* Optional `defmt` support via two new features (one has to specify one, or the other, or neither, but not both):
* `log` - uses the `log` crate for all logging
Expand Down
5 changes: 4 additions & 1 deletion edge-http/src/io/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,10 @@ impl<const P: usize, const B: usize, const N: usize> Server<P, B, N> {
.map_err(|_| ()));
}

let (result, _) = embassy_futures::select::select_slice(&mut tasks).await;
let tasks = pin!(tasks);

let tasks = unsafe { tasks.map_unchecked_mut(|t| t.as_mut_slice()) };
let (result, _) = embassy_futures::select::select_slice(tasks).await;

warn!(
"Server processing loop quit abruptly: {:?}",
Expand Down
4 changes: 4 additions & 0 deletions edge-mdns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

* Updated embassy-futures to 0.1.2

## [0.6.1] - 2025-08-14
* Fix HostAnswersMdnsHandler responding to any A/AAAA queries even without match

Expand Down
4 changes: 4 additions & 0 deletions edge-nal-embassy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

* Updated embassy-futures to 0.1.2

## [0.6.0] - 2025-05-29
* Optional `defmt` support via two new features (one has to specify one, or the other, or neither, but not both):
* `log` - uses the `log` crate for all logging
Expand Down
Loading