BREAKING CHANGE(devtools): Switch /reloadcheck endpoint from GET to POST in DevToolsController

This commit is contained in:
2025-12-02 21:10:25 +00:00
parent 424b742f84
commit fc6829f607
3 changed files with 9 additions and 2 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## 2025-12-02 - 5.0.0 - BREAKING CHANGE(devtools)
Switch /reloadcheck endpoint from GET to POST in DevToolsController
- Updated ts/controllers/controller.devtools.ts: decorator changed from @plugins.smartserve.Get('/reloadcheck') to @plugins.smartserve.Post('/reloadcheck').
- Clients that previously performed GET requests against /reloadcheck must be updated to use POST. This is a breaking API change.
- Bump major version to reflect the change in the public HTTP API.
## 2025-12-02 - 4.1.1 - fix(classes.typedserver)
Instantiate and register DevToolsController only when injectReload is enabled; compile ControllerRegistry routes after registration