Changelog

Shipped features, improvements, and fixes. Updated continuously.

June 20, 2026
Feature API

Folder-level webhooks and event filtering

Webhook subscriptions can now be scoped to a specific folder and filtered to individual event types, reducing noise for high-volume workspaces.

  • New folder_id parameter on webhook create and update endpoints scopes deliveries to a subtree
  • Event filter array accepts any combination of file.created, file.deleted, share.created, and folder.moved
  • Delivery logs now visible in workspace settings with a one-click replay button
June 10, 2026
Improvement

Upload resumability and parallel chunk transfers

Multipart uploads now resume automatically on network interruption. Parallel chunk transfers are enabled by default in the web app and SDKs.

  • Interrupted uploads resume from the last acknowledged byte, no restart needed
  • Web uploader defaults to 8 parallel chunks for files over 100 MB; configurable via upload options
  • Node.js SDK upload() gains a concurrency option (default 4)
  • Progress events now report per-chunk completion for accurate progress bars
May 28, 2026
Feature

Password-protected share links

Share links can now require a password before a recipient can view or download content. No account required on the recipient's side.

  • Set a password when creating or editing any share link in the web app or via the API
  • Password challenge page is served by Nomia, nothing to implement on your end
  • Passwords are bcrypt-hashed at rest; we never store the plaintext
  • Optional expiry still works alongside password protection
May 14, 2026
Fix Improvement

File search ranking and duplicate detection

Full-text search now ranks results by recency and access frequency rather than creation date alone. Duplicate detection highlights identical file content across folders.

  • Search results for common filenames (e.g. "invoice.pdf") now surface recently touched files first
  • Exact content duplicates shown with a badge in list view; one-click move to merge
  • Fixed a bug where files with Unicode filenames were excluded from search index
  • Search API gains sort parameter accepting relevance, modified, or created
April 30, 2026
Feature

Workspace audit log export

Business and Enterprise workspaces can now export a complete audit log as CSV or JSON, covering all file, folder, and permission events for any date range.

  • Export covers up to 365 days of history on Business; unlimited on Enterprise
  • Each row includes timestamp, actor email, IP address, event type, and affected resource ID
  • Streaming NDJSON download available via API for large exports (over 50,000 rows)
  • Webhook audit-event forwarding available as an alternative for real-time SIEM ingestion
April 11, 2026
Improvement

Folder permissions and role inheritance

Folder-level permissions now support viewer, commenter, editor, and manager roles. Subfolders inherit from their parent by default and can override independently.

  • Commenter role allows annotation without download access (useful for design review)
  • Manager role can add or remove members from a folder without needing workspace admin
  • Permission inheritance chain visible in the folder info panel
  • API endpoints for folder member list, add, update, and remove are now stable (no longer beta)
March 27, 2026
Feature API

S3-compatible API in general availability

The Nomia S3-compatible endpoint exits beta. Any tool or SDK that supports the AWS S3 API can point at Nomia with no code changes beyond the endpoint URL and credentials.

  • Endpoint: https://s3.nomiastorage.com
  • Supports PutObject, GetObject, DeleteObject, ListObjects v1 and v2, multipart upload
  • Generate S3 credentials per workspace from the API keys section in settings
  • Existing S3 buckets can be migrated with aws s3 sync directly