This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
Releases: factorialco/tentaclesql
Releases · factorialco/tentaclesql
v0.2.2
v0.2.1
v0.2.0
With this new release you can provide your schema among the POST request.
You only need to provide the schema in json format under config.schema
payload. Example:
curl -H "Content-type: application/json" -X POST -d '{"query": "SELECT 1;", "config": {"schema": [{"name": "my_table", "url": "https://exmple.com"}]}}' http://localhost:3000/
v0.1.12
v0.1.11
v0.1.10
v0.1.9
Added SQLite extensions from https://github.com/nalgeon/sqlean
Now you can enable all these extensions by providing the configuration into your POST requests:
curl -H "Content-type: application/json" -X POST -d '{"query": "SELECT 1;", "config": {"extensions": ["json1"]}}' http://localhost:3000/
v0.1.8-beta
- Add support for unions
v0.1.7-beta
Fix build
v0.1.6-beta
Fix build