251 Commits

Author SHA1 Message Date
Sebastian Jeltsch
e804788e5c Update JavaScript dependencies. 2025-12-18 12:13:02 +01:00
Sebastian Jeltsch
80f2f5e514 Update Rust and JavaScript dependencies. 2025-12-15 14:47:54 +01:00
Sebastian Jeltsch
29daa0a683 docs: Update roadmap and add a very subtle reference :hide:. 2025-12-12 12:50:33 +01:00
MentalGear
c464279284 docs: Add config file location and schema reference. 2025-12-10 10:47:44 +01:00
MentalGear
ca50b8a28b docs: Explain PK trade-offs and add an example for defining an UUID column, especially since it's not a SQLite built-in. 2025-12-10 10:28:00 +01:00
Sebastian Jeltsch
f84f6f42e6 Prepare new release v0.21.11. 2025-12-05 16:36:30 +01:00
Sebastian Jeltsch
df0f6894b6 Update Rust and JavaScript dependencies. 2025-12-03 20:55:02 +01:00
Sebastian Jeltsch
e90d78e23b Update JavaScript dependencies. 2025-12-03 12:30:22 +01:00
Sebastian Jeltsch
badd85c480 Fix docker alias to work correctly on Mac (probably Windows as well). Thanks @domibies #179. 2025-11-30 12:25:08 +01:00
Garik Asplund
8afe77ee69 Fix typo in faq.mdx 2025-11-19 10:28:31 +01:00
Sebastian Jeltsch
ed53c3e0c6 Update Rust and JavaScript dependencies. 2025-11-17 12:49:26 +01:00
Sebastian Jeltsch
b30390cab1 Update Rust and JS dependencies. 2025-11-14 14:07:38 +01:00
Sebastian Jeltsch
3f690b85ec Update Rust and JavaScript dependencies. 2025-11-13 13:12:58 +01:00
Sebastian Jeltsch
15ec88e3c0 Update screenshots. 2025-11-12 21:16:22 +01:00
Sebastian Jeltsch
106437ea6d Update JavaScript dependencies. 2025-11-09 07:57:15 +01:00
Sebastian Jeltsch
2308c8d622 Update JS and Rust dependencies. 2025-11-05 17:11:47 +01:00
Sebastian Jeltsch
8566b9ba96 Update JavaScript dependencies. 2025-11-03 10:59:06 +01:00
Sebastian Jeltsch
940c329770 Update JavaScript dependencies. 2025-10-13 15:45:54 +02:00
Brian Hicks
30c72034ea say to use _ROW_ on doc retrieval 2025-10-13 15:32:28 +02:00
Sebastian Jeltsch
c42d35ca5d Update Rust dependencies. 2025-10-09 12:58:59 +02:00
Sebastian Jeltsch
ad5c65c537 Breaking change: remove support for getting files by index. 2025-10-07 21:51:01 +02:00
Sebastian Jeltsch
08bcf98e67 Disable V8 runtime by default (custom builds can still enable it) and add a truly static binary release for Linux using MUSL.
Building with MUSL required vendoring sqlite-vec and OpenSSL.

Also clean up no-longer-supported TypeScript guest scripts.
2025-10-07 20:47:28 +02:00
Sebastian Jeltsch
64efae9ff8 Update more docs references to V8 2025-10-07 14:10:50 +02:00
Sebastian Jeltsch
db945733e9 Update Rust and JS dependencies. 2025-10-06 22:53:04 +02:00
Sebastian Jeltsch
f9f5f1f7d6 Minor: clean up .dockerignore #159. 2025-10-06 16:47:10 +02:00
Sebastian Jeltsch
4548137813 Add kotlin examples to docs. #144 #146 2025-10-03 12:51:12 +02:00
Sebastian Jeltsch
be3cd2f6f7 Add an initial Kotlin client. #146 #144
Missing:
 * No docs examples yet.
 * No realtime subscriptions yet.

