@basictech/react 0.12.0-beta.0 → 0.12.0-beta.2

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/CHANGELOG.md ADDED
@@ -0,0 +1,603 @@
1
+ # @basictech/react
2
+
3
+ ## 0.12.0-beta.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 85388da: Add Base UI-backed account, auth, sync-status, avatar, and sharing components with optional scoped
8
+ styles and an appearance provider. Include a React DOM peer dependency for the portaled UI.
9
+ Add app-token project-profile read/update/reset APIs, React hook and settings editor, per-account
10
+ menu badges, and an optional avatar sync indicator.
11
+ Expose the components and project-profile hook through the Next.js client entry.
12
+ Share the saved-account registry between REST and sync modes, support add-account sign-in,
13
+ and keep cached display identity up to date after profile saves. Include read-only account
14
+ diagnostics with clipboard export and suppress sync badges in REST mode.
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [85388da]
19
+ - @basictech/core@0.12.0-beta.2
20
+
21
+ ## 0.12.0-beta.1
22
+
23
+ ### Minor Changes
24
+
25
+ - 7476794: Breaking 0.12 migration: remove compatibility aliases and clarify auth and write contracts.
26
+
27
+ Upgrade all public Basic packages used by an application together. See the
28
+ [0.12 migration guide](https://github.com/basicdb/basic-server/blob/dev/docs/MIGRATING_TO_0.12.md)
29
+ for replacements and migration examples. No persisted-profile migration, storage reset, or
30
+ wire-protocol change is required.
31
+
32
+ - `AuthStatus` drops `reauth_required`; `AuthSession` and client snapshots both report `expired`.
33
+ - Snapshot aliases `profiles`, `users`, `activeProfile`, `activeUser` are replaced by `accounts` and
34
+ `activeAccount`; `useAccounts()` returns `activeAccount`. `switchUser`/`addUser`/`removeUser`,
35
+ `ProfileRegistry.createAnon`, `BasicConflict.repo`, `BasicRejection.repo`, `useMounts().mounts`
36
+ and `useOutgoingShares().outgoingShares` are removed.
37
+ - `snapshot.authErrorCode` becomes `snapshot.authError: BasicError | null`; raw active diagnostics
38
+ remain there. Errors are cached by code and expired state. `AccountAuth.reason` is the normalized
39
+ `'AUTH_EXPIRED' | null`, and `readOnlyReason` is the closed `ReadOnlyReason` union.
40
+ - Client enqueue captures and rechecks write access around preflight; Replica separately guards its
41
+ serialized durable mutation. REST collections, shares, and files recheck after awaited preflight,
42
+ and transport checks again before sending. Blob uploads retain their boundary guard.
43
+ - `SyncSession`/`MountSession` use `shouldConnect` for sockets/receiving and push-only `canWrite`
44
+ for flush. `beginWrite` remains the local replica mutation guard; flush allocates no exceptions.
45
+ - Storage key names are centralized inside core but remain internal (not exported).
46
+ Core passes the token key to `createMessageChannel`; `createBrowserAuthChannelFactory(store)` no
47
+ longer parses channel names, and cross-tab auth is installed for custom token stores too.
48
+ - `Collection.watch(query, listener, onError?)` works in REST mode; `useQuery` is built on it.
49
+ - Mounted file listings accept `FileListQuery` and reject non-live `state`.
50
+ - `signOut()` disposes the profile through the same path as `removeAccount()`, so the cached repo
51
+ catalog no longer survives logout.
52
+ - `useStorageInfo`, `useMounts` and `useOutgoingShares` report `AUTHORIZATION_REQUIRED` or
53
+ `AUTH_EXPIRED` as `error` while no account is signed in. Bound hooks throw outside their own
54
+ Provider. `useBasic()` is memoised.
55
+ - `supportsAccessTokenAdoption` is no longer exported from React, restoring Next.js client export
56
+ parity. Direct `RestDb` construction now takes `queryStore` in place of `onMutation`, with
57
+ `beginWrite` still the final optional argument.
58
+ - The demo's local PDS rewrite is development-only, requires an exact URL-origin match, and is
59
+ ignored in production.
60
+
61
+ ### Patch Changes
62
+
63
+ - Updated dependencies [f229bc4]
64
+ - Updated dependencies [3a8962b]
65
+ - Updated dependencies [7476794]
66
+ - @basictech/core@0.12.0-beta.1
67
+
68
+ ## 0.11.0
69
+
70
+ ### Minor Changes
71
+
72
+ - a3e32f6: Recover OAuth and Sync sessions after browser suspension without reloading. Transient refresh failures now retry, cross-tab refresh rotation self-heals when access-token broadcasts are missed, and visible, focused, or newly online browser clients reconcile fresh credentials with owner and mounted Sync sessions.
73
+ - 46ceb4c: Overhaul auth system: extract AuthManager, add PKCE, cross-tab sync, proactive token refresh, enriched error handling, and fix DELETE Content-Type issue
74
+ - 46ceb4c: added debug bar
75
+ - 46ceb4c: Rebuild the SDK on the repo-era core (0.10): negotiated REST v1, OAuth PKCE with identity
76
+ discovery, repo CRUD and lifecycle, atomic NDJSON snapshots, durable partitioned state, and
77
+ Sync/3 multi-repo sessions. Keeps the 0.9 local-first features — multiple users (anonymous and
78
+ signed-in), offline replicas, sync + REST modes, and reactive query hooks. Sync/2 is removed
79
+ from the public surface.
80
+ - 812f9ad: Complete the 0.11 SDK rewrite with the framework-neutral Files v2, Shares v2, mount, auth,
81
+ typed data, persistence, and sync APIs; the schema-bound React layer; the dependency-light schema
82
+ definition entry point; and lockstep Next.js compile compatibility.
83
+ - 46ceb4c: update schema
84
+
85
+ ### Patch Changes
86
+
87
+ - 731303b: Require Node.js 24 LTS or newer for the public packages.
88
+ - ac72e74: Expose per-account auth summaries and public expired status, canWrite, and readOnlyReason.
89
+ Keep expired accounts and cached data visible while rejecting new mutations with AUTH_EXPIRED
90
+ and pausing sync sends. Preserve pending work for same-account reauthorization, prevent delayed
91
+ writes from crossing account/auth generations, and retain ordinary offline and anonymous editing.
92
+ Consumers of reauth_required in client snapshots or React hooks should migrate to expired.
93
+ Generic invalid_grant does not trigger destructive revocation cleanup.
94
+ - 46ceb4c: Fix PWA/mobile logout issues: harden auth for offline resilience, prevent spurious logouts on transient server errors, proactive token refresh on app resume, and fix potential deadlock in token refresh flow
95
+ - 30c39d1: Remember successful handle-based share recipients in a profile-local contact cache and expose DID-to-handle lookup through the core and React shares APIs.
96
+ - Updated dependencies [a3e32f6]
97
+ - Updated dependencies [731303b]
98
+ - Updated dependencies [ac72e74]
99
+ - Updated dependencies [30c39d1]
100
+ - Updated dependencies [30c39d1]
101
+ - Updated dependencies [cf87ad3]
102
+ - Updated dependencies [46ceb4c]
103
+ - Updated dependencies [30c39d1]
104
+ - Updated dependencies [6e1a072]
105
+ - Updated dependencies [812f9ad]
106
+ - @basictech/core@0.11.0
107
+
108
+ ## 0.11.0-beta.3
109
+
110
+ ### Patch Changes
111
+
112
+ - ac72e74: Expose per-account auth summaries and public expired status, canWrite, and readOnlyReason.
113
+ Keep expired accounts and cached data visible while rejecting new mutations with AUTH_EXPIRED
114
+ and pausing sync sends. Preserve pending work for same-account reauthorization, prevent delayed
115
+ writes from crossing account/auth generations, and retain ordinary offline and anonymous editing.
116
+ Consumers of reauth_required in client snapshots or React hooks should migrate to expired.
117
+ Generic invalid_grant does not trigger destructive revocation cleanup.
118
+ - Updated dependencies [ac72e74]
119
+ - @basictech/core@0.11.0-beta.3
120
+
121
+ ## 0.11.0-beta.2
122
+
123
+ ### Minor Changes
124
+
125
+ - a3e32f6: Recover OAuth and Sync sessions after browser suspension without reloading. Transient refresh failures now retry, cross-tab refresh rotation self-heals when access-token broadcasts are missed, and visible, focused, or newly online browser clients reconcile fresh credentials with owner and mounted Sync sessions.
126
+
127
+ ### Patch Changes
128
+
129
+ - 30c39d1: Remember successful handle-based share recipients in a profile-local contact cache and expose DID-to-handle lookup through the core and React shares APIs.
130
+ - Updated dependencies [a3e32f6]
131
+ - Updated dependencies [30c39d1]
132
+ - Updated dependencies [30c39d1]
133
+ - Updated dependencies [30c39d1]
134
+ - Updated dependencies [6e1a072]
135
+ - @basictech/core@0.11.0-beta.2
136
+
137
+ ## 0.11.0-beta.1
138
+
139
+ ### Minor Changes
140
+
141
+ - 46ceb4c: Overhaul auth system: extract AuthManager, add PKCE, cross-tab sync, proactive token refresh, enriched error handling, and fix DELETE Content-Type issue
142
+ - 46ceb4c: added debug bar
143
+ - 46ceb4c: Rebuild the SDK on the repo-era core (0.10): negotiated REST v1, OAuth PKCE with identity
144
+ discovery, repo CRUD and lifecycle, atomic NDJSON snapshots, durable partitioned state, and
145
+ Sync/3 multi-repo sessions. Keeps the 0.9 local-first features — multiple users (anonymous and
146
+ signed-in), offline replicas, sync + REST modes, and reactive query hooks. Sync/2 is removed
147
+ from the public surface.
148
+ - 812f9ad: Complete the 0.11 SDK rewrite with the framework-neutral Files v2, Shares v2, mount, auth,
149
+ typed data, persistence, and sync APIs; the schema-bound React layer; the dependency-light schema
150
+ definition entry point; and lockstep Next.js compile compatibility.
151
+ - 46ceb4c: update schema
152
+
153
+ ### Patch Changes
154
+
155
+ - 731303b: Require Node.js 24 LTS or newer for the public packages.
156
+ - 46ceb4c: Fix PWA/mobile logout issues: harden auth for offline resilience, prevent spurious logouts on transient server errors, proactive token refresh on app resume, and fix potential deadlock in token refresh flow
157
+ - Updated dependencies [731303b]
158
+ - Updated dependencies [cf87ad3]
159
+ - Updated dependencies [46ceb4c]
160
+ - Updated dependencies [812f9ad]
161
+ - @basictech/core@0.11.0-beta.1
162
+
163
+ ## 0.9.0-beta.1
164
+
165
+ ### Minor Changes
166
+
167
+ Local-first startup, anonymous mode, and multiple users.
168
+
169
+ - **Anonymous mode (default on):** the local database works without a
170
+ session — writes queue as ordinary ops in a local-only workspace (sync
171
+ status `local`) and merge into the account automatically on sign-in via
172
+ the normal bootstrap+flush path (deferred identity — no copy step). Set
173
+ `anonymous={false}` on the provider for classic sign-in-required behavior.
174
+ - **Offline cold start fixed:** the engine opens the local keyspace with no
175
+ token and no network (`openLocal()`), so reloading offline serves all data
176
+ from the replica; the connection acquires tokens with retry on its own.
177
+ `reauth_required` now _pauses_ the connection instead of stopping the
178
+ engine — local reads/writes keep working while the user re-authenticates.
179
+ - **Multiple users:** several local users (anonymous or signed-in) side by
180
+ side with per-tab switching. New `useUsers()` hook
181
+ (`users`, `activeUser`, `switchUser`, `addUser`, `removeUser`), profile
182
+ registry in localStorage, per-user auth storage namespacing and isolated
183
+ sync keyspaces (`basic-sync:{project}:{userId}`). Existing single-user
184
+ sessions are adopted as the first profile automatically.
185
+ - **Owner guard:** keyspaces are stamped with the account DID at bootstrap;
186
+ local data from one account can never merge into another (a mismatched
187
+ keyspace is wiped before bootstrap). Also fixes a latent leak where
188
+ unpushed ops could survive an account change.
189
+ - **User-aware `useQuery`:** the active user id is appended to query deps
190
+ automatically so live queries re-attach on user switches; in-flight
191
+ queries hitting a closing store during the switch return undefined and
192
+ re-run.
193
+ - `signOut()` now wipes the active user's data and falls through to the next
194
+ local user (or a fresh anonymous workspace); `useAuth()` exposes
195
+ `isAnonymous`; sync status gains `local`.
196
+
197
+ ## 0.9.0-beta.0
198
+
199
+ ### Major Changes (breaking)
200
+
201
+ Ground-up rewrite for the server's Sync/2 sync engine and Step 2 auth upgrade.
202
+ The legacy dexie-syncable `/ws` protocol was removed server-side (clean
203
+ break), so 0.8.x sync no longer works against production.
204
+
205
+ - **New sync engine** (`core/sync/`): implements the Sync/2 client contract
206
+ (SYNC_V2.md) — snapshot bootstrap, multiplexed WebSocket subscriptions,
207
+ client-minted idempotent ops (`put`/`patch`/`delete`), persisted pending
208
+ queue with optimistic rebase, ordered apply with echo confirmation,
209
+ poison-op handling for terminal rejections, and re-bootstrap recovery
210
+ (`SNAPSHOT_REQUIRED`/`RESET_REQUIRED`). Local persistence is plain Dexie
211
+ (dexie-syncable/dexie-observable removed).
212
+ - **New public API**: `db.table(name)` with `create/put/patch/delete/get/
213
+ getAll/find`; `useAuth`, `useDb`, `useSyncStatus`, `useShares`, `useShare`;
214
+ `useBasic` remains the umbrella hook. `useQuery` still provides live reads.
215
+ - **Shares v1**: list shares and mount shared data via `useShare(shareId)` —
216
+ separate local keyspace per mount, guest writes when permitted, revocation
217
+ handling.
218
+ - **Auth updates**: `signOut()` revokes server-side via `POST /auth/logout`;
219
+ sign-out (incl. cross-tab) tears down local data without page reloads;
220
+ token-endpoint 429s are treated as transient; `CONNECTION_REVOKED` from
221
+ sync triggers session reconciliation.
222
+ - **REST mode**: `mode="rest"` replaces `dbMode="remote"`, backed by the
223
+ REST v2 surface (`/account/:project_id/db/...`), including
224
+ snapshot/changes endpoints.
225
+ - Tests: vitest unit suite + integration suite against the Sync/2 reference
226
+ server (`basic-server/sync-playground`).
227
+
228
+ ## 0.8.0-beta.4
229
+
230
+ ### Patch Changes
231
+
232
+ - Auth status state machine and session reconciliation: add `AuthStatus` type (`bootstrapping`, `authenticated`, `recovering`, `reauth_required`, `signed_out`), replace `window.location.reload()` cross-tab handlers with in-place state updates, add `reconcileSession` for sync/visibility/online recovery, handle `tokenUpdateAck` in sync protocol, and expose `authStatus` + `authErrorCode` from `useBasic()`
233
+
234
+ ## 0.8.0-beta.3
235
+
236
+ ### Patch Changes
237
+
238
+ - Fix PWA/mobile logout issues: harden auth for offline resilience, prevent spurious logouts on transient server errors, proactive token refresh on app resume, and fix potential deadlock in token refresh flow
239
+
240
+ ## 0.8.0-beta.2
241
+
242
+ ### Minor Changes
243
+
244
+ - added debug bar
245
+
246
+ ## 0.8.0-beta.1
247
+
248
+ ### Minor Changes
249
+
250
+ - uth updates
251
+
252
+ ## 0.8.0-beta.0
253
+
254
+ ### Minor Changes
255
+
256
+ - Overhaul auth system: extract AuthManager, add PKCE, cross-tab sync, proactive token refresh, enriched error handling, and fix DELETE Content-Type issue
257
+
258
+ ## Unreleased
259
+
260
+ ### Patch Changes
261
+
262
+ - **DBStatus:** Add `ERROR_WILL_RETRY` to align with dexie-syncable status code 4 (error but will retry). Export `DBStatus` enum from the package. Document all `DBStatus` values in readme, including when `ERROR_WILL_RETRY` occurs (e.g. expired token). Enables UI to show "Reconnecting…" or future token refresh on this state.
263
+
264
+ ## 0.7.0
265
+
266
+ ### Minor Changes
267
+
268
+ - 6a506e9: api improvements, react refactor, nextjs update
269
+ - e45744e: localstorage update
270
+ - e45744e: storage adapater update
271
+ - update apis, add remote db + sync db
272
+
273
+ ### Patch Changes
274
+
275
+ - cdf7123: refresh token patch
276
+ - 7e68aa3: add oauth settings
277
+ - 841839f: fix: provider props
278
+ - 7e68aa3: update token endpoint
279
+ - 4f11b3e: config server url & token patch
280
+
281
+ ## 0.7.0-beta.7
282
+
283
+ ### Minor Changes
284
+
285
+ - api improvements, react refactor, nextjs update
286
+
287
+ ## 0.7.0-beta.6
288
+
289
+ ### Patch Changes
290
+
291
+ - refresh token patch
292
+
293
+ ## 0.7.0-beta.5
294
+
295
+ ### Patch Changes
296
+
297
+ - config server url & token patch
298
+
299
+ ## 0.7.0-beta.4
300
+
301
+ ### Patch Changes
302
+
303
+ - fix: provider props
304
+
305
+ ## 0.7.0-beta.3
306
+
307
+ ### Patch Changes
308
+
309
+ - add oauth settings
310
+
311
+ ## 0.7.0-beta.2
312
+
313
+ ### Patch Changes
314
+
315
+ - update token endpoint
316
+
317
+ ## 0.7.0-beta.1
318
+
319
+ ### Minor Changes
320
+
321
+ - storage adapater update
322
+
323
+ ## 0.7.0-beta.0
324
+
325
+ ### Minor Changes
326
+
327
+ - localstorage update
328
+
329
+ ## 0.6.0
330
+
331
+ ### Minor Changes
332
+
333
+ - d241ffa: suerver url patch
334
+
335
+ ### Patch Changes
336
+
337
+ - Updated dependencies
338
+ - @basictech/schema@0.6.0
339
+
340
+ ## 0.6.0-beta.0
341
+
342
+ ### Minor Changes
343
+
344
+ - suerver url patch
345
+
346
+ ## 0.5.0
347
+
348
+ ### Minor Changes
349
+
350
+ - 6765047: fix server url
351
+ - af26a15: include schema to sync
352
+ - 783ecad: reset db on signout
353
+ - 6dd6ad9: add react 19
354
+ - f9c25a3: fix update notif
355
+ - 7f42c2a: react - initdb and version check
356
+ - weee
357
+
358
+ ## 0.5.0-beta.5
359
+
360
+ ### Minor Changes
361
+
362
+ - fix update notif
363
+
364
+ ## 0.5.0-beta.4
365
+
366
+ ### Minor Changes
367
+
368
+ - react - initdb and version check
369
+
370
+ ## 0.5.0-beta.3
371
+
372
+ ### Minor Changes
373
+
374
+ - add react 19
375
+
376
+ ## 0.5.0-beta.2
377
+
378
+ ### Minor Changes
379
+
380
+ - fix server url
381
+
382
+ ## 0.5.0-beta.1
383
+
384
+ ### Minor Changes
385
+
386
+ - include schema to sync
387
+
388
+ ## 0.5.0-beta.0
389
+
390
+ ### Minor Changes
391
+
392
+ - reset db on signout
393
+
394
+ ## 0.4.0
395
+
396
+ ### Minor Changes
397
+
398
+ - a41eb20: schema validation to react client
399
+ - b572027: patch - occasional sync disconnect
400
+
401
+ ### Patch Changes
402
+
403
+ - Updated dependencies
404
+ - Updated dependencies [a41eb20]
405
+ - Updated dependencies [c76951e]
406
+ - @basictech/schema@0.5.0
407
+
408
+ ## 0.4.0-beta.1
409
+
410
+ ### Patch Changes
411
+
412
+ - Updated dependencies
413
+ - @basictech/schema@0.5.0-beta.1
414
+
415
+ ## 0.4.0-beta.0
416
+
417
+ ### Minor Changes
418
+
419
+ - a41eb20: schema validation to react client
420
+ - patch - occasional sync disconnect
421
+
422
+ ### Patch Changes
423
+
424
+ - Updated dependencies [a41eb20]
425
+ - @basictech/schema@0.5.0-beta.0
426
+
427
+ ## 0.3.0
428
+
429
+ ### Minor Changes
430
+
431
+ - schema validation in react client
432
+
433
+ ### Patch Changes
434
+
435
+ - Updated dependencies
436
+ - @basictech/schema@0.4.0
437
+
438
+ ## 0.2.2
439
+
440
+ ### Patch Changes
441
+
442
+ - Updated dependencies [f9ad8d1]
443
+ - @basictech/schema@0.3.0
444
+
445
+ ## 0.2.1
446
+
447
+ ### Patch Changes
448
+
449
+ - Updated dependencies
450
+ - @basictech/schema@0.2.0
451
+
452
+ ## 0.2.0
453
+
454
+ ### Minor Changes
455
+
456
+ - 5890f4c: changed isLoaded to isAuthReady and fixed dbStatus hooks for useBasic
457
+ - ba294c5: dependency updates
458
+ - cd827af: add schema validation
459
+ - 1a3fe80: schema validation bugfix
460
+ - 13594a9: added basic-sync
461
+ - ba294c5: dependency update
462
+ - f035281: remove sync lib
463
+ - 4841960: rebuild tsup
464
+ - 96e0156: update schema validation
465
+ - cda3d16: add schema validation
466
+ - 2c898ae: update useQuery hook
467
+
468
+ - no need to pass param as a function, can now enter query directly
469
+ - defaults to empty array when loading
470
+
471
+ - 90ccdd7: add debug option
472
+ - 4841960: test build
473
+ - f035281: remove sync library
474
+ - ef528e9: added schema package - test
475
+
476
+ ### Patch Changes
477
+
478
+ - 3c7b34e: version changes mostly
479
+ - c085672: reset versions
480
+ - Updated dependencies [96e0156]
481
+ - Updated dependencies [ef528e9]
482
+ - @basictech/schema@0.1.0
483
+
484
+ ## 0.2.0-beta.11
485
+
486
+ ### Minor Changes
487
+
488
+ - update schema validation
489
+
490
+ ### Patch Changes
491
+
492
+ - Updated dependencies
493
+ - @basictech/schema@0.1.0-beta.1
494
+
495
+ ## 0.2.0-beta.10
496
+
497
+ ### Minor Changes
498
+
499
+ - added schema package - test
500
+
501
+ ### Patch Changes
502
+
503
+ - Updated dependencies
504
+ - @basictech/schema@0.1.0-beta.0
505
+
506
+ ## 0.2.0-beta.9
507
+
508
+ ### Minor Changes
509
+
510
+ - add schema validation
511
+
512
+ ## 0.2.0-beta.8
513
+
514
+ ### Minor Changes
515
+
516
+ - changed isLoaded to isAuthReady and fixed dbStatus hooks for useBasic
517
+
518
+ ## 0.2.0-beta.7
519
+
520
+ ### Minor Changes
521
+
522
+ - update useQuery hook
523
+ - no need to pass param as a function, can now enter query directly
524
+ - defaults to empty array when loading
525
+
526
+ ## 0.2.0-beta.6
527
+
528
+ ### Minor Changes
529
+
530
+ - add debug option
531
+
532
+ ## 0.2.0-beta.5
533
+
534
+ ### Minor Changes
535
+
536
+ - schema validation bugfix
537
+
538
+ ## 0.2.0-beta.4
539
+
540
+ ### Minor Changes
541
+
542
+ - add schema validation
543
+
544
+ ## 0.2.0-beta.3
545
+
546
+ ### Minor Changes
547
+
548
+ - remove sync lib
549
+ - 4841960: test build
550
+ - remove sync library
551
+
552
+ ## 0.2.0-beta.2
553
+
554
+ ### Minor Changes
555
+
556
+ - rebuild tsup
557
+
558
+ ## 0.2.0-beta.1
559
+
560
+ ### Minor Changes
561
+
562
+ - dependency updates
563
+ - 13594a9: added basic-sync
564
+ - dependency update
565
+
566
+ ### Patch Changes
567
+
568
+ - 3c7b34e: version changes mostly
569
+ - Updated dependencies [3c7b34e]
570
+ - Updated dependencies
571
+ - @repo/sync@0.1.0-beta.0
572
+
573
+ ## 0.1.1-beta.0
574
+
575
+ ### Patch Changes
576
+
577
+ - c085672: reset versions
578
+
579
+ ## 1.1.0
580
+
581
+ ### Minor Changes
582
+
583
+ - testing
584
+
585
+ ## 1.1.0
586
+
587
+ ### Minor Changes
588
+
589
+ - 9da7748: hello :)
590
+ - fixes auth token on refresh
591
+
592
+ # 1.3.3
593
+
594
+ - fixed db.get()
595
+ - fixed auth endpoint
596
+
597
+ # 1.3.2
598
+
599
+ # added database apis (expirimental)
600
+
601
+ # 1.3.1
602
+
603
+ - addded auth