From 4d87d95eac5d979c01abbdfe218379357cb2d0b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Thu, 27 Feb 2025 11:23:39 +0100 Subject: [PATCH 01/10] chore(deps): upgrade Micronaut core to 4.7.15 --- platform/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platform/build.gradle b/platform/build.gradle index f1dd684bb61..a27ec672acf 100644 --- a/platform/build.gradle +++ b/platform/build.gradle @@ -38,6 +38,8 @@ dependencies { constraints { // Forced dependencies + // Temporal force to include https://github.com/micronaut-projects/micronaut-core/commit/9bb43ce55ea3fca97c12cb50c5f1baea28557729 as a potential fix for https://github.com/kestra-io/kestra/issues/3402 + api("io.micronaut:micronaut-core:4.7.15") api("org.slf4j:slf4j-api:$slf4jVersion") // need to force this dep as mysql-connector brings a version incompatible with the Google Cloud libs api("com.google.protobuf:protobuf-java:$protobufVersion") From 9bab2d2cfa413e68637fee61f334b874f87a0cd6 Mon Sep 17 00:00:00 2001 From: Piyush Bhaskar <102078527+Piyush-r-bhaskar@users.noreply.github.com> Date: Thu, 27 Feb 2025 14:09:48 +0100 Subject: [PATCH 02/10] feat(ui): introduce the execution timeline section on overview tab (#7498) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Miloš Paunović --- ui/src/components/executions/Overview.vue | 3 + ui/src/components/layout/Duration.vue | 11 +- ui/src/components/layout/Timeline.vue | 202 ++++++++++++++++++++++ ui/src/translations/en.json | 1 + 4 files changed, 212 insertions(+), 5 deletions(-) create mode 100644 ui/src/components/layout/Timeline.vue diff --git a/ui/src/components/executions/Overview.vue b/ui/src/components/executions/Overview.vue index 38c7492a4f9..b029bd5144d 100644 --- a/ui/src/components/executions/Overview.vue +++ b/ui/src/components/executions/Overview.vue @@ -1,4 +1,5 @@