Releases: stack-bound/reaserve
Releases · stack-bound/reaserve
ReaServe v0.1.2
Added
- REAPER ExtState API bindings (
SetExtState,GetExtState,HasExtState,DeleteExtState). - Go integration test suite (
tests/integration/reaserve_test.go) that exercises every method in PROTOCOL.md against a live REAPER instance. Uses//go:build integrationtag so it is never picked up by normalgo testruns. - Makefile with targets:
release,debug,test,test-integration,install,clean,rebuild,help. make installauto-detects REAPER UserPlugins path per platform (Linux/macOS/Windows).
Changed
- Breaking:
lua.execute_and_readno longer requiresstate_pathparameter. Lua code must now callreaserve_output(json_string)to return data instead of writing to a file. The file-based result passing mechanism has been replaced with REAPER's in-memory ExtState API (SetExtState/GetExtState). - User Lua code in
lua.execute_and_readis now wrapped inpcall()— Lua runtime errors are captured and returned in the JSON-RPC error response instead of being silently swallowed. - Updated PROTOCOL.md to reflect new
lua.execute_and_readinterface and documentreaserve_output().
ReaServe v0.1.1
Fixed
- Fix REAPER hanging on exit due to client TCP sockets not being shut down during server stop, causing blocking
recv()calls in client threads to never return - Unregister timer callback (
-timer) during plugin unload to prevent use-after-free of destroyed globals - Drain pending command queue on shutdown so in-flight futures resolve instead of blocking indefinitely
ReaServe v0.1.0
Added
- Initial Build. Artefacts are built for Linux, Windows, and macOS and published to GitHub releases.
Notes
[Deployment] Notes for deployment
[Added] for new features.
[Changed] for changes in existing functionality.
[Deprecated] for once-stable features removed in upcoming releases.
[Removed] for deprecated features removed in this release.
[Fixed] for any bug fixes.
[Security] to invite users to upgrade in case of vulnerabilities.
[YANKED] Note the emphasis, used for Hotfixes