| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.15.57 source code.tar.gz | 2024-11-26 | 356.3 kB | |
| 0.15.57 source code.zip | 2024-11-26 | 425.3 kB | |
| README.md | 2024-11-26 | 894 Bytes | |
| Totals: 3 Items | 782.5 kB | 0 | |
(The bundled colyseus package number will now start to follow the same @colyseus/core version number)
Graceful Shutdown
- Introduces
Room.onBeforeShutdown()and improved Graceful Shutdown process (see docs) - Introduces
Room.onUncaughtException()for automatically handling try/catch within your room code (see docs)
The new Graceful Shutdown process better allow to configure rolling updates. Keeping active rooms connected while deploying a new version in the same server is now possible!
@colyseus/schema is now a peer dependency!
As @colyseus/schema has been moved to a peerDependency of the framework - you must now specify its version in your project:
:::json
"dependencies": {
"@colyseus/schema": "^2.0.36"
}