Skip to content

0.92.0

Compare
Choose a tag to compare
@github-actions github-actions released this 28 Jun 11:05
· 20088 commits to develop since this release
000ecd8

πŸš€ NocoDB : Feature Release

image

What's New

  • πŸš€ Binary Executables
  • πŸš€ Homebrew
  • πŸš€ JSON Import
  • πŸš€ Duration Cell
  • πŸš€ And we're hiring! πŸš€

Binary Executables

NocoDB installation has gotten more seamless as we now support installation as binaries.

MacOS (x64)
curl http://get.nocodb.com/macos-x64 -o nocodb -L \
  && chmod +x nocodb \
  && ./nocodb
MacOS (arm64)
curl http://get.nocodb.com/macos-arm64 -o nocodb -L \
  && chmod +x nocodb \
  && ./nocodb
Linux (x64)
curl http://get.nocodb.com/linux-x64 -o nocodb -L \
  && chmod +x nocodb \
  && ./nocodb
Linux (arm64)
curl http://get.nocodb.com/linux-arm64 -o nocodb -L \
  && chmod +x nocodb \
  && ./nocodb
Windows (x64)
iwp http://get.nocodb.com/win-x64
.\Noco-win-x64.exe
Windows (arm64)
iwp http://get.nocodb.com/win-arm64
.\Noco-win-arm64.exe

Currently, we only support the following targets:

  • node16-linux-arm64
  • node16-macos-arm64
  • node16-win-arm64
  • node16-linux-x64
  • node16-macos-x64
  • node16-win-x64

Also you can find the release build under the release note.

image

Homebrew

Now you can use Homebrew to install NocoDB!

brew tap nocodb/nocodb
brew install nocodb
nocodb

JSON Import

Now you can import data and table from a JSON array or object.

Screen.Recording.2022-06-28.at.2.08.54.PM.mov.conv.mov

Duration Cell

Five formats are supported in Duration Cell now!

image

Misc

  • Airtable import now has view import enabled by default
  • Health API - /api/v1/health
  • LTAR Rename
    • TableMMList => Table List (MM)
    • TableList => Table List (HM)
    • TableRead => Table (BT)
  • Support non-dbo schema in MSSQL
  • Bug fixes

What's Changed

New Contributors

Full Changelog: 0.91.10...0.92.0