• Stable

    aronwk released this 2025-11-29 16:29:02 -06:00 | 20 commits to main since this release

    📅 Originally published on GitHub: Sat, 29 Nov 2025 22:29:09 GMT
    🏷️ Git tag created: Sat, 29 Nov 2025 22:29:02 GMT

    • #638 ae3abe9 Thanks @CorentinTh! - Added the possibility to filter out some email domain names for new registration

    • #633 d267605 Thanks @CorentinTh! - Lazy load some demo-mode specific code to reduce production client bundle

    • #618 868281b Thanks @CorentinTh! - Added translations for document table headers

    • #653 ca80806 Thanks @CorentinTh! - Added some logging context when an intake email is received

    • #650 dc6ee5b Thanks @CorentinTh! - Api breaking change: the document search endpoint return format changed, impacting any custom clients consuming it.

      Before

      // Get /api/organizations/:organizationId/documents/search
      {
        documents: {
          id: string;
          name: string;
          mimeType: string;
          // ... other document fields
        }
        [];
      }
      

      After

      // Get /api/organizations/:organizationId/documents/search
      {
        searchResults: {
          documents: {
            id: string;
            name: string;
          }
          [];
        }
      }
      
    • #619 5b5ce85 Thanks @CorentinTh! - Limit concurrent browser upload to avoid network crashes

    • #609 cb1f1b5 Thanks @dbarenholz! - Made the tags clickable in the tag list

    • #655 08f4a1c Thanks @CorentinTh! - Intake email edge case: use original destination addresses when available for intake emails when forwarded

    • #660 9b43baf Thanks @bkwi! - Removed the possibility for unauthorized upload to another organization you're not member of

    • #616 1922f24 Thanks @CorentinTh! - Upgraded to node v24

    • #607 abc463f Thanks @dbarenholz! - Added Dutch translation

    • #625 ee9eff4 Thanks @CorentinTh! - Improved server authentication logging

    • #623 b087764 Thanks @CorentinTh! - Improved unique constraints error when dealing with hosted libsql db

    • #637 479a603 Thanks @CorentinTh! - Fix tags table overflow for long tag descriptions: added some text wrapping for the description

    • #657 96403c0 Thanks @CorentinTh! - Fix environment variable DOCUMENT_STORAGE_S3_FORCE_PATH_STYLE validation schema to account for boolean string

    Downloads