From 73dcb9b452633708af403197493aad79392c5fd5 Mon Sep 17 00:00:00 2001 From: aviv926 <51673860+aviv926@users.noreply.github.com> Date: Tue, 11 Jun 2024 00:49:10 +0300 Subject: [PATCH] docs: add detect duplicate assets to roadmap (#10093) * updating * uncomment --- docs/src/pages/roadmap.tsx | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/docs/src/pages/roadmap.tsx b/docs/src/pages/roadmap.tsx index f77748ee5d..4cff82afe1 100644 --- a/docs/src/pages/roadmap.tsx +++ b/docs/src/pages/roadmap.tsx @@ -63,6 +63,7 @@ import { mdiVectorCombine, mdiVideo, mdiWeb, + mdiContentDuplicate, } from '@mdi/js'; import Layout from '@theme/Layout'; import React from 'react'; @@ -216,13 +217,19 @@ const roadmap: Item[] = [ ]; const milestones: Item[] = [ - // withRelease({ - // icon: mdiVectorCombine, - // title: 'Container consolidation', - // description: - // 'The microservices container can be run as a worker within the server image, allowing us to remove it from the default stack.', - // release: 'v1.106.0', - // }), + withRelease({ + icon: mdiContentDuplicate, + title: 'Similar image detection', + description: 'Detect duplicate assets that aren’t exactly identical', + release: 'v1.106.0', + }), + withRelease({ + icon: mdiVectorCombine, + title: 'Container consolidation', + description: + 'The microservices container can be run as a worker within the server image, allowing us to remove it from the default stack.', + release: 'v1.106.0', + }), withRelease({ icon: mdiPencil, iconColor: 'saddlebrown',