This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
v1.5.0 #105
dstpierre
announced in
Announcements
v1.5.0
#105
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It's been 6 months since the last version was released. Here's what new in v1.5.0.
SQLite database provider
Mainly added to increase the experience of the CLI for local development where the data can persists across server shutdowns.
For apps that do not require huge throughput from the database or if you don't want to pay for a dedicated PostgreSQL or Mongo instance, this could be a good option.
Full-text earch
A simple full-text search is now available for tenants. They way to fill the search index is via server-side function. One good option would be to have functions triggers on the
collection
you want to have search on and reacting to thedb_created
anddb_updated
message. The function to inde is calledindexDocument
:Schedule jobs & system messages clean-up
There's been a UI created to schedule jobs. Job schedule uses the cron-like format, for instance running a function each 15 minutes would have the following format: */15 * * * * *.
A global clean-up was made to ensure everything is smooth now with schedule jobs and message passing.
A job can have 3 action type: a) run a server-side function b) publish a message and c) make an HTTP call.
Other new features:
sendMail
added to server-side functioncacheGet
,cacheSet
,inc
,dec
andpublish
functions to server-side runtimeBug fixes
Thanks to all contributors, your help is always highly appreciated.
This discussion was created from the release v1.5.0.
Beta Was this translation helpful? Give feedback.
All reactions