Releases: sqlinkjs/SQLink
Releases · sqlinkjs/SQLink
v1.1.9
v1.1.8
This release includes
- Enum generation for MySQL table
- Typo fixes at few places
v1.1.7
Nothing new in this guys, its just a bug fix on the file upload API.
Will add more features later. :)
v1.1.6
Sqlink Version 1.1.6
This release contains:
- Ability to upload multiple files to
/upload
route. (upto 50 files once) - Integration of
/login
and/register
API's to handle queries based on JWT token - Use
sqlink run auth
to run the application with authentication enabled (no authentication by default)
v1.1.5
v1.1.5
Implementations:
- use /upload end point to upload any file upto 500 MB
- all uploaded files can be access from BASE_URL/file/FILE_NAME
v1.1.4
Now you can host static files using sqlink
`
use sqlink host PORT PATH
Example:
sqlink host 3002 /home/user/data
`
With this you can access any file hosted in the PATH which is mentioned above, this can be used when getting a static JSON or image file.
v1.1.3
- Port addition in mysql connector
v1.1.2 (20 August 2024)
Features and Improvements
- added /upsert feature with POST method
- added /distinct API with GET method
Check docs: https://sqlinkjs.github.io/docs/version/1.1.2.html
v1.1.1 (18 August 2024)
Initial stable release of the library (v1.1.1)
Features
- Create (/create) POST
- Read (/read) GET
- Update (/update) UPDATE
- Delete (/delete) DELETE
- Procedure (/procedure) GET