Skip to content

Releases: trailbaseio/trailbase

v0.3.3

28 Dec 18:20
Compare
Choose a tag to compare
  • Pre-built Windows binary.

Full Changelog: v0.3.2...v0.3.3

v0.3.2

17 Dec 21:36
Compare
Choose a tag to compare
  • Move record API access query construction to RecordApi construction time.
  • Cache auth queries
  • Some tweaks and hooks API for trailbase_sqlite::Connection.
  • Remove sqlite-loadable and replace with rusqlite functions.
  • Reduce allocations.

Full Changelog: v0.3.1...v0.3.2

v0.3.1

07 Dec 21:28
Compare
Choose a tag to compare
  • Fix client-ip logging.
  • Wire request-type into logs

What's Changed

New Contributors

Full Changelog: v0.3.0...v0.3.1

v0.3.0

05 Dec 22:19
Compare
Choose a tag to compare

A foundational overhaul of SQLite's integration and orchestration. This will
unlock more features in the future and already improves performance.
Write performance roughly doubled and read latencies are are down by about two
thirds to sub-milliseconds 🏃:

  • Replaced the libsql rust bindings with rusqlite and the libsql fork of SQLite
    with vanilla SQLite.
  • The bindings specifically are sub-par as witnessed by libsql-server itself
    using a forked rusqlite.
  • Besides some missing APIs like update_hooks, which we require for realtime
    APIs in the future, the implemented execution model is not ideal for
    high-concurrency.
  • The libsql fork is also slowly getting more and more outdated missing out on
    recent SQLite development.
  • The idea of a more inclusive SQLite is great but the manifesto hasn't yet
    manifested itself. It seems the owners are currently focused on
    libsql-server and another fork called limbo. Time will tell, we can always
    revisit.
    Other breaking changes:
  • Removed Query APIs in favor of JS/TS APIs, which were added in v0.2. The JS
    runtime is a lot more versatile and provides general I/O. Moreover, query APIs
    weren't very integrated yet, for one they were missing an Admin UI. We would
    rather spent the effort on realtime APIs instead.
    If you have an existing configuration, you need to strip the query_apis
    top-level field to satisfy the textproto parser. We could have left the
    field as deprecated but since there aren't any users yet, might as well...
    Other changes:
  • Replaced libsql's vector search with sqlite-vec.
  • Reduced logging overhead.

Full Changelog: v0.2.6...v0.3.0

v0.2.6

28 Nov 14:59
Compare
Choose a tag to compare
  • Type JSON more strictly.
  • Fix input validation for nullable columns in the insert/edit row Admin UI form.

What's Changed

  • Update SettingsPage.tsx - fixed a small typo by @Liangyiu in #6

New Contributors

Full Changelog: v0.2.5...v0.2.6

v0.2.5

26 Nov 13:05
Compare
Choose a tag to compare
  • Addresses issues reported by reddit user qwacko 🙏
    • Fix serialization of foreign key column options.
    • Fix deserialization of TableIndex.
    • Admin UI: Show all tables, including hidden ones, in create-table-form's
      drop down for column foreign-keys.

Full Changelog: v0.2.4...v0.2.5

v0.2.4

25 Nov 13:38
Compare
Choose a tag to compare
  • Allow configuring S3 compatible storage backend for file uploads.

What's Changed

New Contributors

Full Changelog: v0.2.3...v0.2.4

v0.2.3

23 Nov 22:24
Compare
Choose a tag to compare
  • Interleaving of multiple HTTP requests into busy v8 isolates/workers.
  • JS runtime:
    • add addPeriodicCallback function to register periodic tasks that
      executes on a single worker/isolate.
    • Constrain method TS argument type (MethodType).

v0.2.2

19 Nov 13:54
Compare
Choose a tag to compare
  • Enable "web" APIs in JS runtime.
  • Add "Facebook" and "Microsoft" OAuth providers.

Full Changelog: v0.2.1...v0.2.2

v0.2.1

15 Nov 14:22
Compare
Choose a tag to compare
  • Allow setting the number V8 isolates (i.e. JS runtime threads) via
    --js-runtime-threads.