Attention: If you skipped one or more release, please also check the release-notes of the skipped ones.

Repositories

This release consists of the following new versions of the livingdocs-server and the livingdocs-editor:

PackageVersion
@livingdocs/serverv75.17.12
@livingdocs/editorv35.24.24

Livingdocs Server

How to require the server in your package.json:

"dependencies": {
  "@livingdocs/server": "v75.17.12",
}

Livingdocs Server Patches

  • v75.17.12: fix: trigger rebuild
  • v75.17.11: chore(elasticsearch): Remove unnecessary rest argument in addDateFilter
  • v75.17.10: fix(lock): store tab id
  • v75.17.9: fix: pin highlight.js to 9.14.2
  • v75.17.8: fix(add-density-config): add the density to image convert config

Change the convert config to an array and add the density for a convert object Update the simple config to the extended config

Removed the old coffee script and moved the test to the same location as in the master

  • v75.17.7: fix(s3): Fix the s3 configs to support a custom http agent
  • v75.17.6: fix(print-api): Add documentId to export fixed copySourceId
  • v75.17.5: fix: Remove assert-node-version.js from postinstall script as it’s causing issues. We’ll need to show a warning on server start instead of doing it on install.
  • v75.17.3: fix(logging): Use the correct object to pick properties
  • v75.17.2: indexing: Fix query by epochTime in indexing api
  • v75.17.1: prometheus: Properly listen to event on metricsServer.once
  • v75.17.0: document-indexing: Fix search-index task

Livingdocs Editor

How to require the editor in your package.json:

"dependencies": {
  "@livingdocs/editor": "v35.24.24",
}

Livingdocs Editor Patches

  • v35.24.24: fix(print): Tweak print preview bottom bar

Make sure the print preview bottom bar fully covers the text counter it replaces.

  • v35.24.23: fix(component-sidebar): Hide filtered components using ng-show

With ng-show the sidebar DOM structure remains the same regardless of the filter applied.

  • v35.24.22: fix: Sanitize all user input on render to prevent script injection
  • v35.24.21: fix(selection-mode-btn): don’t disable the selection mode btn in selection mode state
  • v35.24.20: fix(scrolling-in-lists): The scrolling on the lists view doesn’t work for chrome 73 and firefox
  • v35.24.19: fix(lists-alphabetically): the sort is now alphabetically asc
  • v35.24.17: fix(lists-sorted-alphabetically): Fixed that the lists sorted alphabetically

The lists are now sorted alphabetically case insensitive. Before it was case sensitive.

  • v35.24.16: fix(prefill-component): Fixed the component prefill and metadata initial extraction

The component prefill and metadata initial extraction worked with isNew on a document. This feature didn’t work anymore and is removed now. Instead there is a isNew parameter on the transition.

  • v35.24.15: fix: improve logging + remove deletion of article after an error
  • v35.24.14: chore(lock): implement feedback
  • v35.24.13: fix(history): fix highlight for substates
  • v35.24.11: fix(project-settings): fix view and form state for static config
  • v35.24.10: fix(printPreview): fix bug causing incorrect preview sizing
  • v35.24.9: fix(package): pin highlight.js to 9.14.2

The latest version 9.15.1 is breaking the npm install due to a missing build file. Therefore we are pinning it to 9.14.2 with which the build is working again properly.

  • v35.24.8: fix(lock): allow larger minute values
  • v35.24.7: fix(print-metadata): check for department.name instead of id
  • v35.24.6: fix(printMetadata): add in-code comment
  • v35.24.5: fix(document-lists): sort lists alphabetically
  • v35.24.4: fix(metadata-mapper): make sure document reference is set on updater
  • v35.24.3: fix: improve softlock button styles
  • v35.24.2: fix: opposite logic for documentCreationDisabled used
  • v35.24.1: package: update nanoid to version 2.0.1
  • v35.24.0: images: improve image url validation

Highlights

Do not disturb mode 🎁

With a soft lock a user can indicate that she wants the document for herself and not to be disturbed by other editors taking over. Other editors are still able to take over (thus soft lock) but they need to confirm that they want to overwrite the soft lock. A soft lock has a configurable timeout after which it expires. If the user that requested the soft lock leaves the document, the soft lock will be automatically released. Same goes for closing of the browser.

Once the soft lock is enabled for a content-type (e.g. articles) a “Lock” button will be visible in the top toolbar.

To enable the do not disturb mode, add this code snippet to your metadata config:

{
  handle: 'documentSoftLock',
  type: 'li-document-soft-lock',
  config: {
    lockTimeout: 5 // change to your desired timeout in minutes
  }
}

Advanced Component Groups 🎁

In the editor, you can now search for components, expand and collapse groups.

To enable the advanced component groups, you have to add this configuration to the editor.

app: {
    editor: {
      insertPanel: {
        useAdvancedComponentGroups: true
      }
    }
}

Document Tree in Split Panel 🎁

Introduce a structural view of the document (tree view) in the split panel that allows a user to navigate the document by its component and container structure.

Breaking Changes πŸ”₯

Migrate the database

# run livingdocs-server migrate up to update to the newest database schema
# migration - 112-add-event-type-content-type-view-after-document-creation-updated.js
#   add event ContentTypeViewAfterDocumentCreationUpdated to the stream_events_types table
# migration - 113-add-event-type-content-type-document-creation-disabled-updated.js
#   add event ContentTypeDocumentCreationDisabledUpdated to the stream_events_types table
livingdocs-server migrate up

Other Changes