1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-21 10:56:01 +00:00

update examples deps

This commit is contained in:
Gerasimos (Makis) Maropoulos
2024-01-18 15:08:48 +02:00
parent 113ce190e6
commit fabbc271b9
75 changed files with 318 additions and 323 deletions

View File

@@ -26,7 +26,7 @@ Changes apply to `main` branch.
# Thu, 18 Jan 2024 | v12.2.10
- Simplify the `/core/host` subpackage and remove its `DeferFlow` and `RestoreFlow` methods.
- Simplify the `/core/host` subpackage and remove its `DeferFlow` and `RestoreFlow` methods. These methods are replaced with: `Supervisor.Configure(host.NonBlocking())` before `Serve` and ` Supervisor.Wait(context.Context) error` after `Serve`.
- Fix internal `trimHandlerName` and other minor stuff.
- New `iris.NonBlocking()` configuration option to run the server without blocking the main routine, `Application.Wait(context.Context) error` method can be used to block and wait for the server to be up and running. Example: