alfresco-ng2-components/docs/breaking-changes/breaking-change-2.6.0-3.0.0.md
Maurizio Vitale 1fa81962a0
👽 Angular 14 rebase 👽 (#7769)
* fix after rebase

* new release strategy for ng next

Signed-off-by: eromano <eugenioromano16@gmail.com>

* peer dep

Signed-off-by: eromano <eugenioromano16@gmail.com>

* Angular 14

fix unit test and storybook

Signed-off-by: eromano <eugenioromano16@gmail.com>

fix after rebase

Signed-off-by: eromano <eugenioromano16@gmail.com>

update pkg.json

Signed-off-by: eromano <eugenioromano16@gmail.com>

missing dep

Signed-off-by: eromano <eugenioromano16@gmail.com>

Fix mistake and missing code

Dream....build only affected libs

Add utility run commands

* Use nx command to run affected tests

* Fix nx test core

fix content tests

Run unit with watch false

core test fixes

reduce test warnings

Fix process cloud unit

Fix adf unit test

Fix lint process cloud

Disable lint next line

Use right core path

Fix insights unit

fix linting insights

Fix process-services unit

fix the extensions test report

fix test warnings

Fix content unit

Fix bunch of content unit

* Produce an adf alpha of 14

* hopefully fixing the content

* Push back the npm publish

* Remove flaky unit

* Fix linting

* Make the branch as root

* Get rid of angualar13

* Remove the travis depth

* Fixing version for npm

* Enabling cache for unit and build

* Fix scss for core and paths

Copy i18 and asset by using ng-packager

Export the theming alias and fix path

Use ng-package to copy assets process-services-cloud

Use ng-package to copy assets process-services

Use ng-package to copy assets content-services

Use ng-package to copy assets insights

* feat: fix api secondary entry point

* fix storybook rebase

* Move dist under dist/libs from lib/dist

* Fix the webstyle

* Use only necessary nrwl deps and improve lint

* Fix unit for libs

* Convert lint.sh to targets - improve performance

* Use latest of angular

* Align alfresco-js-api

Signed-off-by: eromano <eugenioromano16@gmail.com>
Co-authored-by: eromano <eugenioromano16@gmail.com>
Co-authored-by: Mikolaj Serwicki <mikolaj.serwicki@hyland.com>
Co-authored-by: Tomasz <tomasz.gnyp@hyland.com>
2022-08-25 10:50:30 +01:00

8.9 KiB

Title
Title
Breaking changes, 2.6.0 -> 3.0.0

Breaking changes, 2.6.0 -> 3.0.0

This document lists all the deprecated ADF v2.x components that were removed for v3.0.0:

  • PR ADF-3354: The adf-accordion component has been removed.

    <adf-accordion>
        <adf-accordion-group>
        ...
    

    Use the Angular Material Expansion Panel as an alternative.

  • PR ADF-3746: In order to prevent our ADF style classes interfering with other projects, a new set of style lint rules has been added. These rules enforce the use of the adf- prefix in all our classes. Please refer to the PR to see the list of the all styles that were changed. If you have been rewriting any ADF classes without the adf- prefix, you will now need to update them. For example, .card-view is now .adf-card-view.

  • PR ADF-1443: DownloadZipDialogComponent and NodeDownloadDirective have been moved from the Content Services module to the Core module. This modification has enabled us to remove some code duplication between the two modules.

  • PR ADF-1873:

    • adf-search-control: The QueryBody, and customQueryBody inputs of the SearchControlComponent have been removed in favor of the custom search configuration interface. The inputs were deprecated in v2.1.0.
    • <adf-viewer>: The fileNodeId input that supplies the Node Id of the file to load has been renamed as nodeId.
    • <adf-viewer>: The allowShare input has been removed. Inject the Share Directive in a custom toolbar to recreate the behavior of the Share button.
    • <adf-viewer>: The allowSidebar input has now been split into allowLeftSidebar and allowRightSidebar.
    • <adf-viewer>: The showSidebar input has now been split into showLeftSidebar and showRightSidebar.
    • <adf-viewer>: The sidebarTemplate input has now been split into sidebarLeftTemplate and sidebarRightTemplate.
    • <adf-viewer>: The sidebarPosition input has been removed since it is not needed anymore (you can now have two sidebars on the left and right at the same time).
    • analytics-report-list is now adf-analytics-report-list.
    • analytics-report-parameters is now adf-analytics-report-parameters.
    • CommentProcessModel was moved into the Core library with the name CommentModel in v2.3.0. Now you can only import it from CoreModule.
    • CommentsModule, CommentListComponent, and CommentsComponent are no longer exported from ProcessModule but now from CoreModule. The old usage was deprecated in v2.3.0.
    • <adf-upload-drag-area>: The parentId input has been renamed as rootFolderId. The old name was deprecated in v2.4.0.
    • The createFolder event of the UploadBase class (emitted when a folder was created) was deprecated in v2.4.0 and is no longer used by the framework Use the success event instead.
    • <adf-filters> is now <adf-task-filters>. The old usage was deprecated in v2.4.0.
    • adf-restore, which was deprecated in v2.4.0, has been removed because it was not working properly. A new feature to implement this functionality correctly has been created. See ADF-3901 for more information.
    • <adf-form>: The onError event (emitted when any error occurs) was deprecated in v2.4.0. It has now been renamed as error.
    • context-menu-holder is now adf-context-menu-holder.
    • The file-draggable event (emitted when one or more files are dragged and dropped onto the draggable element) was deprecated in v2.4.0 and has now been removed. Use filesDropped instead to get the same effect.
    • The DocumentListService.hasPermission method was redundant and has now been removed. Use ContentService.hasAllowableOperations instead.
    • The diagram-sequence-flow tag has now been renamed as adf-diagram-sequence-flow. The old name was deprecated in v2.3.0.
    • The diagram-alfresco-publish-task tag has now been renamed as adf-diagram-publish-task. The old name was deprecated in v2.3.0.
    • <adf-login>: The disableCsrf input has been removed. Use the disableCsrf property in app.config.json instead.
    • <adf-login>: The providers input has been removed. Use the providers property in app.config.json instead.
    • <adf-document-list>: The skipCount input has been removed. You can define the same value in pagination using the pageSize property.
    • <adf-document-list>: The enableInfiniteScrolling input has been removed since it is not used anymore. To choose the pagination strategy, add either the Infinite Pagination Component or the normal Pagination Component and assign your document list as the target.
    • <adf-document-list>: The folderNode input has been removed. Use the currentFolderId and node inputs instead.
    • SettingsService has been removed. This was deprecated in v1.7.0.
    • FormService: the addFieldsToAForm method has been removed.
    • <file-uploading-dialog> has been renamed to <adf-file-uploading-dialog>.
  • PR JS-API:

    • The name package of the JS-API has been modified to use the namespace and all alfresco-js-api imports need to be modified to @alfresco/js-api. See the official JS-API documentation for more details on how to use the new v3.0.0 Legacy Endpoint porting.

    • The JS-API callApi method signature has been modified. The authNames parameter has now been removed because the type of authentication is configured when the JS-API is constructed.

      v2.6.1 and before:

      callApi(
          path: string,
          httpMethod: string,
          pathParams?: any,
          queryParams?: any,
          headerParams?: any,
          formParams?: any,
          bodyParam?: any,
          authNames?: string[],
          contentTypes?: string[],
          accepts?: string[],
          returnType?: any,
          contextRoot?: string,
          responseType?: string
      ): Promise<any>;
      

      After v3.0.0:

      callApi(
          path: string,
          httpMethod: string,
          pathParams?: any,
          queryParams?: any,
          headerParams?: any,
          formParams?: any,
          bodyParam?: any,
          contentTypes?: string[],
          accepts?: string[],
          returnType?: any,
          contextRoot?: string,
          responseType?: string
      ): Promise<any>;
      
  • PR ADF-4062

    • adf-node-permission has been renamed adf-check-allowable-operation.
    • ContentService.hasPermission was actually checking the allowableOperation value and has been renamed as ContentService.hasAllowableOperations.
    • ContentService.hasPermissions is a new method which actually does check the permissions.