miolo 3.0.0-beta.219 → 3.0.0-beta.220

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miolo",
3
- "version": "3.0.0-beta.219",
3
+ "version": "3.0.0-beta.220",
4
4
  "description": "all-in-one koa-based server",
5
5
  "author": "Donato Lorenzo <donato@afialapis.com>",
6
6
  "contributors": [
@@ -478,7 +478,7 @@ export default function make_config_defaults() {
478
478
  enabled: false,
479
479
  // Auto create rooms based on sessions
480
480
  // To be able to do like: app.context.miolo.io.to('user_<id>').emit('ns', newData);
481
- userRooms: true,
481
+ userRooms: false,
482
482
  cli: {
483
483
  /**
484
484
  url: '',
@@ -36,7 +36,7 @@ function init_socket(app, config) {
36
36
  const userId = session.user?.id
37
37
  socket.join(`user_${userId}`)
38
38
  socket.mioloUser = userId // Attach for convenience
39
- logger.info(`[socket] Socket ${socket.id} joined room user_${userId}`)
39
+ logger.verbose(`[socket] Socket ${socket.id} joined room user_${userId}`)
40
40
  }
41
41
  }
42
42
  }
@@ -48,7 +48,7 @@ function init_socket(app, config) {
48
48
  }
49
49
 
50
50
  io.on("connection", (socket) => {
51
- logger.info(`[socket] Connection from ... `)
51
+ logger.verbose(`[socket] Connection from ${socket?.id || "?"} `)
52
52
 
53
53
  if (config?.ssr?.enabled === true) {
54
54
  socket.on("ssr-subscribe", (name) => {
@@ -45,9 +45,9 @@
45
45
  "intre": "^3.0.0-beta.4",
46
46
  "joi": "^18.2.3",
47
47
  "lucide-react": "^1.22.0",
48
- "miolo-cli": "^3.0.0-beta.219",
48
+ "miolo-cli": "^3.0.0-beta.220",
49
49
  "miolo-model": "file:../miolo-model",
50
- "miolo-react": "^3.0.0-beta.219",
50
+ "miolo-react": "^3.0.0-beta.220",
51
51
  "next-themes": "^0.4.6",
52
52
  "radix-ui": "^1.6.0",
53
53
  "react": "^19.2.7",
@@ -62,7 +62,7 @@
62
62
  },
63
63
  "devDependencies": {
64
64
  "@biomejs/biome": "2.5.1",
65
- "miolo": "^3.0.0-beta.219",
65
+ "miolo": "^3.0.0-beta.220",
66
66
  "sass-embedded": "^1.100.0"
67
67
  },
68
68
  "overrides": {