From d0edceca528ccedb01b2291cbbbbc11ab3b5a6c5 Mon Sep 17 00:00:00 2001
From: Lukasz Lopatowski <llopat@man.poznan.pl>
Date: Wed, 2 Apr 2025 16:13:59 +0200
Subject: [PATCH] Updated version to 1.7.0 and added changelog entries for new
 release

---
 build.gradle                      |  2 +-
 src/main/resources/changelog.json | 26 +++++++++++++++++++++++---
 2 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/build.gradle b/build.gradle
index c81a2eec8..a3f6c9574 100644
--- a/build.gradle
+++ b/build.gradle
@@ -13,7 +13,7 @@ repositories {
     mavenCentral()
 }
 
-version = '1.7.0-SNAPSHOT'
+version = '1.7.0'
 group = 'net.geant.nmaas'
 
 java {
diff --git a/src/main/resources/changelog.json b/src/main/resources/changelog.json
index cdde8cebe..8c1c9229d 100644
--- a/src/main/resources/changelog.json
+++ b/src/main/resources/changelog.json
@@ -2,12 +2,32 @@
   "versions" : [
     {
       "verNo" : "1.7.0",
-      "date" : "(2025/-/-)",
+      "date" : "(2025/04/02)",
       "topic" : [
         {
-          "title" : "--",
+          "title" : "Integration with OIDC-compliant IdP",
+          "tags" : "[New feature]",
+          "description" : "Moved away from the custom SAML-based IdP integration in favor of adding OIDC support"
+        },
+        {
+          "title" : "Major dependencies upgrade",
+          "tags" : "[Enhancement]",
+          "description" : "Upgraded to Java 17 and Spring Boot to version 3.4"
+        },
+        {
+          "title" : "Improved bulk application deployment views",
+          "tags" : "[Enhancement]",
+          "description" : "Added bulk deployment status and progress information on the bulk details view and summary information about all ongoing deployments"
+        },
+        {
+          "title" : "User access token management",
+          "tags" : "[New feature]",
+          "description" : "Added possibility for users to generate personal access tokens to be used for interaction with the API bypassing the Portal"
+        },
+        {
+          "title" : "Applied caching for improved performance",
           "tags" : "[Enhancement]",
-          "description" : "--"
+          "description" : "Implemented data caching mechanism to speed up application catalog view load time"
         }
       ]
     },
-- 
GitLab