Prepare new release v0.9.0.

This commit is contained in:
Sebastian Jeltsch
2025-04-04 14:35:31 +02:00
parent 5936cd6a9d
commit fdfd363cfd
2 changed files with 19 additions and 3 deletions

View File

@@ -1,3 +1,19 @@
## v0.9.0
* Performance:
* Read and write latency improved both by ~30% 🔥.
* Memory footprint dropped by ~20% in our insert benchmarks.
* Build narrower INSERT queries.
* Use more cached statements.
* Overhaul object-store/S3 file life-cycle/cleanup.
* Use triggers + persistent deletion log.
* Retry cleanups on transient object store isues.
* Fix issue with zombie files on UPSERTs.
* Decouple record APIs form underlying TABLE/VIEW schemas.
* Fix leaky abstractions by pushing tracing initialization into server
initialization and more strictly separate from logging.
* Update dependencies.
## v0.8.4
* Add a `?loginMessage=` query parameter to admin login page.

View File

@@ -24,9 +24,9 @@ We can expect it to go fast but how fast exactly? Let's compare it to a few
amazing, and certainly more weathered alternatives such as SupaBase,
PocketBase, and vanilla SQLite.
<Aside type="note" title="Update: TrailBase v0.8.3+">
The SQLite execution model changed with v0.3.0 providing further, significant
improvements.
<Aside type="note" title="Update: TrailBase v0.9.0+">
The SQLite execution model changed in v0.3.0 and caching improved in v0.9.0
providing some solid performance gains.
</Aside>
<Aside type="note" title="Update: PocketBase v0.24+">