From 3096b5e4a729d3b95e980730bf1edfea4ab3f202 Mon Sep 17 00:00:00 2001 From: Lio B Date: Fri, 29 Nov 2024 10:19:43 +0100 Subject: [PATCH 01/10] feat(container): update pci menu entries order (#14069) ref: TAPC-1818 Signed-off-by: Lionel Bueno --- .../universe/public-cloud/pci-menu.ts | 66 +++++------ .../navigation-tree/services/publicCloud.ts | 108 +++++++++--------- 2 files changed, 86 insertions(+), 88 deletions(-) diff --git a/packages/manager/apps/container/src/container/legacy/server-sidebar/universe/public-cloud/pci-menu.ts b/packages/manager/apps/container/src/container/legacy/server-sidebar/universe/public-cloud/pci-menu.ts index af686dfc33eb..751a4ab875aa 100644 --- a/packages/manager/apps/container/src/container/legacy/server-sidebar/universe/public-cloud/pci-menu.ts +++ b/packages/manager/apps/container/src/container/legacy/server-sidebar/universe/public-cloud/pci-menu.ts @@ -74,6 +74,19 @@ export function getPciProjectMenu( title: 'Instances', href: getURL('public-cloud', `#/pci/projects/${projectId}/instances`), }, + isFeaturesAvailable('instance-backup') && { + id: 'instance-backup', + title: 'Instance Backup', + href: getURL( + 'public-cloud', + `#/pci/projects/${projectId}/storages/instance-backups`, + ), + }, + isFeaturesAvailable('workflow-management') && { + id: 'workflow-management', + title: 'Workflow Management', + href: getURL('public-cloud', `#/pci/projects/${projectId}/workflow`), + }, ], }); } @@ -102,29 +115,13 @@ export function getPciProjectMenu( `#/pci/projects/${projectId}/storages/blocks`, ), }, - isFeaturesAvailable('object-storage') && { - id: 'object-storage', - title: 'Object Storage', - href: getURL( - 'public-cloud', - `#/pci/projects/${projectId}/storages/objects`, - ), - }, - isFeaturesAvailable('archive') && { - id: 'archive', - title: 'Cloud Archive', - href: getURL( - 'public-cloud', - `#/pci/projects/${projectId}/storages/cloud-archives`, - ), - }, - isFeaturesAvailable('cold-archive') && { - id: 'cold-archive', - title: 'Cold Archive', + isFeaturesAvailable('volume-backup') && { + id: 'volume-backup', + title: 'Volume Backup', badge: 'new', href: getURL( 'public-cloud', - `#/pci/projects/${projectId}/storages/cold-archive`, + `#/pci/projects/${projectId}/storages/volume-backup`, ), }, isFeaturesAvailable('snapshot') && { @@ -135,27 +132,30 @@ export function getPciProjectMenu( `#/pci/projects/${projectId}/storages/volume-snapshots`, ), }, - isFeaturesAvailable('volume-backup') && { - id: 'volume-backup', - title: 'Volume Backup', - badge: 'new', + isFeaturesAvailable('object-storage') && { + id: 'object-storage', + title: 'Object Storage', href: getURL( 'public-cloud', - `#/pci/projects/${projectId}/storages/volume-backup`, + `#/pci/projects/${projectId}/storages/objects`, ), }, - isFeaturesAvailable('instance-backup') && { - id: 'instance-backup', - title: 'Instance Backup', + isFeaturesAvailable('cold-archive') && { + id: 'cold-archive', + title: 'Cold Archive', + badge: 'new', href: getURL( 'public-cloud', - `#/pci/projects/${projectId}/storages/instance-backups`, + `#/pci/projects/${projectId}/storages/cold-archive`, ), }, - isFeaturesAvailable('workflow-management') && { - id: 'workflow-management', - title: 'Workflow Management', - href: getURL('public-cloud', `#/pci/projects/${projectId}/workflow`), + isFeaturesAvailable('archive') && { + id: 'archive', + title: 'Cloud Archive', + href: getURL( + 'public-cloud', + `#/pci/projects/${projectId}/storages/cloud-archives`, + ), }, ], }); diff --git a/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/navigation-tree/services/publicCloud.ts b/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/navigation-tree/services/publicCloud.ts index 8e09566e1f94..36fddf519e69 100644 --- a/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/navigation-tree/services/publicCloud.ts +++ b/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/navigation-tree/services/publicCloud.ts @@ -54,7 +54,7 @@ pciNode.children = [ idAttr: 'pci-compute-link', universe: PUBLICCLOUD_UNIVERSE_ID, translation: 'sidebar_pci_compute', - features: ['instance'], + features: ['instance', 'instance-backup', 'workflow-management'], forceVisibility: true, children: [ { @@ -70,6 +70,32 @@ pciNode.children = [ features: ['instance'], forceVisibility: true, }, + { + id: 'pci-instance-backup', + idAttr: 'pci-instance-backup-link', + universe: PUBLICCLOUD_UNIVERSE_ID, + translation: 'sidebar_pci_instance_backup', + serviceType: 'CLOUD_PROJECT_SNAPSHOT', + routing: { + application: 'public-cloud', + hash: '#/pci/projects/{projectId}/storages/instance-backups', + }, + features: ['instance-backup'], + forceVisibility: true, + }, + { + id: 'pci-workflow', + idAttr: 'pci-workflow-link', + universe: PUBLICCLOUD_UNIVERSE_ID, + translation: 'sidebar_pci_workflow', + serviceType: 'CLOUD_PROJECT_WORKFLOW_BACKUP', + routing: { + application: 'public-cloud', + hash: '#/pci/projects/{projectId}/workflow', + }, + features: ['workflow-management'], + forceVisibility: true, + }, ], }, { @@ -82,7 +108,6 @@ pciNode.children = [ 'object-storage', 'snapshot', 'volume-backup', - 'instance-backup', 'archive', 'cold-archive', ], @@ -102,42 +127,16 @@ pciNode.children = [ forceVisibility: true, }, { - id: 'pci-object-storage', - idAttr: 'pci-object-storage-link', - universe: PUBLICCLOUD_UNIVERSE_ID, - translation: 'sidebar_pci_object_storage', - serviceType: 'CLOUD_PROJECT_STORAGE_OBJECTS', - routing: { - application: 'public-cloud', - hash: '#/pci/projects/{projectId}/storages/objects', - }, - features: ['object-storage'], - forceVisibility: true, - }, - { - id: 'pci-cloud-archive', - idAttr: 'pci-cloud-archive-link', - universe: PUBLICCLOUD_UNIVERSE_ID, - translation: 'sidebar_pci_cloud_archive', - serviceType: 'CLOUD_PROJECT_STORAGE_ARCHIVES', - routing: { - application: 'public-cloud', - hash: '#/pci/projects/{projectId}/storages/cloud-archives', - }, - features: ['archive'], - forceVisibility: true, - }, - { - id: 'pci-cold-archive', - idAttr: 'pci-cold-archive-link', + id: 'pci-volume-backup', + idAttr: 'pci-volume-backup-link', universe: PUBLICCLOUD_UNIVERSE_ID, - translation: 'sidebar_pci_cold_archive', - serviceType: 'CLOUD_PROJECT_STORAGE_COLD_ARCHIVES', + translation: 'sidebar_pci_volume_backup', + serviceType: 'CLOUD_PROJECT_VOLUME_BACKUP', routing: { application: 'public-cloud', - hash: '#/pci/projects/{projectId}/storages/cold-archive', + hash: '#/pci/projects/{projectId}/storages/volume-backup', }, - features: ['cold-archive'], + features: ['volume-backup'], forceVisibility: true, tag: NodeTag.NEW, }, @@ -155,45 +154,45 @@ pciNode.children = [ forceVisibility: true, }, { - id: 'pci-volume-backup', - idAttr: 'pci-volume-backup-link', + id: 'pci-object-storage', + idAttr: 'pci-object-storage-link', universe: PUBLICCLOUD_UNIVERSE_ID, - translation: 'sidebar_pci_volume_backup', - serviceType: 'CLOUD_PROJECT_VOLUME_BACKUP', + translation: 'sidebar_pci_object_storage', + serviceType: 'CLOUD_PROJECT_STORAGE_OBJECTS', routing: { application: 'public-cloud', - hash: '#/pci/projects/{projectId}/storages/volume-backup', + hash: '#/pci/projects/{projectId}/storages/objects', }, - features: ['volume-backup'], + features: ['object-storage'], forceVisibility: true, - tag: NodeTag.NEW, }, { - id: 'pci-instance-backup', - idAttr: 'pci-instance-backup-link', + id: 'pci-cold-archive', + idAttr: 'pci-cold-archive-link', universe: PUBLICCLOUD_UNIVERSE_ID, - translation: 'sidebar_pci_instance_backup', - serviceType: 'CLOUD_PROJECT_SNAPSHOT', + translation: 'sidebar_pci_cold_archive', + serviceType: 'CLOUD_PROJECT_STORAGE_COLD_ARCHIVES', routing: { application: 'public-cloud', - hash: '#/pci/projects/{projectId}/storages/instance-backups', + hash: '#/pci/projects/{projectId}/storages/cold-archive', }, - features: ['instance-backup'], + features: ['cold-archive'], forceVisibility: true, + tag: NodeTag.NEW, }, { - id: 'pci-workflow', - idAttr: 'pci-workflow-link', + id: 'pci-cloud-archive', + idAttr: 'pci-cloud-archive-link', universe: PUBLICCLOUD_UNIVERSE_ID, - translation: 'sidebar_pci_workflow', - serviceType: 'CLOUD_PROJECT_WORKFLOW_BACKUP', + translation: 'sidebar_pci_cloud_archive', + serviceType: 'CLOUD_PROJECT_STORAGE_ARCHIVES', routing: { application: 'public-cloud', - hash: '#/pci/projects/{projectId}/workflow', + hash: '#/pci/projects/{projectId}/storages/cloud-archives', }, - features: ['workflow-management'], + features: ['archive'], forceVisibility: true, - }, + } ], }, { @@ -274,7 +273,6 @@ pciNode.children = [ 'kubernetes', 'load-balancer', 'private-registry', - 'workflow-management', ], forceVisibility: true, children: [ From b9751f4ac0623b7fc38e8d4d6a34effb5688173c Mon Sep 17 00:00:00 2001 From: ovh-cds Date: Tue, 3 Dec 2024 14:32:10 +0000 Subject: [PATCH 02/10] release: gadolinium-salmon-10 Signed-off-by: ovh-cds --- .sonarcloud.properties | 2 +- packages/manager/apps/container/CHANGELOG.md | 11 +++++++++++ packages/manager/apps/container/package.json | 2 +- packages/manager/apps/hycu/CHANGELOG.md | 11 +++++++++++ packages/manager/apps/hycu/package.json | 2 +- .../apps/key-management-service/CHANGELOG.md | 16 ++++++++++++++++ .../apps/key-management-service/package.json | 2 +- 7 files changed, 42 insertions(+), 4 deletions(-) diff --git a/.sonarcloud.properties b/.sonarcloud.properties index f8fae044e7f0..c10fc0adab8c 100644 --- a/.sonarcloud.properties +++ b/.sonarcloud.properties @@ -7,7 +7,7 @@ sonar.projectName=manager sonar.sources=. sonar.sourceEncoding=UTF-8 sonar.ws.timeout=60 -sonar.projectVersion=gadolinium-salmon-9 +sonar.projectVersion=gadolinium-salmon-10 sonar.exclusions=node_modules/**, **/node_modules/**, **/dist/**, **/semantic/**, **/coverage/**, **/static/**, **/mock/**, **/mockServiceWorker.js sonar.coverage.exclusions=**/*.spec.js diff --git a/packages/manager/apps/container/CHANGELOG.md b/packages/manager/apps/container/CHANGELOG.md index af4c36dc4ec4..ee945e951cd4 100644 --- a/packages/manager/apps/container/CHANGELOG.md +++ b/packages/manager/apps/container/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.90.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-container-app@0.89.3...@ovh-ux/manager-container-app@0.90.0) (2024-12-03) + + +### Features + +* **container:** update pci menu entries order ([#14069](https://github.com/ovh/manager/issues/14069)) ([3096b5e](https://github.com/ovh/manager/commit/3096b5e4a729d3b95e980730bf1edfea4ab3f202)) + + + + + ## [0.89.3](https://github.com/ovh/manager/compare/@ovh-ux/manager-container-app@0.89.2...@ovh-ux/manager-container-app@0.89.3) (2024-11-28) **Note:** Version bump only for package @ovh-ux/manager-container-app diff --git a/packages/manager/apps/container/package.json b/packages/manager/apps/container/package.json index bba6921d5982..08e991486785 100644 --- a/packages/manager/apps/container/package.json +++ b/packages/manager/apps/container/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-container-app", - "version": "0.89.3", + "version": "0.90.0", "private": true, "description": "OVHcloud Manager Container.", "repository": { diff --git a/packages/manager/apps/hycu/CHANGELOG.md b/packages/manager/apps/hycu/CHANGELOG.md index 4b1aed6032ef..0eecd93f54bb 100644 --- a/packages/manager/apps/hycu/CHANGELOG.md +++ b/packages/manager/apps/hycu/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.6](https://github.com/ovh/manager/compare/@ovh-ux/manager-hycu-app@0.3.5...@ovh-ux/manager-hycu-app@0.3.6) (2024-12-03) + + +### Bug Fixes + +* **hycu:** fix wrong loading state for licence data ([02973b4](https://github.com/ovh/manager/commit/02973b46c460d6bbfe32da303e84a392e69e587c)) + + + + + ## [0.3.5](https://github.com/ovh/manager/compare/@ovh-ux/manager-hycu-app@0.3.4...@ovh-ux/manager-hycu-app@0.3.5) (2024-12-03) diff --git a/packages/manager/apps/hycu/package.json b/packages/manager/apps/hycu/package.json index 1560ce8d341e..bc877132f042 100644 --- a/packages/manager/apps/hycu/package.json +++ b/packages/manager/apps/hycu/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-hycu-app", - "version": "0.3.5", + "version": "0.3.6", "private": true, "description": "Backup HYCU for OVHcloud", "repository": { diff --git a/packages/manager/apps/key-management-service/CHANGELOG.md b/packages/manager/apps/key-management-service/CHANGELOG.md index 9289b221401b..4e704120cb68 100644 --- a/packages/manager/apps/key-management-service/CHANGELOG.md +++ b/packages/manager/apps/key-management-service/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.5](https://github.com/ovh/manager/compare/@ovh-ux/manager-key-management-service-app@0.12.4...@ovh-ux/manager-key-management-service-app@0.12.5) (2024-12-03) + + +### Bug Fixes + +* **i18n:** add missing translations [CDS 3505] ([8d17327](https://github.com/ovh/manager/commit/8d17327099c3e63d2ecdc2a6170267221801732c)) +* **i18n:** add missing translations [CDS 3506] ([22b3287](https://github.com/ovh/manager/commit/22b328751a23c0916f819b16f263e6276f54db6c)) +* **kms:** display name style issue ([5c807b9](https://github.com/ovh/manager/commit/5c807b990621014a20b185f1768b77916930b80e)) +* **kms:** fix delete credential ([3ed5c0d](https://github.com/ovh/manager/commit/3ed5c0d1bfd3e55bd32ba81238ab76803d7e9fde)) +* **kms:** fix service accounts typo ([4e18537](https://github.com/ovh/manager/commit/4e185374f0f086b5f252b845fab4942a310b02d2)) +* **kms:** fix urn region on credential creation root account ([f70f44d](https://github.com/ovh/manager/commit/f70f44dd1f1b7d5bd586e4e0eb67c487bd85e620)) + + + + + ## [0.12.4](https://github.com/ovh/manager/compare/@ovh-ux/manager-key-management-service-app@0.12.3...@ovh-ux/manager-key-management-service-app@0.12.4) (2024-12-03) diff --git a/packages/manager/apps/key-management-service/package.json b/packages/manager/apps/key-management-service/package.json index 58e836ed94f0..2c3d437e43d5 100644 --- a/packages/manager/apps/key-management-service/package.json +++ b/packages/manager/apps/key-management-service/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-key-management-service-app", - "version": "0.12.4", + "version": "0.12.5", "private": true, "description": "ovh key-management-service", "repository": { From 89aa7bfabc234ead5ade4f50676c145121debdac Mon Sep 17 00:00:00 2001 From: ovh-cds Date: Tue, 3 Dec 2024 15:08:00 +0000 Subject: [PATCH 03/10] release: gadolinium-salmon-11 Signed-off-by: ovh-cds --- .sonarcloud.properties | 2 +- packages/manager/apps/container/CHANGELOG.md | 11 +++++++++++ packages/manager/apps/container/package.json | 2 +- packages/manager/apps/hycu/CHANGELOG.md | 11 +++++++++++ packages/manager/apps/hycu/package.json | 2 +- .../apps/key-management-service/CHANGELOG.md | 16 ++++++++++++++++ .../apps/key-management-service/package.json | 2 +- 7 files changed, 42 insertions(+), 4 deletions(-) diff --git a/.sonarcloud.properties b/.sonarcloud.properties index c10fc0adab8c..0afce55e313b 100644 --- a/.sonarcloud.properties +++ b/.sonarcloud.properties @@ -7,7 +7,7 @@ sonar.projectName=manager sonar.sources=. sonar.sourceEncoding=UTF-8 sonar.ws.timeout=60 -sonar.projectVersion=gadolinium-salmon-10 +sonar.projectVersion=gadolinium-salmon-11 sonar.exclusions=node_modules/**, **/node_modules/**, **/dist/**, **/semantic/**, **/coverage/**, **/static/**, **/mock/**, **/mockServiceWorker.js sonar.coverage.exclusions=**/*.spec.js diff --git a/packages/manager/apps/container/CHANGELOG.md b/packages/manager/apps/container/CHANGELOG.md index ee945e951cd4..ab5baa2b6237 100644 --- a/packages/manager/apps/container/CHANGELOG.md +++ b/packages/manager/apps/container/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.91.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-container-app@0.90.0...@ovh-ux/manager-container-app@0.91.0) (2024-12-03) + + +### Features + +* **container:** update pci menu entries order ([#14069](https://github.com/ovh/manager/issues/14069)) ([3096b5e](https://github.com/ovh/manager/commit/3096b5e4a729d3b95e980730bf1edfea4ab3f202)) + + + + + # [0.90.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-container-app@0.89.3...@ovh-ux/manager-container-app@0.90.0) (2024-12-03) diff --git a/packages/manager/apps/container/package.json b/packages/manager/apps/container/package.json index 08e991486785..59e4be21e4cf 100644 --- a/packages/manager/apps/container/package.json +++ b/packages/manager/apps/container/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-container-app", - "version": "0.90.0", + "version": "0.91.0", "private": true, "description": "OVHcloud Manager Container.", "repository": { diff --git a/packages/manager/apps/hycu/CHANGELOG.md b/packages/manager/apps/hycu/CHANGELOG.md index 0eecd93f54bb..0e035ab8af6d 100644 --- a/packages/manager/apps/hycu/CHANGELOG.md +++ b/packages/manager/apps/hycu/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.7](https://github.com/ovh/manager/compare/@ovh-ux/manager-hycu-app@0.3.6...@ovh-ux/manager-hycu-app@0.3.7) (2024-12-03) + + +### Bug Fixes + +* **hycu:** fix wrong loading state for licence data ([02973b4](https://github.com/ovh/manager/commit/02973b46c460d6bbfe32da303e84a392e69e587c)) + + + + + ## [0.3.6](https://github.com/ovh/manager/compare/@ovh-ux/manager-hycu-app@0.3.5...@ovh-ux/manager-hycu-app@0.3.6) (2024-12-03) diff --git a/packages/manager/apps/hycu/package.json b/packages/manager/apps/hycu/package.json index bc877132f042..bfad220e9c19 100644 --- a/packages/manager/apps/hycu/package.json +++ b/packages/manager/apps/hycu/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-hycu-app", - "version": "0.3.6", + "version": "0.3.7", "private": true, "description": "Backup HYCU for OVHcloud", "repository": { diff --git a/packages/manager/apps/key-management-service/CHANGELOG.md b/packages/manager/apps/key-management-service/CHANGELOG.md index 4e704120cb68..b91e5dcb138e 100644 --- a/packages/manager/apps/key-management-service/CHANGELOG.md +++ b/packages/manager/apps/key-management-service/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.6](https://github.com/ovh/manager/compare/@ovh-ux/manager-key-management-service-app@0.12.5...@ovh-ux/manager-key-management-service-app@0.12.6) (2024-12-03) + + +### Bug Fixes + +* **i18n:** add missing translations [CDS 3505] ([8d17327](https://github.com/ovh/manager/commit/8d17327099c3e63d2ecdc2a6170267221801732c)) +* **i18n:** add missing translations [CDS 3506] ([22b3287](https://github.com/ovh/manager/commit/22b328751a23c0916f819b16f263e6276f54db6c)) +* **kms:** display name style issue ([5c807b9](https://github.com/ovh/manager/commit/5c807b990621014a20b185f1768b77916930b80e)) +* **kms:** fix delete credential ([3ed5c0d](https://github.com/ovh/manager/commit/3ed5c0d1bfd3e55bd32ba81238ab76803d7e9fde)) +* **kms:** fix service accounts typo ([4e18537](https://github.com/ovh/manager/commit/4e185374f0f086b5f252b845fab4942a310b02d2)) +* **kms:** fix urn region on credential creation root account ([f70f44d](https://github.com/ovh/manager/commit/f70f44dd1f1b7d5bd586e4e0eb67c487bd85e620)) + + + + + ## [0.12.5](https://github.com/ovh/manager/compare/@ovh-ux/manager-key-management-service-app@0.12.4...@ovh-ux/manager-key-management-service-app@0.12.5) (2024-12-03) diff --git a/packages/manager/apps/key-management-service/package.json b/packages/manager/apps/key-management-service/package.json index 2c3d437e43d5..f3b0d21a1e7d 100644 --- a/packages/manager/apps/key-management-service/package.json +++ b/packages/manager/apps/key-management-service/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-key-management-service-app", - "version": "0.12.5", + "version": "0.12.6", "private": true, "description": "ovh key-management-service", "repository": { From 9e50b80fd24ca34db65aca861ff341055aa2ab66 Mon Sep 17 00:00:00 2001 From: Anoop N Date: Wed, 4 Dec 2024 11:24:05 +0530 Subject: [PATCH 04/10] docs(mrc): format changelog Signed-off-by: Anoop N --- .../manager-react-components/CHANGELOG.md | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/packages/manager-react-components/CHANGELOG.md b/packages/manager-react-components/CHANGELOG.md index cb7110f74777..adb172668ccf 100644 --- a/packages/manager-react-components/CHANGELOG.md +++ b/packages/manager-react-components/CHANGELOG.md @@ -9,7 +9,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **manager-react-components** copy lib scss file in dist src ([#14393](https://github.com/ovh/manager/pull/14393)) ([a153458](https://github.com/ovh/manager/commit/a1534586effa72a1168a12951cd5c2d44ca2b48e)) -# [2.5.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.4.1...@ovh-ux/manager-react-components@2.5.0) (2024-12-02) +## [2.5.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.4.1...@ovh-ux/manager-react-components@2.5.0) (2024-12-02) ### Features @@ -19,13 +19,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **manager-react-components:** delete table component ([#14369](https://github.com/ovh/manager/pull/14369)) ([4160c1e](https://github.com/ovh/manager/commit/4160c1eb673f4b0262db9326f9b3e9d90187de07)) -# [2.4.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.4.0...@ovh-ux/manager-react-components@2.4.1) (2024-11-28) +## [2.4.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.4.0...@ovh-ux/manager-react-components@2.4.1) (2024-11-28) ### Features - **mrc:** ensure useAuthorizationIam query option enabled is a boolean ([#14322](https://github.com/ovh/manager/pull/14322)) ([a0fc11a](https://github.com/ovh/manager/pull/14322/commits/a0fc11a97e36e606e86daaf44455e8fa7fbf3dac)) -# [2.4.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.3.0...@ovh-ux/manager-react-components@2.4.0) (2024-11-27) +## [2.4.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.3.0...@ovh-ux/manager-react-components@2.4.0) (2024-11-27) ### Bug Fixes @@ -38,7 +38,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - switch link button and cta ([#14270](https://github.com/ovh/manager/issues/14270)) ([633e8a2](https://github.com/ovh/manager/commit/633e8a2a83c2c547fa785bf50604dc53966038c5)) - **mrc:** uniformize confirm button label on delete modal ([#14293](https://github.com/ovh/manager/issues/14293)) ([2c6ce3d](https://github.com/ovh/manager/commit/2c6ce3d20e13711b6b0a216afb88e5952a36316e)) -# [1.43.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.42.0...@ovh-ux/manager-react-components@1.43.0) (2024-11-27) +## [1.43.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.42.0...@ovh-ux/manager-react-components@1.43.0) (2024-11-27) ### Bug Fixes @@ -50,7 +50,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **mrc:** uniformize confirm button label on delete modal ([#14294](https://github.com/ovh/manager/issues/14294)) ([dd1a6a9](https://github.com/ovh/manager/commit/dd1a6a9f86a4d2aeae52899d63d0f257a803cb7e)) - switch link button and cta ([#14272](https://github.com/ovh/manager/issues/14272)) ([243f5f0](https://github.com/ovh/manager/commit/243f5f011420feb3c87c76bef90a70da7bf03dc4)) -# [2.3.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.2.0...@ovh-ux/manager-react-components@2.3.0) (2024-11-21) +## [2.3.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.2.0...@ovh-ux/manager-react-components@2.3.0) (2024-11-21) ### Bug Fixes @@ -63,7 +63,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **manager-components:** disable update name button if no change ([#13808](https://github.com/ovh/manager/issues/13808)) ([7ce27f3](https://github.com/ovh/manager/commit/7ce27f3713c808d288ce28db5a1befbbe099678c)) - **hycu:** add activate license modal ([95e0ad7](https://github.com/ovh/manager/commit/95e0ad7d645afacd97b5ec9939898da51c5b0fc2)) -# [1.42.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.2...@ovh-ux/manager-react-components@1.42.0) (2024-11-21) +## [1.42.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.2...@ovh-ux/manager-react-components@1.42.0) (2024-11-21) ### Bug Fixes @@ -74,13 +74,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **manager-components:** disable update name button if no change ([#14169](https://github.com/ovh/manager/issues/14169)) ([857c7da](https://github.com/ovh/manager/commit/857c7daae363a93e351ddcc83ca6b76106d2ba4d)) -# [2.2.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.1.0...@ovh-ux/manager-react-components@2.2.0) (2024-11-15) +## [2.2.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@2.1.0...@ovh-ux/manager-react-components@2.2.0) (2024-11-15) ## Features - **manager-react-components:** bump ods version 18.3.0 ([#14080](https://github.com/ovh/manager/issues/14080)) ([040237b](https://github.com/ovh/manager/commit/040237b6b436b9c1e5b76c9fed3076102aee3c1e)) -# [1.41.2](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.2...@ovh-ux/manager-react-components@1.41.1) (2024-11-14) +## [1.41.2](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.2...@ovh-ux/manager-react-components@1.41.1) (2024-11-14) ### Bug Fixes @@ -90,52 +90,52 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **manager-react-components**add skip to StepComponent ([#14056](https://github.com/ovh/manager/pull/14056)) ([52a71a4](https://github.com/ovh/manager/commit/52a71a438a54b6e470c9821610710b6ef7ea211f)) - add missing translations [CDS 3468] (#14095) ([#14021](https://github.com/ovh/manager/pull/14021)) ([455aa34](https://github.com/ovh/manager/commit/455aa34f6d0331040e64ce640d29c5b6d361aef3)) -# [2.1.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.1...@ovh-ux/manager-react-components@2.1.0) (2024-11-13) +## [2.1.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.1...@ovh-ux/manager-react-components@2.1.0) (2024-11-13) ### BREAKING CHANGES - **manager-react-components:** bump ODS V18 ([#14035](https://github.com/ovh/manager/issues/14035)) ([377f420](https://github.com/ovh/manager/commit/377f4206c7e9a4f43aec27b25a1a617e62aa5dba)) -# [1.41.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0...@ovh-ux/manager-react-components@1.41.1) (2024-11-13) +## [1.41.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0...@ovh-ux/manager-react-components@1.41.1) (2024-11-13) **Note:** Version bump only for package @ovh-ux/manager-react-components -# [1.41.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.10...@ovh-ux/manager-react-components@1.41.0) (2024-11-12) +## [1.41.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.10...@ovh-ux/manager-react-components@1.41.0) (2024-11-12) ### Bug Fixes - update export in mrc ([#14040](https://github.com/ovh/manager/issues/14040)) ([1289c90](https://github.com/ovh/manager/commit/1289c909066028cf88685625a3dd0952c2581564)) -# [1.41.0-alpha.10](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.9...@ovh-ux/manager-react-components@1.41.0-alpha.10) (2024-11-08) +## [1.41.0-alpha.10](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.9...@ovh-ux/manager-react-components@1.41.0-alpha.10) (2024-11-08) ### Reverts - Revert "fix(manager-pci-common): update peer dependencies (mrc without build) (#13971)" ([8b81fcc](https://github.com/ovh/manager/commit/8b81fcc58788ed6c9ae962a332c10ab07d26aaef)), closes [#13971](https://github.com/ovh/manager/issues/13971) - Revert "fix(manager-react-components): update peer dependencies" ([83a2a20](https://github.com/ovh/manager/commit/83a2a20827c1ace427ec476457148f544ace70d6)) -# [1.41.0-alpha.9](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.8...@ovh-ux/manager-react-components@1.41.0-alpha.9) (2024-11-08) +## [1.41.0-alpha.9](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.8...@ovh-ux/manager-react-components@1.41.0-alpha.9) (2024-11-08) ### Bug Fixes - **manager-react-components:** update peer dependencies ([bd0a433](https://github.com/ovh/manager/commit/bd0a433030aea43fd0000133d38dd827f4801e5e)) -# [1.41.0-alpha.8](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.7...@ovh-ux/manager-react-components@1.41.0-alpha.8) (2024-11-08) +## [1.41.0-alpha.8](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.7...@ovh-ux/manager-react-components@1.41.0-alpha.8) (2024-11-08) ### Bug Fixes - **manager-pci-common:** update peer dependencies (mrc without build) ([#13971](https://github.com/ovh/manager/issues/13971)) ([c47475d](https://github.com/ovh/manager/commit/c47475d1596186ede38fdcf5011d6b9835f31295)) -# [1.41.0-alpha.7](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.6...@ovh-ux/manager-react-components@1.41.0-alpha.7) (2024-11-08) +## [1.41.0-alpha.7](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.6...@ovh-ux/manager-react-components@1.41.0-alpha.7) (2024-11-08) ### Bug Fixes - **manager-pci-common:** update peer dependencies ([6cd2ee2](https://github.com/ovh/manager/commit/6cd2ee2285c3872c53af36c994085c287ec2d262)) -# [1.41.0-alpha.6](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.5...@ovh-ux/manager-react-components@1.41.0-alpha.6) (2024-11-07) +## [1.41.0-alpha.6](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.5...@ovh-ux/manager-react-components@1.41.0-alpha.6) (2024-11-07) **Note:** Version bump only for package @ovh-ux/manager-react-components -# [1.41.0-alpha.5](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.4...@ovh-ux/manager-react-components@1.41.0-alpha.5) (2024-11-07) +## [1.41.0-alpha.5](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.4...@ovh-ux/manager-react-components@1.41.0-alpha.5) (2024-11-07) ### Bug Fixes @@ -145,25 +145,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - split services mock file ([16c3cab](https://github.com/ovh/manager/commit/16c3cab2dd56af8ed859618dfaf809956c46e610)) -# [1.41.0-alpha.4](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.3...@ovh-ux/manager-react-components@1.41.0-alpha.4) (2024-11-06) +## [1.41.0-alpha.4](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.3...@ovh-ux/manager-react-components@1.41.0-alpha.4) (2024-11-06) ### Bug Fixes - **manager-react-components:** udpate dependencies versions ([9bb9c47](https://github.com/ovh/manager/commit/9bb9c4746ee71f35e622e4511e4be0370984f901)) -# [1.41.0-alpha.3](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.2...@ovh-ux/manager-react-components@1.41.0-alpha.3) (2024-11-06) +## [1.41.0-alpha.3](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.2...@ovh-ux/manager-react-components@1.41.0-alpha.3) (2024-11-06) **Note:** Version bump only for package @ovh-ux/manager-react-components -# [1.41.0-alpha.2](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.1...@ovh-ux/manager-react-components@1.41.0-alpha.2) (2024-11-04) +## [1.41.0-alpha.2](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.1...@ovh-ux/manager-react-components@1.41.0-alpha.2) (2024-11-04) **Note:** Version bump only for package @ovh-ux/manager-react-components -# [1.41.0-alpha.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.0...@ovh-ux/manager-react-components@1.41.0-alpha.1) (2024-10-31) +## [1.41.0-alpha.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.41.0-alpha.0...@ovh-ux/manager-react-components@1.41.0-alpha.1) (2024-10-31) **Note:** Version bump only for package @ovh-ux/manager-react-components -# [1.41.0-alpha.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.40.0...@ovh-ux/manager-react-components@1.41.0-alpha.0) (2024-10-30) +## [1.41.0-alpha.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.40.0...@ovh-ux/manager-react-components@1.41.0-alpha.0) (2024-10-30) ### Bug Fixes @@ -173,7 +173,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - build and publish manager-react-components and its deps ([cbcd795](https://github.com/ovh/manager/commit/cbcd7959a217c191c003058455ba2c38fb7553f1)) -# [1.40.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.39.2...@ovh-ux/manager-react-components@1.40.0) (2024-10-24) +## [1.40.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-react-components@1.39.2...@ovh-ux/manager-react-components@1.40.0) (2024-10-24) ### Bug Fixes From 007650e81e6fc64269c482a9e090d5463e0e0509 Mon Sep 17 00:00:00 2001 From: Maxime Bajeux Date: Wed, 4 Dec 2024 10:23:55 +0100 Subject: [PATCH 05/10] feat(account): reintegrate feat/manager-14875 (#14267) ref: MANAGER-16129 Signed-off-by: Maxime Bajeux --- .../src/kyc-documents/dashboard/component.js | 1 + .../src/kyc-documents/dashboard/constants.js | 3 +++ .../account/src/kyc-documents/dashboard/routing.js | 13 ++++++++++--- .../src/kyc-documents/dashboard/template.html | 1 + 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/packages/manager/modules/account/src/kyc-documents/dashboard/component.js b/packages/manager/modules/account/src/kyc-documents/dashboard/component.js index f09320cbf686..e952ebffe7bd 100644 --- a/packages/manager/modules/account/src/kyc-documents/dashboard/component.js +++ b/packages/manager/modules/account/src/kyc-documents/dashboard/component.js @@ -8,6 +8,7 @@ export default { isDisabled: '<', supportLink: '<', hubLink: '<', + isSupportWithExternalLinks: '<', }, controller, template, diff --git a/packages/manager/modules/account/src/kyc-documents/dashboard/constants.js b/packages/manager/modules/account/src/kyc-documents/dashboard/constants.js index 704829b652ee..af611670ecfa 100644 --- a/packages/manager/modules/account/src/kyc-documents/dashboard/constants.js +++ b/packages/manager/modules/account/src/kyc-documents/dashboard/constants.js @@ -69,6 +69,8 @@ export const PRIVACY_LINKS = { WE: 'https://www.ovhcloud.com/en-ie/terms-and-conditions/privacy-policy/', }; +export const SUPPORT_URL = 'https://help.ovhcloud.com/csm?id=csm_get_help'; + export default { DOCUMENT_TYPE, DOCUMENT_LIST, @@ -76,4 +78,5 @@ export default { LEGAL_FORMS, MAXIMUM_DOCUMENTS, PRIVACY_LINKS, + SUPPORT_URL, }; diff --git a/packages/manager/modules/account/src/kyc-documents/dashboard/routing.js b/packages/manager/modules/account/src/kyc-documents/dashboard/routing.js index 08d03237372e..216f61b82c3f 100644 --- a/packages/manager/modules/account/src/kyc-documents/dashboard/routing.js +++ b/packages/manager/modules/account/src/kyc-documents/dashboard/routing.js @@ -1,4 +1,4 @@ -import { TRACKING } from './constants'; +import { TRACKING, SUPPORT_URL } from './constants'; export default /* @ngInject */ ($stateProvider) => { $stateProvider.state('account.kyc-documents.documents', { @@ -7,8 +7,15 @@ export default /* @ngInject */ ($stateProvider) => { resolve: { breadcrumb: /* @ngInject */ ($translate) => $translate.instant('kyc_documents_breadcrumb'), - supportLink: /* @ngInject */ (coreURLBuilder) => - coreURLBuilder.buildURL('dedicated', '#/support/tickets'), + isSupportWithExternalLinks: /* @ngInject */ (coreConfig) => + coreConfig.isRegion(['EU', 'CA']), + supportLink: /* @ngInject */ ( + isSupportWithExternalLinks, + coreURLBuilder, + ) => + isSupportWithExternalLinks + ? SUPPORT_URL + : coreURLBuilder.buildURL('dedicated', '#/support/tickets'), }, atInternet: { rename: TRACKING.DOCUMENTS, diff --git a/packages/manager/modules/account/src/kyc-documents/dashboard/template.html b/packages/manager/modules/account/src/kyc-documents/dashboard/template.html index 3c89e055bebd..bb6886805b1b 100644 --- a/packages/manager/modules/account/src/kyc-documents/dashboard/template.html +++ b/packages/manager/modules/account/src/kyc-documents/dashboard/template.html @@ -48,6 +48,7 @@ From 32ece719c54bce8812bfd4481122e078efbc1b5f Mon Sep 17 00:00:00 2001 From: Maxime Bajeux Date: Wed, 4 Dec 2024 10:24:43 +0100 Subject: [PATCH 06/10] fix(account): redirect to account in sidebars (#14352) ref: MANAGER-16130 Signed-off-by: Maxime Bajeux --- .../universe/AccountSidebar.tsx | 14 ++++++---- .../header/user-account-menu/Content.tsx | 28 ++++++++++++++----- .../header/user-account-menu/UserLink.ts | 1 + .../header/user-account-menu/constants.ts | 7 +++++ 4 files changed, 37 insertions(+), 13 deletions(-) diff --git a/packages/manager/apps/container/src/container/legacy/server-sidebar/universe/AccountSidebar.tsx b/packages/manager/apps/container/src/container/legacy/server-sidebar/universe/AccountSidebar.tsx index 6ec33f7ba784..07c065e0b450 100644 --- a/packages/manager/apps/container/src/container/legacy/server-sidebar/universe/AccountSidebar.tsx +++ b/packages/manager/apps/container/src/container/legacy/server-sidebar/universe/AccountSidebar.tsx @@ -14,7 +14,8 @@ import constants from '../../account-sidebar/UsefulLinks/constants'; const kycIndiaFeature = 'identity-documents'; const kycFraudFeature = 'procedures:fraud'; -const kycFeatures = [kycIndiaFeature, kycFraudFeature] +const newAccount = 'new-account'; +const accountFeatures = [kycIndiaFeature, kycFraudFeature, newAccount]; export default function AccountSidebar() { const [menu, setMenu] = useState(undefined); @@ -38,6 +39,7 @@ export default function AccountSidebar() { } const isEUOrCA = ['EU', 'CA'].includes(region); + const isNewAccountAvailable = !!availability['new-account']; menu.push({ id: 'back-to-home', @@ -48,7 +50,7 @@ export default function AccountSidebar() { menu.push({ id: 'my-account', label: t('sidebar_account'), - href: navigation.getURL('dedicated', '/useraccount/dashboard'), + href: navigation.getURL(isNewAccountAvailable ? 'new-account' : 'dedicated', '/useraccount/dashboard'), routeMatcher: new RegExp('^/useraccount'), }); @@ -58,7 +60,7 @@ export default function AccountSidebar() { menu.push({ id: 'my-identity-documents', label: t('sidebar_account_identity_documents'), - href: navigation.getURL('dedicated', '/identity-documents'), + href: navigation.getURL(isNewAccountAvailable ? 'new-account' : 'dedicated', '/identity-documents'), routeMatcher: new RegExp('^/identity-documents'), }); } @@ -70,7 +72,7 @@ export default function AccountSidebar() { menu.push({ id: 'kyc-documents', label: t('sidebar_account_kyc_documents'), - href: navigation.getURL('dedicated', '/documents'), + href: navigation.getURL(isNewAccountAvailable ? 'new-account' : 'dedicated', '/documents'), routeMatcher: new RegExp('^/documents'), }); } @@ -119,7 +121,7 @@ export default function AccountSidebar() { menu.push({ id: 'my-contacts', label: t('sidebar_account_contacts'), - href: navigation.getURL('dedicated', '/contacts'), + href: navigation.getURL(isNewAccountAvailable ? 'new-account' : 'dedicated', '/contacts'), routeMatcher: new RegExp('^/contacts'), }); } @@ -152,7 +154,7 @@ export default function AccountSidebar() { return menu; }; - const {data: availability} = useFeatureAvailability(features.concat(kycFeatures)); + const {data: availability} = useFeatureAvailability(features.concat(accountFeatures)); const buildMenu = async () => Promise.resolve({ diff --git a/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/Content.tsx b/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/Content.tsx index 91871223031a..2eb0df85679b 100644 --- a/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/Content.tsx +++ b/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/Content.tsx @@ -35,7 +35,7 @@ const UserAccountMenu = ({ const [isKycDocumentsVisible, setIsDocumentsVisible] = useState( false, ); - + const [isNewAccountAvailable, setIsNewAccountAvailable] = useState(false); const user = shell .getPlugin('environment') .getEnvironment() @@ -70,12 +70,12 @@ const UserAccountMenu = ({ const getUrl = (key: string, hash: string) => shell.getPlugin('navigation').getURL(key, hash); const ssoLink = getUrl('iam', '#/dashboard/users'); - const supportLink = getUrl('dedicated', '#/useraccount/support/level'); + let [supportLink, setSupportLink] = useState(getUrl('dedicated', '#/useraccount/support/level')); const getAllLinks = useMemo( () => async () => { let isIdentityDocumentsAvailable = false; - const featureAvailability = await fetchFeatureAvailabilityData(['identity-documents', 'procedures:fraud']); + const featureAvailability = await fetchFeatureAvailabilityData(['new-account', 'identity-documents', 'procedures:fraud']); if (featureAvailability['identity-documents']) { const { status } = await reketInstance.get(`/me/procedure/identity`); isIdentityDocumentsAvailable = ['required', 'open'].includes(status); @@ -85,11 +85,23 @@ const UserAccountMenu = ({ setIsDocumentsVisible(['required', 'open'].includes(status)); } + setIsNewAccountAvailable(!!featureAvailability['new-account']) + + if (isNewAccountAvailable) { + setSupportLink(getUrl('new-account', '#/useraccount/support/level')); + } + setAllLinks([ - ...links, + ...links.map((link: UserLink) => { + if (['user-account-menu-profile', 'myCommunications', 'myContacts'].includes(link.key)) { + link.app = isNewAccountAvailable ? 'new-account' : 'dedicated'; + } + return link; + }), ...(isIdentityDocumentsAvailable ? [ { + app: isNewAccountAvailable ? 'new-account' : 'dedicated', key: 'myIdentityDocuments', hash: '#/identity-documents', i18nKey: 'user_account_menu_my_identity_documents', @@ -99,6 +111,7 @@ const UserAccountMenu = ({ ...(region === 'US' ? [ { + app: isNewAccountAvailable ? 'new-account' : 'dedicated', key: 'myAssistanceTickets', hash: '#/ticket', i18nKey: 'user_account_menu_my_assistance_tickets', @@ -186,7 +199,7 @@ const UserAccountMenu = ({
{allLinks.map((link: UserLink) => { - const { key, hash, i18nKey } = link; + const { app, key, hash, i18nKey } = link; return ( {t(i18nKey)} @@ -208,6 +221,7 @@ const UserAccountMenu = ({ id={'account_kyc_documents'} onClick={() => onLinkClick( { + app: isNewAccountAvailable ? 'new-account': 'dedicated', key: 'account_kyc_documents', hash: '#/documents', i18nKey: 'sidebar_account_kyc_documents' @@ -216,7 +230,7 @@ const UserAccountMenu = ({ className="d-block" aria-label={sidebarTranslation.t('sidebar_account_kyc_documents')} title={sidebarTranslation.t('sidebar_account_kyc_documents')} - href={getUrl('dedicated', '#/documents')} + href={getUrl(isNewAccountAvailable ? 'new-account': 'dedicated', '#/documents')} target="_top" > {sidebarTranslation.t('sidebar_account_kyc_documents')} diff --git a/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/UserLink.ts b/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/UserLink.ts index 174095c75534..742ef238264f 100644 --- a/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/UserLink.ts +++ b/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/UserLink.ts @@ -1,4 +1,5 @@ export type UserLink = { + app: string; key: string; hash: string; i18nKey: string; diff --git a/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/constants.ts b/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/constants.ts index 28bcf7a8f345..a6c5697c5ab3 100644 --- a/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/constants.ts +++ b/packages/manager/apps/container/src/container/nav-reshuffle/header/user-account-menu/constants.ts @@ -17,30 +17,35 @@ export const tracking = { export const links: UserLink[] = [ { + app: 'dedicated', key: 'user-account-menu-profile', hash: '#/useraccount/dashboard', i18nKey: 'user_account_menu_profile', trackingHit: tracking.goToProfile, }, { + app: 'dedicated', key: 'myInvoices', hash: '#/billing/history', i18nKey: 'user_account_menu_my_invoices', trackingHit: tracking.billingBills, }, { + app: 'dedicated', key: 'myServices', hash: '#/billing/autorenew', i18nKey: 'user_account_menu_my_services', trackingHit: tracking.myServices }, { + app: 'dedicated', key: 'myCommunications', hash: '#/useraccount/emails', i18nKey: 'user_account_menu_my_communication', trackingHit: tracking.accountContacts, }, { + app: 'dedicated', key: 'myPaymentMethods', hash: '#/billing/payment/method', i18nKey: 'user_account_menu_my_payment_methods', @@ -48,12 +53,14 @@ export const links: UserLink[] = [ }, { + app: 'dedicated', key: 'myCommands', hash: '#/billing/orders', i18nKey: 'user_account_menu_my_commands', trackingHit: tracking.orders, }, { + app: 'dedicated', key: 'myContacts', hash: '#/contacts/services', i18nKey: 'user_account_menu_my_contacts', From f1683bda6f33397f0f249991658eb505b8c38376 Mon Sep 17 00:00:00 2001 From: ovh-cds Date: Wed, 4 Dec 2024 12:38:33 +0000 Subject: [PATCH 07/10] release: potassium-ferret Signed-off-by: ovh-cds --- .sonarcloud.properties | 2 +- packages/manager/apps/account/CHANGELOG.md | 8 ++++++++ packages/manager/apps/account/package.json | 4 ++-- packages/manager/apps/container/CHANGELOG.md | 11 +++++++++++ packages/manager/apps/container/package.json | 2 +- packages/manager/modules/account/CHANGELOG.md | 11 +++++++++++ packages/manager/modules/account/package.json | 2 +- 7 files changed, 35 insertions(+), 5 deletions(-) diff --git a/.sonarcloud.properties b/.sonarcloud.properties index 0afce55e313b..001dc5f4a8b3 100644 --- a/.sonarcloud.properties +++ b/.sonarcloud.properties @@ -7,7 +7,7 @@ sonar.projectName=manager sonar.sources=. sonar.sourceEncoding=UTF-8 sonar.ws.timeout=60 -sonar.projectVersion=gadolinium-salmon-11 +sonar.projectVersion=potassium-ferret sonar.exclusions=node_modules/**, **/node_modules/**, **/dist/**, **/semantic/**, **/coverage/**, **/static/**, **/mock/**, **/mockServiceWorker.js sonar.coverage.exclusions=**/*.spec.js diff --git a/packages/manager/apps/account/CHANGELOG.md b/packages/manager/apps/account/CHANGELOG.md index 12e1d86de5a9..444ddc951d0e 100644 --- a/packages/manager/apps/account/CHANGELOG.md +++ b/packages/manager/apps/account/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.2](https://github.com/ovh/manager/compare/@ovh-ux/manager-account-app@0.1.1...@ovh-ux/manager-account-app@0.1.2) (2024-12-04) + +**Note:** Version bump only for package @ovh-ux/manager-account-app + + + + + ## [0.1.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-account-app@0.1.0...@ovh-ux/manager-account-app@0.1.1) (2024-11-28) **Note:** Version bump only for package @ovh-ux/manager-account-app diff --git a/packages/manager/apps/account/package.json b/packages/manager/apps/account/package.json index f50ed49a6faf..c80a99263201 100644 --- a/packages/manager/apps/account/package.json +++ b/packages/manager/apps/account/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-account-app", - "version": "0.1.1", + "version": "0.1.2", "private": true, "description": "User account and contacts management application", "repository": { @@ -19,7 +19,7 @@ "start:watch": "lerna exec --stream --parallel --scope='@ovh-ux/manager-account-app' --include-dependencies -- npm run dev:watch --if-present" }, "dependencies": { - "@ovh-ux/manager-account": "^0.1.1", + "@ovh-ux/manager-account": "^0.2.0", "@ovh-ux/manager-at-internet-configuration": "^1.5.0", "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core": "^13.0.2", diff --git a/packages/manager/apps/container/CHANGELOG.md b/packages/manager/apps/container/CHANGELOG.md index ab5baa2b6237..f15bd9e49598 100644 --- a/packages/manager/apps/container/CHANGELOG.md +++ b/packages/manager/apps/container/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.91.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-container-app@0.91.0...@ovh-ux/manager-container-app@0.91.1) (2024-12-04) + + +### Bug Fixes + +* **account:** redirect to account in sidebars ([#14352](https://github.com/ovh/manager/issues/14352)) ([32ece71](https://github.com/ovh/manager/commit/32ece719c54bce8812bfd4481122e078efbc1b5f)) + + + + + # [0.91.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-container-app@0.90.0...@ovh-ux/manager-container-app@0.91.0) (2024-12-03) diff --git a/packages/manager/apps/container/package.json b/packages/manager/apps/container/package.json index 59e4be21e4cf..d14de5b6b5e6 100644 --- a/packages/manager/apps/container/package.json +++ b/packages/manager/apps/container/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-container-app", - "version": "0.91.0", + "version": "0.91.1", "private": true, "description": "OVHcloud Manager Container.", "repository": { diff --git a/packages/manager/modules/account/CHANGELOG.md b/packages/manager/modules/account/CHANGELOG.md index 7fadc8dd0ce6..f0e05dacb588 100644 --- a/packages/manager/modules/account/CHANGELOG.md +++ b/packages/manager/modules/account/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-account@0.1.1...@ovh-ux/manager-account@0.2.0) (2024-12-04) + + +### Features + +* **account:** reintegrate feat/manager-14875 ([#14267](https://github.com/ovh/manager/issues/14267)) ([007650e](https://github.com/ovh/manager/commit/007650e81e6fc64269c482a9e090d5463e0e0509)) + + + + + ## [0.1.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-account@0.1.0...@ovh-ux/manager-account@0.1.1) (2024-11-28) **Note:** Version bump only for package @ovh-ux/manager-account diff --git a/packages/manager/modules/account/package.json b/packages/manager/modules/account/package.json index 0d3422d81c45..60b37c09ab43 100644 --- a/packages/manager/modules/account/package.json +++ b/packages/manager/modules/account/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-account", - "version": "0.1.1", + "version": "0.2.0", "private": true, "description": "OVHcloud Account product", "repository": { From 9bc42450615f8641cf97a73f9a4c01d127c5a71a Mon Sep 17 00:00:00 2001 From: Anoop N Date: Wed, 4 Dec 2024 14:24:47 +0530 Subject: [PATCH 08/10] build(pci-common): add vite config to publish library (#14344) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ref: TAPC-2321 Signed-off-by: Frédéric Vilcot Co-authored-by: Anoop N --- .../modules/manager-pci-common/README.md | 6 ++ .../modules/manager-pci-common/package.json | 66 ++++++++++++------- .../modules/manager-pci-common/tsconfig.json | 8 ++- .../manager-pci-common/vite.config.mjs | 63 ++++++++++++++++++ yarn.lock | 7 -- 5 files changed, 119 insertions(+), 31 deletions(-) create mode 100644 packages/manager/modules/manager-pci-common/README.md create mode 100644 packages/manager/modules/manager-pci-common/vite.config.mjs diff --git a/packages/manager/modules/manager-pci-common/README.md b/packages/manager/modules/manager-pci-common/README.md new file mode 100644 index 000000000000..3c4f17ad4d1e --- /dev/null +++ b/packages/manager/modules/manager-pci-common/README.md @@ -0,0 +1,6 @@ +# ⚛️⚡ Public Could Manager Common Components Library + +## Features + +Hosts the shared components used in manager for the Public Cloud universe +Keep it as simple as possible diff --git a/packages/manager/modules/manager-pci-common/package.json b/packages/manager/modules/manager-pci-common/package.json index 0d9b6d59da31..5175ca3f79d3 100644 --- a/packages/manager/modules/manager-pci-common/package.json +++ b/packages/manager/modules/manager-pci-common/package.json @@ -1,54 +1,79 @@ { "name": "@ovh-ux/manager-pci-common", "version": "0.11.0", - "private": true, - "sideEffects": true, + "private": false, + "description": "Public Cloud Common components", + "homepage": "https://github.com/ovh/manager/blob/master/packages/manager/modules/manager-pci-common/README.md", + "bugs": { + "url": "https://github.com/ovh/manager/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ovh/manager.git", + "directory": "packages/manager/modules/manager-pci-common" + }, + "license": "BSD-3-Clause", + "author": "OVH SAS", "type": "module", - "main": "./src/index.ts", + "main": "dist/index.js", + "types": "dist/types/index.d.ts", + "files": [ + "dist" + ], "scripts": { - "build": "tsc --project tsconfig.build.json", - "dev": "tsc", + "build": "vite build", + "clean": "rimraf node_modules && rimraf dist && yarn cache clean", + "dev": "vite build", "lint": "eslint ./src", "lint:fix": "eslint ./src --fix", + "prepare": "vite build", + "prettier": "prettier --write \"src/**/*.{ts,tsx,js,mdx}\"", "test": "vitest run", "test:coverage": "vitest run --coverage", - "test:coverage:watch": "vitest --coverage", - "test:watch": "vitest" + "test:watch": "vitest --watch", + "type:check": "tsc --noEmit" }, "dependencies": { + "@ovh-ux/manager-tailwind-config": "^0.2.1", "clsx": "2.1.1", "date-fns": "^3.6.0", - "element-internals-polyfill": "^1.3.11", - "file-saver": "^2.0.5", - "i18next": "^23.8.2", - "i18next-http-backend": "^2.6.1", "lodash.isequal": "^4.5.0" }, "devDependencies": { - "@jest/globals": "^29.7.0", "@ovh-ux/manager-core-api": "^0.9.0", - "@ovh-ux/manager-react-components": "^1.41.1", + "@ovh-ux/manager-react-components": "^1.43.0", "@ovh-ux/manager-react-shell-client": "^0.8.2", "@ovh-ux/manager-vite-config": "^0.8.3", + "@ovhcloud/ods-common-core": "^17.2.2", + "@ovhcloud/ods-common-stencil": "^17.2.2", + "@ovhcloud/ods-common-theming": "^17.2.2", + "@ovhcloud/ods-components": "^17.2.2", + "@ovhcloud/ods-theme-blue-jeans": "^17.2.2", + "@tanstack/react-query": "^5.51.21", "@testing-library/dom": "^10.1.0", "@testing-library/jest-dom": "^6.4.6", "@testing-library/react": "^16.0.0", "@testing-library/user-event": "^14.5.2", - "@types/file-saver": "^2.0.7", - "@types/jest": "^29.5.12", "@types/react": "^18.2.55", "@types/react-dom": "^18.2.19", "@vitejs/plugin-react": "^4.2.1", "@vitest/coverage-v8": "^1.2.2", + "element-internals-polyfill": "^1.3.11", + "i18next": "^23.8.2", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-i18next": "^14.0.5", + "react-router-dom": "^6.3.0", "tailwindcss": "^3.4.10", "typescript": "^5.5.4", "vite": "^5.4.2", + "vite-plugin-dts": "3.5.1", "vitest": "^2.0.5" }, "peerDependencies": { "@ovh-ux/manager-config": "^7.3.2", - "@ovh-ux/manager-core-api": "^0.9.0-alpha.0", - "@ovh-ux/manager-react-components": "^1.41.0-alpha.6", + "@ovh-ux/manager-core-api": "^0.9.0", + "@ovh-ux/manager-react-components": "^1.43.0", "@ovh-ux/manager-react-shell-client": "^0.8.2", "@ovh-ux/manager-tailwind-config": "^0.2.0", "@ovh-ux/shell": "^3.7.0", @@ -58,13 +83,10 @@ "@ovhcloud/ods-components": "^17.2.2", "@ovhcloud/ods-theme-blue-jeans": "^17.2.2", "@tanstack/react-query": "^5.51.21", - "@tanstack/react-query-devtools": "^5.51.21", - "@tanstack/react-table": "^8.20.1", + "i18next": "^23.8.2", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-hook-form": "^7.50.1", "react-i18next": "^14.0.5", - "react-router-dom": "^6.3.0", - "react-use": "^17.5.0" + "react-router-dom": "^6.3.0" } } diff --git a/packages/manager/modules/manager-pci-common/tsconfig.json b/packages/manager/modules/manager-pci-common/tsconfig.json index b8366b98fe06..e7e376496376 100644 --- a/packages/manager/modules/manager-pci-common/tsconfig.json +++ b/packages/manager/modules/manager-pci-common/tsconfig.json @@ -4,13 +4,17 @@ "useDefineForClassFields": true, "lib": ["ES2020", "dom"], "types": ["vite/client", "node"], + "outDir": "dist", "module": "ESNext", + "allowJs": true, "skipLibCheck": true, "moduleResolution": "node", "allowImportingTsExtensions": false, "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true, + "declaration": true, + "declarationDir": "./dist/types", + "emitDeclarationOnly": true, "jsx": "react-jsx", "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, @@ -22,5 +26,5 @@ "esModuleInterop": true }, "include": ["src/**/*", "*.spec.tsx"], - "exclude": ["node_modules", "dist", "types"] + "exclude": ["node_modules", "dist"] } diff --git a/packages/manager/modules/manager-pci-common/vite.config.mjs b/packages/manager/modules/manager-pci-common/vite.config.mjs new file mode 100644 index 000000000000..56c8acd4dc6a --- /dev/null +++ b/packages/manager/modules/manager-pci-common/vite.config.mjs @@ -0,0 +1,63 @@ +import react from '@vitejs/plugin-react'; +import { defineConfig } from 'vitest/config'; +import dts from 'vite-plugin-dts'; +import path from 'path'; +import tailwindcss from 'tailwindcss'; +import { getBaseConfig } from '@ovh-ux/manager-vite-config'; +import * as packageJson from './package.json'; + +const baseConfig = getBaseConfig({}); +const pathSrc = path.resolve(__dirname, 'src'); +const externalDeps = [ + ...Object.keys(packageJson.peerDependencies || {}), + '@ovhcloud/ods-components/react', +]; + +export default defineConfig({ + ...baseConfig, + resolve: { + alias: { + '@/': pathSrc, + }, + }, + plugins: [ + react(), + dts({ + root: __dirname, + insertTypesEntry: true, + outDir: 'dist/types', + }), + /* + * Visualizer emits an HTML file that allows to check what's really included in the bundle. + * Uncomment if you want to run the plugin and check the output dist. + * Be sure that plugin is installed before and well imported. + */ + // visualizer({ + // filename: 'stats/bundle-analysis.html', + // }), + ], + css: { + postcss: { + plugins: [tailwindcss], + }, + }, + test: { + globals: true, + environment: 'jsdom', + }, + build: { + outDir: path.resolve(__dirname, 'dist'), + emptyOutDir: true, + lib: { + entry: path.resolve(pathSrc, 'index.ts'), + name: 'ManagerPciCommonLib', + fileName: 'index', + formats: ['es'], + }, + rollupOptions: { + external: (id) => + externalDeps.some((dep) => id === dep || id.startsWith(`${dep}/`)), + }, + sourcemap: 'hidden', + }, +}); diff --git a/yarn.lock b/yarn.lock index 8ca769919c16..4d12eb277599 100644 --- a/yarn.lock +++ b/yarn.lock @@ -17420,13 +17420,6 @@ i18next-http-backend@^2.5.2: dependencies: cross-fetch "4.0.0" -i18next-http-backend@^2.6.1: - version "2.6.2" - resolved "https://registry.yarnpkg.com/i18next-http-backend/-/i18next-http-backend-2.6.2.tgz#b25516446ae6f251ce8231e70e6ffbca833d46a5" - integrity sha512-Hp/kd8/VuoxIHmxsknJXjkTYYHzivAyAF15pzliKzk2TiXC25rZCEerb1pUFoxz4IVrG3fCvQSY51/Lu4ECV4A== - dependencies: - cross-fetch "4.0.0" - i18next@^23.11.5: version "23.16.5" resolved "https://registry.yarnpkg.com/i18next/-/i18next-23.16.5.tgz#53d48ae9f985fd73fc1fcb96e6c7d90ababf0831" From 3a7d3556c7932eac6fe073ae6d91000894d5d112 Mon Sep 17 00:00:00 2001 From: Anoop N Date: Wed, 4 Dec 2024 14:33:50 +0530 Subject: [PATCH 09/10] chore: add CODEOWNERS for PCI-common Signed-off-by: Anoop N --- .github/CODEOWNERS | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0fcdbc2fd3ac..26bd1c9d368e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -6,14 +6,18 @@ # Packages /packages/manager/apps/ @ovh/team-manager-dev-angularjs -packages/manager/core/ @ovh/team-manager-dev-reactjs -packages/manager/modules/ @ovh/team-manager-dev-angularjs +/packages/manager/core/ @ovh/team-manager-dev-reactjs +/packages/manager/modules/ @ovh/team-manager-dev-angularjs # React Stack *.jsx @ovh/team-manager-dev-reactjs @ovh/su-digital-tools-core-stack *.tsx @ovh/team-manager-dev-reactjs @ovh/su-digital-tools-core-stack /playwright-helpers/ @ovh/team-manager-dev-reactjs +# Manager-pci-common +# TODO: Update owners to be TAPC & Core-stack groups instead of particular users. +/packages/manager/modules/manager-pci-common/ @fredericvilcot @frenautvh + # Manager-components /packages/manager-components @ovh/team-manager-control-tower From 2f8b3983d2d1c7c04c5afb101f1876515c841b21 Mon Sep 17 00:00:00 2001 From: ovh-cds Date: Thu, 5 Dec 2024 05:47:38 +0000 Subject: [PATCH 10/10] release: potassium-ferret-1 Signed-off-by: ovh-cds --- .sonarcloud.properties | 2 +- packages/manager/apps/pci-ai-endpoints/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-ai-endpoints/package.json | 4 ++-- packages/manager/apps/pci-block-storage/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-block-storage/package.json | 4 ++-- packages/manager/apps/pci-gateway/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-gateway/package.json | 4 ++-- packages/manager/apps/pci-kubernetes/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-kubernetes/package.json | 4 ++-- packages/manager/apps/pci-load-balancer/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-load-balancer/package.json | 4 ++-- packages/manager/apps/pci-private-network/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-private-network/package.json | 4 ++-- packages/manager/apps/pci-private-registry/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-private-registry/package.json | 4 ++-- packages/manager/apps/pci-public-ip/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-public-ip/package.json | 4 ++-- packages/manager/apps/pci-rancher/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-rancher/package.json | 4 ++-- packages/manager/apps/pci-savings-plan/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-savings-plan/package.json | 4 ++-- packages/manager/apps/pci-ssh-keys/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-ssh-keys/package.json | 4 ++-- packages/manager/apps/pci-users/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-users/package.json | 4 ++-- packages/manager/apps/pci-vouchers/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-vouchers/package.json | 4 ++-- packages/manager/apps/pci-workflow/CHANGELOG.md | 8 ++++++++ packages/manager/apps/pci-workflow/package.json | 4 ++-- packages/manager/modules/manager-pci-common/CHANGELOG.md | 8 ++++++++ packages/manager/modules/manager-pci-common/package.json | 2 +- 31 files changed, 150 insertions(+), 30 deletions(-) diff --git a/.sonarcloud.properties b/.sonarcloud.properties index 001dc5f4a8b3..26c15c230014 100644 --- a/.sonarcloud.properties +++ b/.sonarcloud.properties @@ -7,7 +7,7 @@ sonar.projectName=manager sonar.sources=. sonar.sourceEncoding=UTF-8 sonar.ws.timeout=60 -sonar.projectVersion=potassium-ferret +sonar.projectVersion=potassium-ferret-1 sonar.exclusions=node_modules/**, **/node_modules/**, **/dist/**, **/semantic/**, **/coverage/**, **/static/**, **/mock/**, **/mockServiceWorker.js sonar.coverage.exclusions=**/*.spec.js diff --git a/packages/manager/apps/pci-ai-endpoints/CHANGELOG.md b/packages/manager/apps/pci-ai-endpoints/CHANGELOG.md index dcfa963415a4..75cbbea2f7b1 100644 --- a/packages/manager/apps/pci-ai-endpoints/CHANGELOG.md +++ b/packages/manager/apps/pci-ai-endpoints/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.4](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-ai-endpoints-app@0.1.3...@ovh-ux/manager-pci-ai-endpoints-app@0.1.4) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-ai-endpoints-app + + + + + ## [0.1.3](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-ai-endpoints-app@0.1.2...@ovh-ux/manager-pci-ai-endpoints-app@0.1.3) (2024-12-03) **Note:** Version bump only for package @ovh-ux/manager-pci-ai-endpoints-app diff --git a/packages/manager/apps/pci-ai-endpoints/package.json b/packages/manager/apps/pci-ai-endpoints/package.json index 5d9f1290d43a..a177f5b6ac41 100644 --- a/packages/manager/apps/pci-ai-endpoints/package.json +++ b/packages/manager/apps/pci-ai-endpoints/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-ai-endpoints-app", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "Manage AI Endpoints (usage and tokens) through OVHcloud control panel", "repository": { @@ -23,7 +23,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "*", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-block-storage/CHANGELOG.md b/packages/manager/apps/pci-block-storage/CHANGELOG.md index e4bcf22e2e2a..5a0cbaa485e8 100644 --- a/packages/manager/apps/pci-block-storage/CHANGELOG.md +++ b/packages/manager/apps/pci-block-storage/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.9](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-block-storage-app@0.6.8...@ovh-ux/manager-pci-block-storage-app@0.6.9) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-block-storage-app + + + + + ## [0.6.8](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-block-storage-app@0.6.7...@ovh-ux/manager-pci-block-storage-app@0.6.8) (2024-12-03) diff --git a/packages/manager/apps/pci-block-storage/package.json b/packages/manager/apps/pci-block-storage/package.json index 23d83092abc1..712ef2ff1fe7 100644 --- a/packages/manager/apps/pci-block-storage/package.json +++ b/packages/manager/apps/pci-block-storage/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-block-storage-app", - "version": "0.6.8", + "version": "0.6.9", "private": true, "description": "PCI Block storage react app", "type": "module", @@ -17,7 +17,7 @@ "dependencies": { "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.2", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-gateway/CHANGELOG.md b/packages/manager/apps/pci-gateway/CHANGELOG.md index 1671435af74b..05722949c54d 100644 --- a/packages/manager/apps/pci-gateway/CHANGELOG.md +++ b/packages/manager/apps/pci-gateway/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.18](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-gateway-app@0.9.17...@ovh-ux/manager-pci-gateway-app@0.9.18) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-gateway-app + + + + + ## [0.9.17](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-gateway-app@0.9.16...@ovh-ux/manager-pci-gateway-app@0.9.17) (2024-12-03) diff --git a/packages/manager/apps/pci-gateway/package.json b/packages/manager/apps/pci-gateway/package.json index 554b843cd846..23ee7dfd5888 100644 --- a/packages/manager/apps/pci-gateway/package.json +++ b/packages/manager/apps/pci-gateway/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-gateway-app", - "version": "0.9.17", + "version": "0.9.18", "private": true, "description": "PCI Gateway react app", "type": "module", @@ -17,7 +17,7 @@ "dependencies": { "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-kubernetes/CHANGELOG.md b/packages/manager/apps/pci-kubernetes/CHANGELOG.md index f506ccffba9e..3296ac9141ea 100644 --- a/packages/manager/apps/pci-kubernetes/CHANGELOG.md +++ b/packages/manager/apps/pci-kubernetes/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-kubernetes-app@0.10.0...@ovh-ux/manager-pci-kubernetes-app@0.10.1) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-kubernetes-app + + + + + # [0.10.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-kubernetes-app@0.9.2...@ovh-ux/manager-pci-kubernetes-app@0.10.0) (2024-12-03) diff --git a/packages/manager/apps/pci-kubernetes/package.json b/packages/manager/apps/pci-kubernetes/package.json index 5cb8bf7e5947..41a8d492d1d7 100644 --- a/packages/manager/apps/pci-kubernetes/package.json +++ b/packages/manager/apps/pci-kubernetes/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-kubernetes-app", - "version": "0.10.0", + "version": "0.10.1", "private": true, "description": "PCI Kubernetes react app", "type": "module", @@ -20,7 +20,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "^0.3.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-load-balancer/CHANGELOG.md b/packages/manager/apps/pci-load-balancer/CHANGELOG.md index 9b20a3f33c7d..a6ef2d3ea51a 100644 --- a/packages/manager/apps/pci-load-balancer/CHANGELOG.md +++ b/packages/manager/apps/pci-load-balancer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-load-balancer-app@0.2.0...@ovh-ux/manager-pci-load-balancer-app@0.2.1) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-load-balancer-app + + + + + # [0.2.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-load-balancer-app@0.1.3...@ovh-ux/manager-pci-load-balancer-app@0.2.0) (2024-12-03) diff --git a/packages/manager/apps/pci-load-balancer/package.json b/packages/manager/apps/pci-load-balancer/package.json index 65c126f01251..65845063c5a0 100644 --- a/packages/manager/apps/pci-load-balancer/package.json +++ b/packages/manager/apps/pci-load-balancer/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-load-balancer-app", - "version": "0.2.0", + "version": "0.2.1", "private": true, "description": "PCI Octavia load balancer react app", "type": "module", @@ -21,7 +21,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "^0.3.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.2", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-private-network/CHANGELOG.md b/packages/manager/apps/pci-private-network/CHANGELOG.md index 27ecd583a4d9..bd49e64c983f 100644 --- a/packages/manager/apps/pci-private-network/CHANGELOG.md +++ b/packages/manager/apps/pci-private-network/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-private-network-app@0.11.0...@ovh-ux/manager-pci-private-network-app@0.11.1) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-private-network-app + + + + + # [0.11.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-private-network-app@0.10.4...@ovh-ux/manager-pci-private-network-app@0.11.0) (2024-12-03) diff --git a/packages/manager/apps/pci-private-network/package.json b/packages/manager/apps/pci-private-network/package.json index 9c1367122156..d7a59047a0ab 100644 --- a/packages/manager/apps/pci-private-network/package.json +++ b/packages/manager/apps/pci-private-network/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-private-network-app", - "version": "0.11.0", + "version": "0.11.1", "private": true, "description": "PCI Private network react app", "type": "module", @@ -17,7 +17,7 @@ "dependencies": { "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.2", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-private-registry/CHANGELOG.md b/packages/manager/apps/pci-private-registry/CHANGELOG.md index d43fa6583c71..f25a070927e2 100644 --- a/packages/manager/apps/pci-private-registry/CHANGELOG.md +++ b/packages/manager/apps/pci-private-registry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.5](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-private-registry-app@0.2.4...@ovh-ux/manager-pci-private-registry-app@0.2.5) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-private-registry-app + + + + + ## [0.2.4](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-private-registry-app@0.2.3...@ovh-ux/manager-pci-private-registry-app@0.2.4) (2024-12-03) diff --git a/packages/manager/apps/pci-private-registry/package.json b/packages/manager/apps/pci-private-registry/package.json index 24e1334f71da..d3d399c88287 100644 --- a/packages/manager/apps/pci-private-registry/package.json +++ b/packages/manager/apps/pci-private-registry/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-private-registry-app", - "version": "0.2.4", + "version": "0.2.5", "private": true, "description": "PCI Private registry react app", "type": "module", @@ -19,7 +19,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "*", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-public-ip/CHANGELOG.md b/packages/manager/apps/pci-public-ip/CHANGELOG.md index 41d35f10dc0b..edba7a2d4f0f 100644 --- a/packages/manager/apps/pci-public-ip/CHANGELOG.md +++ b/packages/manager/apps/pci-public-ip/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.20](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-public-ip-app@0.7.19...@ovh-ux/manager-pci-public-ip-app@0.7.20) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-public-ip-app + + + + + ## [0.7.19](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-public-ip-app@0.7.18...@ovh-ux/manager-pci-public-ip-app@0.7.19) (2024-12-03) **Note:** Version bump only for package @ovh-ux/manager-pci-public-ip-app diff --git a/packages/manager/apps/pci-public-ip/package.json b/packages/manager/apps/pci-public-ip/package.json index 18e05470a44f..4487bacfb57c 100644 --- a/packages/manager/apps/pci-public-ip/package.json +++ b/packages/manager/apps/pci-public-ip/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-public-ip-app", - "version": "0.7.19", + "version": "0.7.20", "private": true, "description": "PCI Public IPs react app", "type": "module", @@ -19,7 +19,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-module-order": "^0.9.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-rancher/CHANGELOG.md b/packages/manager/apps/pci-rancher/CHANGELOG.md index 3bd7776602cb..8c3649b3493a 100644 --- a/packages/manager/apps/pci-rancher/CHANGELOG.md +++ b/packages/manager/apps/pci-rancher/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.21.8](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-rancher-app@1.21.7...@ovh-ux/manager-pci-rancher-app@1.21.8) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-rancher-app + + + + + ## [1.21.7](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-rancher-app@1.21.6...@ovh-ux/manager-pci-rancher-app@1.21.7) (2024-12-03) diff --git a/packages/manager/apps/pci-rancher/package.json b/packages/manager/apps/pci-rancher/package.json index 3baf23173655..3c97ca91397d 100644 --- a/packages/manager/apps/pci-rancher/package.json +++ b/packages/manager/apps/pci-rancher/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-rancher-app", - "version": "1.21.7", + "version": "1.21.8", "private": true, "description": "pci-rancher", "repository": { @@ -25,7 +25,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "*", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.43.0", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-savings-plan/CHANGELOG.md b/packages/manager/apps/pci-savings-plan/CHANGELOG.md index 459bc51690b2..ed194b9063c4 100644 --- a/packages/manager/apps/pci-savings-plan/CHANGELOG.md +++ b/packages/manager/apps/pci-savings-plan/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.4.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-savings-plan-app@1.4.0...@ovh-ux/manager-pci-savings-plan-app@1.4.1) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-savings-plan-app + + + + + # [1.4.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-savings-plan-app@1.3.2...@ovh-ux/manager-pci-savings-plan-app@1.4.0) (2024-12-03) diff --git a/packages/manager/apps/pci-savings-plan/package.json b/packages/manager/apps/pci-savings-plan/package.json index d57edfe31b60..26c763afd8a9 100644 --- a/packages/manager/apps/pci-savings-plan/package.json +++ b/packages/manager/apps/pci-savings-plan/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-savings-plan-app", - "version": "1.4.0", + "version": "1.4.1", "private": true, "description": "savings plan application", "repository": { @@ -23,7 +23,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "*", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-ssh-keys/CHANGELOG.md b/packages/manager/apps/pci-ssh-keys/CHANGELOG.md index 88cba14da308..bccb35bbbd83 100644 --- a/packages/manager/apps/pci-ssh-keys/CHANGELOG.md +++ b/packages/manager/apps/pci-ssh-keys/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.27](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-ssh-keys-app@0.6.26...@ovh-ux/manager-pci-ssh-keys-app@0.6.27) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-ssh-keys-app + + + + + ## [0.6.26](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-ssh-keys-app@0.6.25...@ovh-ux/manager-pci-ssh-keys-app@0.6.26) (2024-12-03) **Note:** Version bump only for package @ovh-ux/manager-pci-ssh-keys-app diff --git a/packages/manager/apps/pci-ssh-keys/package.json b/packages/manager/apps/pci-ssh-keys/package.json index ae509ffda236..6832ff74ded4 100644 --- a/packages/manager/apps/pci-ssh-keys/package.json +++ b/packages/manager/apps/pci-ssh-keys/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-ssh-keys-app", - "version": "0.6.26", + "version": "0.6.27", "private": true, "description": "PCI SSH Keys react app", "type": "module", @@ -17,7 +17,7 @@ "dependencies": { "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-users/CHANGELOG.md b/packages/manager/apps/pci-users/CHANGELOG.md index 3f68c4f6f27e..ddc60ac76dfc 100644 --- a/packages/manager/apps/pci-users/CHANGELOG.md +++ b/packages/manager/apps/pci-users/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.18](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-users-app@0.11.17...@ovh-ux/manager-pci-users-app@0.11.18) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-users-app + + + + + ## [0.11.17](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-users-app@0.11.16...@ovh-ux/manager-pci-users-app@0.11.17) (2024-12-03) diff --git a/packages/manager/apps/pci-users/package.json b/packages/manager/apps/pci-users/package.json index f2242ac89cbe..afcf158b1295 100644 --- a/packages/manager/apps/pci-users/package.json +++ b/packages/manager/apps/pci-users/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-users-app", - "version": "0.11.17", + "version": "0.11.18", "private": true, "description": "PCI Users react app", "type": "module", @@ -17,7 +17,7 @@ "dependencies": { "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "^0.3.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-vouchers/CHANGELOG.md b/packages/manager/apps/pci-vouchers/CHANGELOG.md index 7801467f1f34..232c72a56346 100644 --- a/packages/manager/apps/pci-vouchers/CHANGELOG.md +++ b/packages/manager/apps/pci-vouchers/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.27](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-vouchers-app@0.8.26...@ovh-ux/manager-pci-vouchers-app@0.8.27) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-vouchers-app + + + + + ## [0.8.26](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-vouchers-app@0.8.25...@ovh-ux/manager-pci-vouchers-app@0.8.26) (2024-12-03) diff --git a/packages/manager/apps/pci-vouchers/package.json b/packages/manager/apps/pci-vouchers/package.json index 2a472d7f16a5..b6a7a1680d71 100644 --- a/packages/manager/apps/pci-vouchers/package.json +++ b/packages/manager/apps/pci-vouchers/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-vouchers-app", - "version": "0.8.26", + "version": "0.8.27", "private": true, "description": "PCI Vouchers react app", "type": "module", @@ -18,7 +18,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "^0.3.0", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/apps/pci-workflow/CHANGELOG.md b/packages/manager/apps/pci-workflow/CHANGELOG.md index dc42506836b6..8e8cd370c088 100644 --- a/packages/manager/apps/pci-workflow/CHANGELOG.md +++ b/packages/manager/apps/pci-workflow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.7](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-workflow-app@0.1.6...@ovh-ux/manager-pci-workflow-app@0.1.7) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-workflow-app + + + + + ## [0.1.6](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-workflow-app@0.1.5...@ovh-ux/manager-pci-workflow-app@0.1.6) (2024-12-03) **Note:** Version bump only for package @ovh-ux/manager-pci-workflow-app diff --git a/packages/manager/apps/pci-workflow/package.json b/packages/manager/apps/pci-workflow/package.json index 7812c5c91226..edb1a8f2d280 100644 --- a/packages/manager/apps/pci-workflow/package.json +++ b/packages/manager/apps/pci-workflow/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-workflow-app", - "version": "0.1.6", + "version": "0.1.7", "private": true, "description": "PCI Workflow react app", "type": "module", @@ -18,7 +18,7 @@ "@ovh-ux/manager-config": "^8.0.1", "@ovh-ux/manager-core-api": "^0.9.0", "@ovh-ux/manager-core-utils": "*", - "@ovh-ux/manager-pci-common": "^0.11.0", + "@ovh-ux/manager-pci-common": "^0.11.1", "@ovh-ux/manager-react-components": "^1.41.1", "@ovh-ux/manager-react-core-application": "^0.11.2", "@ovh-ux/manager-react-shell-client": "^0.8.2", diff --git a/packages/manager/modules/manager-pci-common/CHANGELOG.md b/packages/manager/modules/manager-pci-common/CHANGELOG.md index 3d4b85f6ef7c..5c1913d609fd 100644 --- a/packages/manager/modules/manager-pci-common/CHANGELOG.md +++ b/packages/manager/modules/manager-pci-common/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-common@0.11.0...@ovh-ux/manager-pci-common@0.11.1) (2024-12-05) + +**Note:** Version bump only for package @ovh-ux/manager-pci-common + + + + + # [0.11.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-pci-common@0.10.2...@ovh-ux/manager-pci-common@0.11.0) (2024-12-03) diff --git a/packages/manager/modules/manager-pci-common/package.json b/packages/manager/modules/manager-pci-common/package.json index 5175ca3f79d3..2be7ac5df2f7 100644 --- a/packages/manager/modules/manager-pci-common/package.json +++ b/packages/manager/modules/manager-pci-common/package.json @@ -1,6 +1,6 @@ { "name": "@ovh-ux/manager-pci-common", - "version": "0.11.0", + "version": "0.11.1", "private": false, "description": "Public Cloud Common components", "homepage": "https://github.com/ovh/manager/blob/master/packages/manager/modules/manager-pci-common/README.md",