github nocodb/nocodb 0.91.0

latest releases: 0.207.2, 0.207.1, 0.207.0...
24 months ago

🚀 NocoDB : Feature Release : Import Airtable to NocoDB

Screenshot 2022-05-23 at 11 23 23

What's New :

  • 🚀 Import Airtable to NocoDB
  • 🚀 Import CSVs, Excel to NocoDB
  • 🚀 New APIs : GroupBy and Exists
  • 🚀 Column improvements : Ratings
  • 🚀 Formula enhancements
  • 🚀 And we're hiring! 🚀

Import Airtable to NocoDB

Now within a minute or two import all your Airtable bases to any MySQL, Postgres, SQL server or SQLite databases using NocoDB!

Import.Airtable.to.NocoDB.mov

See Documentation - Import Airtable to NocoDB for details.

Import from CSV

We support users to import CSV data to an existing project.

See Documentation - Import CSV data into an existing project for details.

image

Import from Excel

We support users to import Excel data to an existing project. If an Excel file includes multiple sheets, they will be considered as different tables and users can manipulate the meta before the actual import.

See Documentation - Import Excel data into an existing project for details.

image

New APIs

We've introduced two new APIs - exist & groupby.

Exist

Exist API allows users to check if the row with provided primary key(s) exists or not. The result would be either true or false.

For table row,

curl --request GET \
--url 'http://localhost:8080/api/v1/db/data/<org>/<projectName>/<tableName>/<ID>/exist' \
--header 'xc-auth: <REDACTED>'

For table view,

curl --request GET \
--url 'http://localhost:8080/api/v1/db/data/<org>/<projectName>/<tableName>/views/<viewName>/<ID>/exist' \
--header 'xc-auth: <REDACTED>'

GroupBy

Given a column name, return the number of records in each group.

For table row,

curl --request GET \
--url 'http://localhost:8080/api/v1/db/data/{orgs}/{projectName}/{tableName}/groupby?column_name=<COLUMN_NAME>' \
--header 'xc-auth: <REDACTED>'

For table view,

curl --request GET \
--url 'http://localhost:8080/api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/groupby?column_name=<COLUMN_NAME>' \
--header 'xc-auth: <REDACTED>'

Rating

Rating allows users to rate based on a comparative assessment with maximum rating allowed from 1 to 10. Users may change the rating symbol and color as well.

image

image image
image image

Formula enhancements

  • Add information message when double clicking formula cell and add help text by hovering the function name
image image
  • Add circular reference detection. Example: formula1 -> formula2 -> formula3 -> formula4 ("HELLO").
image image
  • Improve formula argument validations
image image

Closed Issues

  • [Status: Fixed][Type: In Development] [quick import] form view drag & drop opens up import modal #2044
  • [Status: Fixed][Type: In Development] [quick import] shared base view mode - displays add table header #2043
  • [closed] Feature request : Enforced primary key should be selectable non-integer #2006
  • [Type: Bug][DB: All] DateTime value not saved #1978
  • [Status: More Info Needed][Status: Fixed] Synologoy NAS : the 0.90.10 docker container crash #1970
  • [Type: Enhancement][Status: Need Internal Discussion] Query parameter to limit fields in returned relations [Feature] #1763

What's Changed

New Contributors

Full Changelog: 0.90.11...0.91.0

Join Our Team

Don't miss a new nocodb release

NewReleases is sending notifications on new releases.