v1.4.1
Highlight 🎉
Trash
You can restore space, base, and table from trash now!
Drag and drop attachments to reorder
Community contributions from @zholadev ❤️
output.mp4
Upload attachment into cell
Upload via file
curl -X POST 'https://app.teable.io/table/__tableId__/record/__recordId__/__fieldId__/uploadAttachment' \
-H 'Authorization: Bearer __token__' \
-H 'Content-Type: multipart/form-data' \
-F 'file=@/path/to/your/file.jpg'
Upload via URL
curl -X POST 'https://app.teable.io/table/__tableId__/record/__recordId__/__fieldId__/uploadAttachment' \
-H 'Authorization: Bearer __token__' \
-H 'Content-Type: multipart/form-data' \
-F 'fileUrl=https://example.com/image.jpg'
Response Updated Record
{
"id": "rec123456789ABCDE",
"fields": {
"fld123456789ABCDE": [
{
"id": "act75TiSyhcS7hfrizW",
"name": "example.jpg",
"path": "table/example",
"size": 392903,
"token": "tokenxxxxx",
"width": 976,
"height": 1000,
"mimetype": "image/jpeg",
"presignedUrl": "https://sss.teable.io/pvt-assets/table/previewURL"
}
],
}
}
What's Changed
- fix: create record and modify field bad cases by @tea-artist in #879
- fix: undo link / formula field badcases by @tea-artist in #882
- feat: limit primary field type by @tea-artist in #883
- fix: can not clear show as for formula and rollup by @tea-artist in #884
- fix: some field and cell mutation error by @tea-artist in #886
- fix: lost synchronization after socket reconnected by @tea-artist in #888
- fix: get history ops error after reconnected by @tea-artist in #889
- fix: should clean rollup when clean link by @tea-artist in #891
- feat: integrate umami metrics by @tea-artist in #892
- fix: use server env by @tea-artist in #894
- fix: grid prefilling editable on disabled update record by @boris-w in #895
- feat: trash by @Sky-FE in #890
- fix: can not batch delete records when contains multiple link by @tea-artist in #899
- feat: attachment dnd by @zholadev in #878
- fix: e2e sqlite test fail by @tea-artist in #900
- feat: Added Elestio as one-click deploy option by @kaiwalyakoparkar in #853
- fix: formula crash when number NaN by @tea-artist in #902
- fix: the permission with the trash by @Sky-FE in #901
- feat: upload attachment api by @tea-artist in #903
- fix: minio private network by @tea-artist in #904
- fix: add internal port for minio by @tea-artist in #905
- chore: publish 1.4.1 release by @tea-artist in #906
New Contributors
- @zholadev made their first contribution in #878
- @kaiwalyakoparkar made their first contribution in #853
Full Changelog: v1.4.0...v1.4.1