bump 0.19.0, update readme with use cases, small fixes

- fix password strategy openapi tags
- fix cli run picking up memory if specified
- fix view transition chrome crash
This commit is contained in:
dswbx
2025-10-31 11:55:27 +01:00
parent 6093f4f46f
commit 5417aa174e
5 changed files with 86 additions and 48 deletions

View File

@@ -123,11 +123,14 @@ export function BkndProvider({
fetching.current = Fetching.None;
};
if ("startViewTransition" in document) {
// disable view transitions for now
// because it causes browser crash on heavy pages (e.g. schema)
commit();
/* if ("startViewTransition" in document) {
document.startViewTransition(commit);
} else {
commit();
}
} */
});
}