Releases: oseamiya/Baserow
4.1
In this release, new methods to filter, search and order table of baserow database are added. Also, internal working of GetAllRows
& GetColumn
method is changed which now will calculate max data to fetch without waiting for the error which make these method one-response faster than of version 3.2.
V3.2
Before this version, In V3.1, When you assign size parameter more than 200, It will handle all problems within extension itself and give you all the rows Id available in your particular table. However, This is not a good idea. For example, If I table of row size more than 1000 & I wanted to load only first 400 rows then too, It would have fetched 1000 rows.
Now, This update will fix this scenario. If you assign value as 400 then you will only get max value up-to 400. That would really helpful to load database faster and handle the workflow more clearly.
V3.1
Before this update, 1 page should only extends to size of 200 & if size is more then you will get the error. However, this update will handle the size & now if you size is more than 200 then it will automatically jump 1 page more to get all the data-s available.
Version 3.0
In this release, GetRow method has been updated to fix the issue of GetRow method which was returning fields name instead of rows list.
Also, New methods for uploading file through url is added which requires params jwtToken
& url
. jwtToken
can be generated through a method GenerateToken
, can be refreshed with RefreshToken
and can be checked it's validity through VerifyToken
.
Version 2.1
This version has fixed several issues of the extension like no. of rows, and serious issue while passing queryparamters.