bunderstack 0.9.0 → 0.9.1

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.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -88,9 +88,13 @@ must share a realtime transport. Configure `REDIS_URL` (or
88
88
  process-local memory broker and is suitable only when the worker is embedded
89
89
  with `app.startWorker()`.
90
90
 
91
- `app.runWorker()` rejects that unsafe combination by default. If queue handlers
92
- never publish realtime events, acknowledge the process-local behavior with
93
- `app.runWorker({ allowProcessLocalRealtime: true })`.
91
+ Since 0.9.0, `app.runWorker()` rejects that unsafe combination by default. If
92
+ queue handlers never publish realtime events, acknowledge the process-local
93
+ behavior with `app.runWorker({ allowProcessLocalRealtime: true })`.
94
+
95
+ Inspect the active runtime with `app.realtime.transport` (`'disabled'`,
96
+ `'memory'`, or `'redis'`). Deploy tooling can read the configured transport
97
+ from `app.manifest.realtimeTransport`.
94
98
 
95
99
  ```ts
96
100
  const app = await createBunderstack({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunderstack",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Batteries-included backend framework for Bun: CRUD APIs, auth, file storage, realtime, tRPC, email, and validated env from a single Drizzle schema and config object.",
5
5
  "keywords": [
6
6
  "backend",