Release 8.1.0 (#11143)

This commit is contained in:
dominikiwanekhyland
2025-08-25 14:25:56 +02:00
committed by GitHub
parent 2e20c3da45
commit de537f0a0d
22 changed files with 159 additions and 36 deletions

View File

@@ -1,12 +1,12 @@
{
"name": "@alfresco/adf-cli",
"version": "9.0.0",
"version": "8.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@alfresco/adf-cli",
"version": "9.0.0",
"version": "8.1.0",
"license": "Apache-2.0",
"dependencies": {
"@alfresco/js-api": ">=9.0.0",

View File

@@ -1,7 +1,7 @@
{
"name": "@alfresco/adf-cli",
"description": "Alfresco ADF cli and utils",
"version": "9.0.0",
"version": "8.1.0",
"author": "Hyland Software, Inc. and its affiliates",
"bin": {
"adf-cli": "bin/adf-cli",

View File

@@ -1,7 +1,7 @@
{
"name": "@alfresco/adf-content-services",
"description": "Alfresco ADF content services",
"version": "9.0.0",
"version": "8.1.0",
"author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
@@ -21,9 +21,9 @@
"@angular/platform-browser": ">=14.1.3",
"@angular/platform-browser-dynamic": ">=14.1.3",
"@angular/router": ">=14.1.3",
"@alfresco/js-api": ">=10.0.0",
"@alfresco/js-api": ">=9.1.0",
"@ngx-translate/core": ">=16.0.0",
"@alfresco/adf-core": ">=9.0.0"
"@alfresco/adf-core": ">=8.1.0"
},
"keywords": [
"content-services",

View File

@@ -1,7 +1,7 @@
{
"name": "@alfresco/adf-core",
"description": "Alfresco ADF core",
"version": "9.0.0",
"version": "8.1.0",
"author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
@@ -38,8 +38,8 @@
"@angular/router": ">=16.0.0",
"@mat-datetimepicker/core": ">=12.0.1",
"@ngx-translate/core": ">=16.0.0",
"@alfresco/js-api": ">=10.0.0",
"@alfresco/adf-extensions": ">=9.0.0",
"@alfresco/js-api": ">=9.1.0",
"@alfresco/adf-extensions": ">=8.1.0",
"minimatch": ">=10.0.0",
"pdfjs-dist": ">=3.3.122",
"ts-morph": ">=20.0.0"

View File

@@ -1,6 +1,6 @@
{
"name": "@alfresco/eslint-plugin-eslint-angular",
"version": "9.0.0",
"version": "8.1.0",
"description": "Alfresco ADF eslint angular custom rules",
"main": "main.js",
"author": "Hyland Software, Inc. and its affiliates",

View File

@@ -1,7 +1,7 @@
{
"name": "@alfresco/adf-extensions",
"description": "Provides extensibility support for ADF applications.",
"version": "9.0.0",
"version": "8.1.0",
"license": "Apache-2.0",
"author": "Hyland Software, Inc. and its affiliates",
"repository": {
@@ -14,7 +14,7 @@
"peerDependencies": {
"@angular/common": ">=14.1.3",
"@angular/core": ">=14.1.3",
"@alfresco/js-api": ">=10.0.0"
"@alfresco/js-api": ">=9.1.0"
},
"keywords": [
"extensions",

View File

@@ -1,7 +1,7 @@
{
"name": "@alfresco/adf-insights",
"description": "Alfresco ADF insights",
"version": "9.0.0",
"version": "8.1.0",
"author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
@@ -11,8 +11,8 @@
"url": "https://github.com/Alfresco/alfresco-ng2-components/issues"
},
"dependencies": {
"@alfresco/adf-core": ">=9.0.0",
"@alfresco/adf-content-services": ">=9.0.0",
"@alfresco/adf-core": ">=8.1.0",
"@alfresco/adf-content-services": ">=8.1.0",
"@ngx-translate/core": ">=14.0.0",
"chart.js": "^4.3.0",
"ng2-charts": "^4.1.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@alfresco/js-api",
"version": "10.0.0",
"version": "9.1.0",
"license": "Apache-2.0",
"description": "JavaScript client library for the Alfresco REST API",
"author": "Hyland Software, Inc. and its affiliates",

View File

@@ -662,7 +662,7 @@ export class Oauth2Auth extends AlfrescoApiClient {
universalBtoa(stringToConvert: string) {
try {
return btoa(stringToConvert);
} catch (err) {
} catch {
return Buffer.from(stringToConvert).toString('base64');
}
}
@@ -765,7 +765,7 @@ export class Oauth2Auth extends AlfrescoApiClient {
const ticketEntry = await authContentApi.getTicket();
this.config.ticketEcm = ticketEntry.entry.id;
this.emit('ticket_exchanged');
} catch (e) {
} catch {
// continue regardless of error
}
});

View File

@@ -16,7 +16,6 @@
*/
export class Storage {
private static instance: Storage;
_storage: any;
@@ -28,8 +27,8 @@ export class Storage {
}
}
public static getInstance(){
if(!Storage.instance){
public static getInstance() {
if (!Storage.instance) {
Storage.instance = new Storage();
}
return Storage.instance;
@@ -38,7 +37,7 @@ export class Storage {
supportsStorage() {
try {
return 'localStorage' in window && window.localStorage !== null;
} catch (e) {
} catch {
return false;
}
}

View File

@@ -229,7 +229,7 @@ export class SuperagentHttpClient implements HttpClient {
try {
document.cookie = 'CSRF-TOKEN=' + token + ';path=/';
} catch (err) {
} catch {
/* continue regardless of error */
}
}

View File

@@ -68,7 +68,7 @@ describe('WebScript', () => {
webscriptApi.executeWebScript('GET', 'sample/folder/Company%20Home').then((data) => {
try {
JSON.parse(data);
} catch (e) {
} catch {
done();
}
});

View File

@@ -1,7 +1,7 @@
{
"name": "@alfresco/adf-process-services-cloud",
"description": "Alfresco ADF process services cloud",
"version": "9.0.0",
"version": "8.1.0",
"author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
@@ -21,9 +21,9 @@
"@angular/platform-browser": ">=14.1.3",
"@angular/platform-browser-dynamic": ">=14.1.3",
"@angular/router": ">=14.1.3",
"@alfresco/js-api": ">=10.0.0",
"@alfresco/adf-core": ">=9.0.0",
"@alfresco/adf-content-services": ">=9.0.0",
"@alfresco/js-api": ">=9.1.0",
"@alfresco/adf-core": ">=8.1.0",
"@alfresco/adf-content-services": ">=8.1.0",
"@apollo/client": ">=3.7.2",
"@ngx-translate/core": ">=14.0.0",
"apollo-angular": ">=4.0.1"

View File

@@ -1,7 +1,7 @@
{
"name": "@alfresco/adf-process-services",
"description": "Alfresco ADF process services",
"version": "9.0.0",
"version": "8.1.0",
"author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
@@ -21,9 +21,9 @@
"@angular/platform-browser": ">=14.1.3",
"@angular/platform-browser-dynamic": ">=14.1.3",
"@angular/router": ">=14.1.3",
"@alfresco/js-api": ">=10.0.0",
"@alfresco/adf-core": ">=9.0.0",
"@alfresco/adf-content-services": ">=9.0.0",
"@alfresco/js-api": ">=9.1.0",
"@alfresco/adf-core": ">=8.1.0",
"@alfresco/adf-content-services": ">=8.1.0",
"@ngx-translate/core": ">=14.0.0"
},
"keywords": [