Changelog - 5.7.0 Betas
5.7.1-beta.10 (25/08/2021)
Features
FRM-1748 -
common: AddedVsAuthenticationCanLoadclass, which avoids errors related toRouteResolvercalls being requested without SDK headers (authorization/company/userId).
Usage:
import { VsAuthenticationCanLoad } from '@viasoft/common';
// ...
const routes: Routes = [
{
path: 'my-path',
component: MyComponent,
canLoad: [VsAuthenticationCanLoad]
},
// ...
];
Bug Fixes
FRM-1740 -
common: Licensing dialog could throw a “Cannot read property of undefined” error.
5.7.0-beta.9 (11/08/2021)
Breaking Changes
FRM-1440 -
text-editor: Moved thetext-editorcomponent to a separate libraryTo migrate, simply install
@viasoft/text-editorand fix alltext-editor-related imports
Dependency Changes
Dependency |
Status |
|---|---|
ngx-quill |
❌ Removed |
quill |
❌ Removed |
Note: If your apps and/or libraries use the ``text-editor`` component, you shouldn’t apply these changes.
Housekeeping
FRM-1754: Removed unused files and libraries.
5.7.0-beta.8 (10/08/2021)
Breaking Changes
FRM-1441 -
map: Moved themapcomponent to a separate libraryTo migrate, simply install
@viasoft/mapand fix allmap-related imports
Dependency Changes
Dependency |
Status |
|---|---|
@agm/core |
❌ Removed |
@asymmetrik/ngx-leaflet |
❌ Removed |
leaflet |
❌ Removed |
Note: If your apps and/or libraries use the ``map`` component, you shouldn’t apply these changes.
Bug Fixes
5.7.0-beta.3 (22/06/2021)
Dependency Changes
Dependency |
Status |
Version |
|---|---|---|
@microsoft/signalr |
🔄 Updated |
5.0.7 |
Features
FRM-1686 - common: Custom services available for:
DataLivelyService
NotificationService
FRM-1686 -
common: Websocket connections now have anAutomaticReconnectflag.FRM-1686 -
common: Notifying users about a new notification can now be done usingNotificationService.notifyUser.FRM-1686 -
common: AddedshouldNotifyUserparameter toNotificationService.addNotification, letting you notify users about a new notification (defaulttrue).
Bug Fixes
FRM-1686 -
common: Internal subscriptions were not being unsubscribed after being used.FRM-1686 -
common: Only the first websocket notification was being showed.FRM-1686 -
navigation: Notification snackbar had low contrast on the action button.FRM-1686 -
common:DataLivelyNotificationUpdateIdInterceptorwas replacingNotificationUpdateIdheader.
Housekeeping
FRM-1686 -
common: Performance improvements inVsCommonModule.