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
21 changes: 14 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
- uses: actions/checkout@v4
with:
repository: Flowduino/ESPressio-Timing
ref: 2.2.2
ref: 2.2.3
path: ESPressio_Timing
- uses: actions/checkout@v4
with:
repository: Flowduino/ESPressio-Units
ref: 0.2.1
ref: 0.2.2
path: ESPressio-Units
- name: Configure
run: cmake -S ESPressio-Event/tests -B build
Expand All @@ -47,18 +47,23 @@ jobs:
- uses: actions/checkout@v4
with:
repository: Flowduino/ESPressio-Units
ref: 0.2.1
ref: 0.2.2
path: project/dependencies/ESPressio-Units
- uses: actions/checkout@v4
with:
repository: Flowduino/ESPressio-Timing
ref: 2.2.2
ref: 2.2.3
path: project/dependencies/ESPressio-Timing
- uses: actions/checkout@v4
with:
repository: Flowduino/ESPressio-Threads
ref: 3.1.2
ref: 3.1.3
path: project/dependencies/ESPressio-Threads
- uses: actions/checkout@v4
with:
repository: Flowduino/ESPressio-Serializable
ref: 0.10.1
path: project/dependencies/ESPressio-Serializable
- uses: actions/checkout@v4
with:
repository: Flowduino/ESPressio-Security
Expand All @@ -77,7 +82,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: Flowduino/ESPressio-ESP-Now
ref: 0.5.0
ref: 0.5.1
path: project/dependencies/ESPressio-ESP-Now
- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -109,11 +114,13 @@ jobs:
../dependencies/ESPressio-Units
../dependencies/ESPressio-Timing
../dependencies/ESPressio-Threads
../dependencies/ESPressio-Serializable
../ESPressio-Event
EOF
cat > project/compile/src/main.cpp <<'EOF'
#include <Arduino.h>
#include <WiFi.h>
#include <ESPressio_EventTransport.hpp>
#include <ESPressio_TransportSecurityEventBridge.hpp>
#include <ESPressio_CommandRegistryEventBridge.hpp>
#include <ESPressio_SocketWorkerEventBridge.hpp>
Expand All @@ -123,5 +130,5 @@ jobs:
void setup() {}
void loop() {}
EOF
- name: Compile ESP32 optional bridges
- name: Compile ESP32 Event Transport and optional bridges
run: pio run -d project/compile
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 5.8.1 — 2026-08-20

### Changed
- Raised the required ESPressio Threads baseline from 3.1.2 to 3.1.3.
- Raised the required ESPressio Timing baseline from 2.2.2 to 2.2.3.
- Raised the optional ESPressio Serializable baseline from 0.10.0 to 0.10.1 for Serializable Events, runtime construction and Event Transport integrations.
- Preserved the required ESPressio Observable baseline at `>=3.0.1 <4.0.0`.
- Updated package and ESP-IDF component metadata for Event 5.8.1.
- Documented the reciprocal optional Event/ESP-Now dependency as an architectural exception: the preferred long-term resolution is to relocate `ESPNowTransportEventBridge` downstream into ESP-Now's Event integration (or a dedicated integration package), keeping Event transport-neutral.

### Compatibility
- No Event, EventThread, listener, Observer, Event Transport, routing, bridge or wire-format API changes are introduced by this dependency-maintenance release.
- Security, Command, Sockets, ESP-Now and Serializable remain opt-in where applicable.

## 5.8.0 — 2026-08-20

### Added
Expand Down
Loading
Loading