I'm not overly familar with Kotlin, so another set of eyes would be appreciated to converge towards a more idiomatic implementation.
2025-10-01 14:51:38 +02:00
Shiv Kokroo
02915446e5 Fix multiple filters on the same column. #158
Previously, applying multiple filters to the same column (e.g., $gte and $lte for date ranges) would fail because the filter parsing logic only handled single operators per column. This commit modifies the filter parsing to detect when multiple operators are applied to the same column and automatically converts them into an AND composite filter.

This enables common use cases like filtering records within a date range:
- filter[date][$gte]=2025-01-01&filter[date][$lte]=2025-12-31

The fix is applied to parsing paths in filter.rs and includes a test to verify the behavior.
2025-09-29 11:15:54 +02:00
Sebastian Jeltsch
42ea051772 Update blog example's JSON schemas and generated types after changing FileUpload. Also update dart/Flutter dependencies. 2025-09-26 22:05:06 +02:00
Sebastian Jeltsch
d94f491b81 Create a new unique filename for uploads {stem}_{rand#10}.{ext} in accordance with e.g. vite or PB. Use this as the primary way of accessing files. Having a filename extension may be useful for some consumers and having a unique name helps with content-caching strategies. #155
Also strip/hide uuid. Not really secret but we don't want folks to rely on it over the unique filename.
2025-09-26 14:19:18 +02:00
Sebastian Jeltsch
353b913fe3 Update JavaScript dependencies. Fixes #157. 2025-09-25 23:16:04 +02:00
Sebastian Jeltsch
b3084aee96 Add auth UI installation to getting started sections. 2025-09-24 22:14:49 +02:00
Sebastian Jeltsch
5802219c39 Update JavaScript dependencies. 2025-09-18 15:57:52 +02:00
Sebastian Jeltsch
3dc74d4df9 Update admin UI to tailwind v4. 2025-09-12 12:56:06 +02:00
Sebastian Jeltsch
ced96071f4 Update JavaScript dependencies. 2025-09-12 11:14:37 +02:00
Sebastian Jeltsch
57fce9934b Minor: expand a bit more on deno's bundling of V8 via pre-compiled lib. 2025-09-11 13:20:55 +02:00
Sebastian Jeltsch
99a9effe36 Minor: remove WASM from roadmap to avoid confusion, it's well under way. 2025-09-11 10:57:10 +02:00
Sebastian Jeltsch
c0622282fe Minor: spell-check and add more referencs to existing docs. 2025-09-10 11:54:09 +02:00
Sebastian Jeltsch
6c142d1506 Prepare new release v0.17. 2025-09-09 20:59:25 +02:00
Sebastian Jeltsch
4b9df89104 Update JS dependencies. 2025-09-09 20:45:28 +02:00
Sebastian Jeltsch
5dbe253cb0 Update documentation to cover the new WASM runtime. 2025-09-09 18:22:36 +02:00
Sebastian Jeltsch
5cb677ae55 Migrate examples/coffee-vector-search to WASM. 2025-09-09 18:22:36 +02:00
Sebastian Jeltsch
797423fa91 docs: revert url construction for githubCodeReference. Thanks @lukasz0707. Fixes #145. 2025-09-08 22:51:52 +02:00
Sebastian Jeltsch
f317434e01 Check repo links in more replaces to protect against stale documentation references. 2025-09-08 11:01:09 +02:00
Sebastian Jeltsch
d1cd743775 Fix tanstack example link. #143 2025-09-07 15:12:39 +02:00
Sebastian Jeltsch
e48623ae35 Update JS dependencies. 2025-08-31 11:58:28 +02:00
Sebastian Jeltsch
240cc1d775 Minor: switch to "eslint-plugin-better-tailwindcss" to re-enable tailwind eslinting with tw@v4. 2025-08-27 12:23:18 +02:00
Sebastian Jeltsch
81813ab904 Add a skeleton "blog" system to the website for updates. 2025-08-27 11:10:41 +02:00
Sebastian Jeltsch
23cb966f6d Update Rust and JS dependencies. 2025-08-19 17:40:26 +02:00
Sebastian Jeltsch
03fdc28031 Prepare new relaese v0.16.4. 2025-08-12 16:23:01 +02:00