hydro_deploy_integration v0.14.0
·
455 commits
to main
since this release
New Features
- allow running generated binaries with single-threaded Tokio runtime
Before, we had a janky architecture for establishing network connections
which relied on blocking on futures outside an async context, which
required a multi-threaded runtime. Now, we establish all connections
before launching the DFIR code, so that no blocking is required there.
Bug Fixes
- leftover logging when setting up Unix sockets
Oops!
Refactor
- minimize Tokio feature flags
Now thathydro_langno longer needs multi-threaded runtime, we can
eliminate it from the features used intrybuildcompilation. Minimizes
Tokio features elsewhere too. - eliminate
pin-projectproc macro dependency
This was the only use of the proc-macro version along the Hydro
dependencies, we can just use the declarative macro version.
Commit Statistics
- 4 commits contributed to the release over the course of 8 calendar days.
- 4 commits were understood as conventional.
- 4 unique issues were worked on: #1933, #1938, #1939, #1963