Skip to content

Releases: codebar-ag/laravel-docuware

v1.3.0

21 Dec 10:17
0570d4d

Choose a tag to compare

  • Added support for Table Fields that have been implemented in Docuware >= 7.1
  • Added search parameters into the configurations
'search' => [
            'operation' => 'And',
            'force_refresh' => true,
            'include_suggestions' => false,
            'additional_result_fields' => [],
        ],
    ],
  • Added dynamic test configuration values
   'tests' => [
        'file_cabinet_id' => env('DOCUWARE_TESTS_FILE_CABINET_ID'),
        'dialog_id' => env('DOCUWARE_TESTS_DIALOG_ID'),
        'basket_id' => env('DOCUWARE_TESTS_BASKET_ID'),
        'document_id' => 1,
        'document_file_size_preview' => (int) env('DOCUWARE_TESTS_DOCUMENT_FILE_SIZE_PREVIEW'),
        'document_file_size' => (int) env('DOCUWARE_TESTS_DOCUMENT_FILE_SIZE'),
        'document_ids' => [1, 2],
        'documents_file_size' => (int) env('DOCUWARE_TESTS_DOCUMENTS_FILE_SIZE'),
        'field_name' => env('DOCUWARE_TESTS_FIELD_NAME'),
    ],

v1.2.2

28 Sep 00:32
d62240c

Choose a tag to compare

Merge pull request #36 from codebar-ag/feature-auth

Feature | manual request cookie

v1.2.1

26 Sep 16:20
7fa3e0c

Choose a tag to compare

Merge pull request #34 from codebar-ag/feature-v-1-2

Fixed Wrong CACHE .env

v1.2.0

26 Sep 16:09
86a2d07

Choose a tag to compare

  • Requires PHP 8.1

1.1.1

02 Sep 15:15
cd01e99

Choose a tag to compare

Merge pull request #31 from codebar-ag/feature-debug

Feature Debug

1.1.0

22 Jul 12:11

Choose a tag to compare

  • Added error property to the DocumentPaginator. This is used for failed
    requests otherwise it is null. When the request fails for any reason an
    ErrorBag is added with more information. Example:
CodebarAg\DocuWare\DTO\DocumentPaginator {
  ...
  +error: CodebarAg\DocuWare\DTO\ErrorBag {
    +code: 422
    +message: "'00000000-0000-0000-0000-0000000000000' is not valid cabinet id"
  }
}

1.0.0

14 Jul 06:55

Choose a tag to compare

⚠️ This release introduces breaking changes. Update with caution ⚠️

  • Stable release.
  • [Breaking Change]: Searching in multiple file cabinets have been changed.
    The search no longer supports additionalFileCabinets(). Please use
    fileCabinets() instead. Example:
$paginator = DocuWare::search()
    ->fileCabinet('id-first')
    ->additionalFileCabinets(['id-second'])
    ->get();

Changed to:

$paginator = DocuWare::search()
    ->fileCabinets(['id-first', 'id-second'])
    ->get();

0.7.0

30 Jun 14:43

Choose a tag to compare

  • Added valid until date for the encrypted URL.

0.6.0

23 Jun 13:33

Choose a tag to compare

  • Added feature to create encrypted URL.
  • Added new environment variable for the passphrase DOCUWARE_PASSPHRASE.

0.5.0

21 Jun 10:23

Choose a tag to compare

  • Added feature to upload document with index values.