diff --git a/Makefile b/Makefile
index e2f31d583..0d69587fd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,59 @@
-SHELL := /bin/bash
+SHELL := /bin/bash
run: ## Run Docusaurus
docker compose up -d
-install: ## Install Docusaurus
+install: ## Install dependencies
docker compose run --rm doc yarn
logs: ## View Docusaurus logs
docker compose logs -f doc
-run-es: ## Run Docusaurus in ESP version
- docker compose run --rm -p 4000:4000 doc yarn run startes
\ No newline at end of file
+run-es: ## Run Docusaurus in development mode (Spanish)
+ docker compose run --rm -p 4000:4000 doc yarn run startes
+
+# ==========================================
+# Production Build Commands
+# ==========================================
+
+build: ## Build for production (all locales)
+ docker compose run --rm doc yarn run build
+
+build-en: ## Build for production (English only)
+ docker compose run --rm -e DOCUSAURUS_DEFAULT_LOCALE=en doc yarn run build
+
+build-es: ## Build for production (Spanish only)
+ docker compose run --rm -e DOCUSAURUS_DEFAULT_LOCALE=es doc yarn run build
+
+serve: ## Serve production build locally (Search & Multilanguage work here)
+ docker compose run --rm -p 4000:4000 doc yarn run serve
+
+# ==========================================
+# CMS Commands
+# ==========================================
+
+collections: ## Regenerate Sveltia CMS config.yml from folder structure
+ python3 generate_cms_config.py
+
+tutorials: ## Regenerate tutorials-generated.json from MDX files
+ python3 generate_tutorials.py
+
+# ==========================================
+# Utility Commands
+# ==========================================
+
+clear: ## Clear Docusaurus cache
+ docker compose run --rm doc yarn run clear
+
+translations: ## Generate translation files
+ docker compose run --rm doc yarn run write-translations
+
+# ==========================================
+# Help
+# ==========================================
+
+help: ## Show this help
+ @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
+
+.PHONY: install run run-es build build-en build-es serve collections tutorials clear translations help
+.DEFAULT_GOAL := help
\ No newline at end of file
diff --git a/changelog/2023-08-23-V1.0.0.md b/changelog/2023-08-23-V1.0.0.md
new file mode 100644
index 000000000..1ebda11d0
--- /dev/null
+++ b/changelog/2023-08-23-V1.0.0.md
@@ -0,0 +1,28 @@
+---
+title: "Version 1.0.0"
+slug: v1-0-0
+date: 2023-08-23
+tags: [release]
+---
+
+# π Version 1.0.0
+
+
+
+23/08/2023
+
+## New Features
+
+- **Volume Configuration:** You can now configure volumes in project environments directly from the form.
+- **Nightly Shutdown with Timezone:** Added support for selecting time zones in the nightly shutdown.
+- **Manual Cluster Startup:** New button to manually start clusters.
+- **CloudFront Integration:** Support for using CloudFront to improve content delivery.
+- **Automatic Backups:** You can configure automatic backups for dependencies.
+- **Graviton Instances:** Support for using Graviton instances on nodes.
+- **Encryption:** Implemented encryption in StackSettings for added security.
+
+## Bug Fixes
+
+- Resolved an issue in the billing API and cost estimation.
+- Fixed errors when deleting Providers and VPNs.
+- You can now delete ACM certificates used by a Load Balancer without problems.
diff --git a/changelog/2023-08-29-V1.0.1.md b/changelog/2023-08-29-V1.0.1.md
new file mode 100644
index 000000000..74963ce73
--- /dev/null
+++ b/changelog/2023-08-29-V1.0.1.md
@@ -0,0 +1,18 @@
+---
+title: "Version 1.0.1"
+slug: v1-0-1
+date: 2023-08-29
+tags: [release]
+---
+
+# π Version 1.0.1
+
+
+
+
+29/08/2023
+
+## New Features
+
+- **Subscription Management:** Login and token updates are controlled based on the subscription status. Additionally, a new API was implemented to register users and companies, validating pending subscriptions, with a new model to better manage subscriptions, integrating AwsClient.
+- **Marketplace Onboarding:** Simplified process for creating users who come from a marketplace.
\ No newline at end of file
diff --git a/changelog/2023-09-04-V1.0.2.md b/changelog/2023-09-04-V1.0.2.md
new file mode 100644
index 000000000..390a0ffcd
--- /dev/null
+++ b/changelog/2023-09-04-V1.0.2.md
@@ -0,0 +1,22 @@
+---
+title: "Version 1.0.2"
+slug: v1-0-2
+date: 2023-09-04
+tags: [release]
+---
+
+# π Version 1.0.2
+
+
+
+04/09/2023
+
+## New Features
+
+- **Deployment Optimization:** Simplified the deployment process and project environment (ProjectEnv) editing, facilitating configuration and deployment.
+- **Resource and Configuration Adjustments:** You can now create custom aliases for buckets.
+- **Health Check Improvements:** The readiness probe for services in the development account is now optional.
+
+## Bug Fixes
+
+- Solved issues related to VPN and security parameter configuration.
diff --git a/changelog/2023-09-25-V1.0.3.md b/changelog/2023-09-25-V1.0.3.md
new file mode 100644
index 000000000..f8ec3d87d
--- /dev/null
+++ b/changelog/2023-09-25-V1.0.3.md
@@ -0,0 +1,23 @@
+---
+title: "Version 1.0.3"
+slug: v1-0-3
+date: 2023-09-25
+tags: [release]
+---
+
+# π Version 1.0.3
+
+
+
+25/09/2023
+
+## New Features
+
+- **Management Buttons and Form Improvements:** Added buttons for resource management and improved variable mapping forms.
+- **Cronjobs and Domain Regeneration:** You can now stop or activate cronjobs and regenerate domains.
+
+## Bug Fixes
+
+- Solved the issue of obtaining the VPN URI in Pritunl.
+- Fixed the account selection issue for viewer users.
+- Improved the handling of health check information sent to the backend.
diff --git a/changelog/2023-10-11-V1.0.4.md b/changelog/2023-10-11-V1.0.4.md
new file mode 100644
index 000000000..be17427a0
--- /dev/null
+++ b/changelog/2023-10-11-V1.0.4.md
@@ -0,0 +1,23 @@
+---
+title: "Version 1.0.4"
+slug: v1-0-4
+date: 2023-10-11
+tags: [release]
+---
+
+# π Version 1.0.4
+
+
+
+11/10/2023
+
+## New Features
+
+- **Refactoring and Improvements:** Refactored the dashboard and improved log visualization and the management of entity deletion.
+
+## Bug Fixes
+
+- Fixed user editing issues.
+- Corrected cluster state management.
+- Solved problems with environment domains.
+- Fixed error handling in S3 responses with CloudFront.
diff --git a/changelog/2023-10-27-V1.0.5.md b/changelog/2023-10-27-V1.0.5.md
new file mode 100644
index 000000000..b0211fa26
--- /dev/null
+++ b/changelog/2023-10-27-V1.0.5.md
@@ -0,0 +1,17 @@
+---
+title: "Version 1.0.5"
+slug: v1-0-5
+date: 2023-10-27
+tags: [release]
+---
+
+# π Version 1.0.5
+
+
+
+27/10/2023
+
+## Bug Fixes
+
+- Solved deployment issues and fixed Karpenter with spot instances.
+- Fixed issues in deleting entities and validating service URLs.
diff --git a/changelog/2023-11-06-V1.1.0.md b/changelog/2023-11-06-V1.1.0.md
new file mode 100644
index 000000000..d532ebe79
--- /dev/null
+++ b/changelog/2023-11-06-V1.1.0.md
@@ -0,0 +1,25 @@
+---
+title: "Version 1.1.0"
+slug: v1-1-0
+date: 2023-11-06
+tags: [release]
+---
+
+# π Version 1.1.0
+
+
+
+06/11/2023
+
+## New Features
+
+- **Vargroups Management:** Added the option to show vargroups in the forms for services, workers, hooks, and cronjobs.
+- **Kubecost:** Integrated Kubecost with Prometheus-stack.
+
+## Bug Fixes
+
+- Solved the issue with Karpenter on spot instances.
+- Fixed user roles and user editing.
+- Corrected problems when deleting an environment and the incorrect deletion of domains.
+- Fixed the error when trying to manually start the cluster.
+- Resolved an error in generating hooks.
diff --git a/changelog/2023-12-05-V1.1.1.md b/changelog/2023-12-05-V1.1.1.md
new file mode 100644
index 000000000..10ea95e81
--- /dev/null
+++ b/changelog/2023-12-05-V1.1.1.md
@@ -0,0 +1,18 @@
+---
+title: "Version 1.1.1"
+slug: v1-1-1
+date: 2023-12-05
+tags: [release]
+---
+
+# π Version 1.1.1
+
+
+
+05/12/2023
+
+## New Features
+
+- **Log Viewer in Jobs:** Added a log viewer in the job list, similar to what already exists for deployments.
+- **Dashboard v2:** Improvements in the second version of the Dashboard, with more options and better organization of information.
+- **Cluster Certificates:** Cluster certificates are now automatically deleted and updated to prevent expiration issues.
diff --git a/changelog/2024-01-05-V1.2.0.md b/changelog/2024-01-05-V1.2.0.md
new file mode 100644
index 000000000..4faa0bdd5
--- /dev/null
+++ b/changelog/2024-01-05-V1.2.0.md
@@ -0,0 +1,26 @@
+---
+title: "Version 1.2.0"
+slug: v1-2-0
+date: 2024-01-05
+tags: [release]
+---
+
+# π Version 1.2.0
+
+
+
+05/01/2024
+
+## New Features
+
+- **Logs in Grafana:** A data source has been configured in Grafana to display logs from S3.
+- **Cluster Update Button:** A button has been added to allow cluster updates from the interface.
+- **User Activity Log:** An activity log for user actions has been created.
+- **Domain Validation Deploy:** You can now create a deploy that runs once domains are validated.
+- **Two-Factor Authentication:** Two-factor authentication (2FA) has been added to the login for enhanced security.
+
+## Bug Fixes
+
+- An issue with builds using the same branch as the default has been fixed.
+- Log reading has been improved for faster processing.
+- Various frontend optimizations, including styles, search, and pending resource visibility, have been made.
diff --git a/changelog/2024-01-12-V1.2.1.md b/changelog/2024-01-12-V1.2.1.md
new file mode 100644
index 000000000..32630ffc7
--- /dev/null
+++ b/changelog/2024-01-12-V1.2.1.md
@@ -0,0 +1,22 @@
+---
+title: "Version 1.2.1"
+slug: v1-2-1
+date: 2024-12-01
+tags: [release]
+---
+
+# π Version 1.2.1
+
+
+
+12/01/2024
+
+## New Features
+
+- **Vargroup Form Optimization:** Usability improvements have been made to the Vargroup forms.
+- **Provider and User Account Deletion:** Deleting a provider now also deletes associated user accounts.
+
+## Bug Fixes
+
+- A bug in ACM certificate regeneration has been fixed.
+- A provider deletion issue has been corrected.
diff --git a/changelog/2024-01-25-V1.2.2.md b/changelog/2024-01-25-V1.2.2.md
new file mode 100644
index 000000000..11b86e920
--- /dev/null
+++ b/changelog/2024-01-25-V1.2.2.md
@@ -0,0 +1,22 @@
+---
+title: "Version 1.2.2"
+slug: v1-2-2
+date: 2024-01-25
+tags: [release]
+---
+
+# π Version 1.2.2
+
+
+
+25/01/2024
+
+## New Features
+
+- **Domain Validation Button:** A "check validation" button has been added to the domain drawer for easier domain management.
+- **Activity Log Table:** An activity log table has been created.
+- **Access Key Encryption:** Access keys for code version providers (GIT) are now encrypted.
+
+## Bug Fixes
+
+- An issue where the API didn't correctly recreate the ACM module during regeneration has been fixed.
diff --git a/changelog/2024-02-05-V1.2.3.md b/changelog/2024-02-05-V1.2.3.md
new file mode 100644
index 000000000..0628ce03b
--- /dev/null
+++ b/changelog/2024-02-05-V1.2.3.md
@@ -0,0 +1,21 @@
+---
+title: "Version 1.2.3"
+slug: v1-2-3
+date: 2024-02-05
+tags: [release]
+---
+
+# π Version 1.2.3
+
+
+
+05/02/2024
+
+## New Features
+
+- **Alias Decoupling in Web Services:** The creation of aliases is now separated from the web services form.
+- **IAM Password Reset:** It is now possible to reset the IAM password for a user.
+
+## Bug Fixes
+
+- A minor issue with release tasks has been corrected.
diff --git a/changelog/2024-02-15-V1.2.4.md b/changelog/2024-02-15-V1.2.4.md
new file mode 100644
index 000000000..fb497524d
--- /dev/null
+++ b/changelog/2024-02-15-V1.2.4.md
@@ -0,0 +1,22 @@
+---
+title: "Version 1.2.4"
+slug: v1-2-4
+date: 2024-02-15
+tags: [release]
+---
+
+# π Version 1.2.4
+
+
+
+15/02/2024
+
+## New Features
+
+- **Cluster Switcher Optimization:** Cluster selector behavior has been optimized.
+- **Login in AWS Subscription Flow:** The AWS subscription flow now includes the ability to log in directly.
+
+## Bug Fixes
+
+- Callback issues for Git integrations and Docker file path for GitLab have been resolved.
+- Minor billing screen-related bugs have been fixed.
diff --git a/changelog/2024-03-01-V1.3.0.md b/changelog/2024-03-01-V1.3.0.md
new file mode 100644
index 000000000..c5c85bc7b
--- /dev/null
+++ b/changelog/2024-03-01-V1.3.0.md
@@ -0,0 +1,28 @@
+---
+title: "Version 1.3.0"
+slug: v1-3-0
+date: 2024-03-01
+tags: [release]
+---
+
+# π Version 1.3.0
+
+
+
+01/03/2024
+
+## New Features
+
+- **Project Details View:** A detailed project view is now available in the new interface.
+- **RDS Metrics API:** A new API for displaying RDS metrics has been added, improving resource visibility.
+- **Improved LogViewer:** LogViewer loading is now faster and more efficient.
+- **Enhanced Onboarding:** A new onboarding process has been implemented for easier setup.
+- **Redis Monitoring:** Redis monitoring has been added, improving infrastructure supervision.
+- **RDS Replica Configuration:** The option to configure replicas in the RDS Dependency has been added for more flexibility.
+- **Domain Deletion Status:** Domain deletion now creates a deploy with `pending-approval` status, rather than an automatic deploy.
+- **Job Workload Improvements:** Job workload has been improved, allowing automatic retries in case of an initial failure.
+
+## Bug Fixes
+
+- Bitbucket integration issues have been resolved.
+- Undefined value issues in Vargroups have been fixed.
diff --git a/changelog/2024-03-06-V1.4.0.md b/changelog/2024-03-06-V1.4.0.md
new file mode 100644
index 000000000..69d158f9d
--- /dev/null
+++ b/changelog/2024-03-06-V1.4.0.md
@@ -0,0 +1,25 @@
+---
+title: "Version 1.4.0"
+slug: v1-4-0
+date: 2024-03-06
+tags: [release]
+---
+
+# π Version 1.4.0
+
+
+
+03/06/2024
+
+## New Features
+
+- **Grafana Configuration:** The database for the Grafana addon was configured, along with DataSources and Dashboards.
+- **Prometheus Metrics Persistence with Thanos:** Added support for persisting Prometheus metrics using Thanos.
+- **New Volume API:** Implemented support for the new volume API, displaying statuses and applying configuration for deployments.
+- The update option in addons has been disabled.
+- Now, when a dependency is deleted, a deploy with "pending-approval" will be created instead of an automatic one.
+
+## Bug Fixes
+
+- Fixed an issue where pre-hooks and new volumes were added during deploys, preventing them from being generated.
+- Subdomains are now correctly marked as delegated if the parent domains are already delegated.
diff --git a/changelog/2024-04-11-V1.4.1.md b/changelog/2024-04-11-V1.4.1.md
new file mode 100644
index 000000000..0566760b5
--- /dev/null
+++ b/changelog/2024-04-11-V1.4.1.md
@@ -0,0 +1,24 @@
+---
+title: "Version 1.4.1"
+slug: v1-4-1
+date: 2024-04-11
+tags: [release]
+---
+
+# π Version 1.4.1
+
+
+
+04/11/2024
+
+## New Features
+
+- **Dependency and OpenSearch Monitoring:** A new monitoring page was created for dependencies, facilitating the tracking of their status. OpenSearch was included.
+- **ECR Lifecycle Policy:** A lifecycle policy was configured for ECR, improving image management.
+
+## Bug Fixes
+
+- Fixed the issue of duplicate names between cluster and node in Redis.
+- Resolved various frontend errors that affected the user experience.
+- Fixed the problem where an error was displayed when attempting to publish a vargroup without an associated service.
+- Issues with performing multiple deployments and releases in a row were fixed.
diff --git a/changelog/2024-04-25-V1.4.2.md b/changelog/2024-04-25-V1.4.2.md
new file mode 100644
index 000000000..21190880c
--- /dev/null
+++ b/changelog/2024-04-25-V1.4.2.md
@@ -0,0 +1,21 @@
+---
+title: "Version 1.4.2"
+slug: v1-4-2
+date: 2024-04-25
+tags: [release]
+---
+
+# π Version 1.4.2
+
+
+
+04/25/2024
+
+## New Features
+
+- **New Metrics:** Added new metrics for S3 buckets and RabbitMQ, improving service monitoring. An OpenSearch metrics monitoring system was also implemented.
+- **Monitoring Schema Reorganization:** Monitoring schema structures were reorganized for better management and visualization. The Dependencies monitoring screen now supports different resource types, providing a more detailed view.
+
+## Bug Fixes
+
+- A critical issue with vargroups was resolved, ensuring their proper functioning.
diff --git a/changelog/2024-05-13-V1.4.3.md b/changelog/2024-05-13-V1.4.3.md
new file mode 100644
index 000000000..eb5218097
--- /dev/null
+++ b/changelog/2024-05-13-V1.4.3.md
@@ -0,0 +1,25 @@
+---
+title: "Version 1.4.3"
+slug: v1-4-3
+date: 2024-05-13
+tags: [release]
+---
+
+# π Version 1.4.3
+
+
+
+05/13/2024
+
+## New Features
+
+- **Dashboard Management Improvements:** Dashboard loading was improved, allowing it to be viewed even if no account is selected.
+- **Billing and Project Screen Improvements:** Improvements to the billing screen were made, including a new "others" section to account for previously unconsidered costs. The project environment screen was also improved.
+- **Policy Updates:** CloudFormation policy has been updated to enhance management and security.
+
+## Bug Fixes
+
+- Fixed a critical error that prevented the creation of providers.
+- Reviewed and resolved an issue related to NewRelic integration.
+- Fixed a problem with the refresh token when requesting the VPN URI.
+- **ACM Validation Screen and Build Logs Errors:** Corrections made to the ACM validation table and logs display for builds in creation state.
diff --git a/changelog/2024-05-23-V1.5.0.md b/changelog/2024-05-23-V1.5.0.md
new file mode 100644
index 000000000..10e0a1b97
--- /dev/null
+++ b/changelog/2024-05-23-V1.5.0.md
@@ -0,0 +1,27 @@
+---
+title: "Version 1.5.0"
+slug: v1-5-0
+date: 2024-05-23
+tags: [release]
+---
+
+# π Version 1.5.0
+
+
+
+05/23/2024
+
+## New Features
+
+- **Multiple Project Environments Creation:** You can now create multiple project environments using the same repository and branch.
+- **Domain Validation for Aliases:** Improved domain creation validation for aliases by using an existing usable ACM for ingress.
+- **Resource Configuration in Project Env:** Added the ability to configure build and deploy resources per project environment.
+- **Deploy and Build Request Configuration:** Added the option to configure deploy and build requests in a ProjectEnv.
+- **Grafana Dashboard:** A Grafana dashboard was incorporated to visualize consumption by namespace.
+- **Loki Configuration:** Logs can now be searched by namespace with the new Loki configuration.
+- **Data Collection:** Improved the billing collection script to be idempotent and executable for specific dates.
+
+## Bug Fixes
+
+- Fixed an error when creating S3 dependencies and solved a critical problem with vargroups during cluster shutdown updates.
+- Fixed a critical error when inviting collaborators.
diff --git a/changelog/2024-06-24-V1.5.1.md b/changelog/2024-06-24-V1.5.1.md
new file mode 100644
index 000000000..cf4b39f2f
--- /dev/null
+++ b/changelog/2024-06-24-V1.5.1.md
@@ -0,0 +1,21 @@
+---
+title: "Version 1.5.1"
+slug: v1-5-1
+date: 2024-06-24
+tags: [release]
+---
+
+# π Version 1.5.1
+
+
+
+06/24/2024
+
+## New Features
+
+- **Advanced Resource Configuration:** Advanced options for resource configuration in project environments have been implemented.
+- **Optimization of Data Collection Scripts:** Improved the efficiency of data collection scripts for faster workload.
+
+## Bug Fixes
+
+- Several interface errors affecting system usability have been resolved.
diff --git a/changelog/2024-08-12-V1.6.0.md b/changelog/2024-08-12-V1.6.0.md
new file mode 100644
index 000000000..005e034bf
--- /dev/null
+++ b/changelog/2024-08-12-V1.6.0.md
@@ -0,0 +1,28 @@
+---
+title: "Version 1.6.0"
+slug: v1-6-0
+date: 2024-08-12
+tags: [release]
+---
+
+# π Version 1.6.0
+
+
+
+08/12/2024
+
+## New Features
+
+- **Support for ARM Instances and Additional RDS Versions:** Added ARM instances and extra versions in RDS.
+- **EKS Updated to Version 1.29:** EKS has been updated to version 1.29. Changelogs for EKS updates are now displayed.
+- **Improvements in Provider Creation and Editing:** Screens and fields for provider forms were updated, including changes in states and visual display.
+- **Improved Repository Search:** Added support for asynchronous search in the repository selector and enhanced the search function for GitHub, GitLab, and Bitbucket.
+- **Healthcheck Parameterization:** Healthcheck properties can now be parameterized with JSONSchema.
+- **New Dashboard:** A new dashboard has been added to view consumption by namespace.
+- Fixed an error when regenerating certificates, as well as issues with builds not running properly.
+- Frontend errors related to listing and API problems that caused filtering errors have been corrected.
+
+## Bug Fixes
+
+- Fixed an error when regenerating certificates, as well as issues with builds not running properly.
+- Frontend errors related to listing and API problems that caused filtering errors have been corrected.
diff --git a/changelog/2024-08-22-V1.6.1.md b/changelog/2024-08-22-V1.6.1.md
new file mode 100644
index 000000000..830509904
--- /dev/null
+++ b/changelog/2024-08-22-V1.6.1.md
@@ -0,0 +1,22 @@
+---
+title: "Version 1.6.1"
+slug: v1-6-1
+date: 2024-08-22
+tags: [release]
+---
+
+# π Version 1.6.1
+
+
+
+08/22/2024
+
+## New Features
+
+- **Dependency Version Updates:** Updated versions of MQ, Elasticsearch, Memcache, and Redis dependencies.
+- **Authentication Improvements:** Added support for storing authentication tokens via cookies instead of local storage.
+- Added ACM validation record printing on the ACM detail screen, and ACM status is now included in the system.
+
+## Bug Fixes
+
+- Issues with the provider flow have been resolved.
diff --git a/changelog/2024-09-19-V1.6.2.md b/changelog/2024-09-19-V1.6.2.md
new file mode 100644
index 000000000..b2b547e1d
--- /dev/null
+++ b/changelog/2024-09-19-V1.6.2.md
@@ -0,0 +1,24 @@
+---
+title: "Version 1.6.2"
+slug: v1-6-2
+date: 2024-09-19
+tags: [release]
+---
+
+# π Version 1.6.2
+
+
+
+09/19/2024
+
+## New Features
+
+- **Upgrades:** Updated **Prometheus**, **Loki**, and **EBS CSI Driver** to the latest versions as of August 2024.
+- **EBS CSI Driver Migration:** SleakOps now uses the AWS-managed EKS Addon for the EBS CSI Driver, replacing the self-managed version.
+- **Prometheus and Loki with EBS:** Prometheus now utilizes EBS volumes for data persistence, preventing data loss even if the pods crash.
+- **Loki with SimpleScalable: I**t adopts a **SimpleScalable** structure with **TSDB** storage for logs, enhancing performance.
+- **SQS Dead-letter Queues:** Now supports the creation of **SQS queues** with associated dead-letter queues for improved error handling.
+
+## Bug Fixes
+
+- Various minor bug fixes and improvements to the platform's workload flows.
diff --git a/changelog/2024-09-27-V1.6.3.md b/changelog/2024-09-27-V1.6.3.md
new file mode 100644
index 000000000..ae547729a
--- /dev/null
+++ b/changelog/2024-09-27-V1.6.3.md
@@ -0,0 +1,20 @@
+---
+title: "Version 1.6.3"
+slug: v1-6-3
+date: 2024-09-27
+tags: [release]
+---
+
+# π Version 1.6.3
+
+
+
+27/09/2024
+
+## New Features
+
+- **Registration:** Implemented a new registration flow.
+
+## Bug Fixes
+
+- Various minor bug fixes and improvements.
diff --git a/changelog/2024-10-14-V1.7.0.md b/changelog/2024-10-14-V1.7.0.md
new file mode 100644
index 000000000..aa3b46fea
--- /dev/null
+++ b/changelog/2024-10-14-V1.7.0.md
@@ -0,0 +1,23 @@
+---
+title: "Version 1.7.0"
+slug: v1-7-0
+date: 2024-10-14
+tags: [release]
+---
+
+# π Version 1.7.0
+
+
+
+14/10/2024
+
+## New Features
+
+- **Advanced Node Management:** Introduced node pool management to provide greater control over the types of nodes where workloads are executed.
+- **Cluster Module Migration:** All modules created with the cluster now run on Graviton instances, enhancing performance and reducing costs.
+- **Cluster Add-ons:** All add-ons now run on Graviton instances, further improving performance and lowering costs.
+- **Isolated Build Nodes:** Builds are now executed on dedicated nodes separate from the application nodes, improving the stability of the nodes running applications.
+
+## Bug Fixes
+
+- Various minor bug fixes.
diff --git a/changelog/2024-10-30-V1.7.1.md b/changelog/2024-10-30-V1.7.1.md
new file mode 100644
index 000000000..797c715d0
--- /dev/null
+++ b/changelog/2024-10-30-V1.7.1.md
@@ -0,0 +1,22 @@
+---
+title: "Version 1.7.1"
+slug: v1-7-1
+date: 2024-10-30
+tags: [release]
+---
+
+# π Version 1.7.1
+
+
+
+30/10/2024
+
+## New Features
+
+- **Environment and Domain Creation:** Improved the process for creating environments and domains. You can now use a different domain than the one configured globally without any limitations.
+- **Notifications:** Added a notification system to inform users about pending manual actions and scheduled infrastructure updates.
+- **Documentation:** Updated documentation on managing domains, projects, dependencies, and environment variables.
+
+## Bug Fixes
+
+- Various minor bug fixes.
diff --git a/changelog/2024-11-05-V1.7.2.md b/changelog/2024-11-05-V1.7.2.md
new file mode 100644
index 000000000..f57256ee4
--- /dev/null
+++ b/changelog/2024-11-05-V1.7.2.md
@@ -0,0 +1,23 @@
+---
+title: "Version 1.7.2"
+slug: v1-7-2
+date: 2024-11-05
+tags: [release]
+---
+
+# π Version 1.7.2
+
+
+
+05/11/2024
+
+## New Features
+
+- **S3 Bucket Deletion:** Introduced the ability to delete S3 buckets containing a large number of files.
+- **VPN:** Updated the Pritunl module to the latest version for enhanced security and performance.
+- **Subscription Management Improvements:** Enhanced the management of subscriptions for a better user experience.
+- **User Registration:** Enabled the registration of new users to the platform.
+
+## Bug Fixes
+
+- Various minor bug fixes.
diff --git a/changelog/2024-11-14-V1.7.3.md b/changelog/2024-11-14-V1.7.3.md
new file mode 100644
index 000000000..a458ada59
--- /dev/null
+++ b/changelog/2024-11-14-V1.7.3.md
@@ -0,0 +1,22 @@
+---
+title: "Version 1.7.3"
+slug: v1-7-3
+date: 2024-11-14
+tags: [release]
+---
+
+# π Version 1.7.3
+
+
+
+
+14/11/2024
+
+## New Features
+
+- **Oracle RDS Support (Beta):** You can now manage Oracle RDS instances as dependencies within SleakOps.
+- **Aurora PostgreSQL Serverless Support (Beta):** Added the ability to create and manage Aurora PostgreSQL Serverless databases.
+
+## Bug Fixes
+
+- Various minor bug fixes.
\ No newline at end of file
diff --git a/changelog/2024-12-05-V1.7.4.md b/changelog/2024-12-05-V1.7.4.md
new file mode 100644
index 000000000..112b590d5
--- /dev/null
+++ b/changelog/2024-12-05-V1.7.4.md
@@ -0,0 +1,23 @@
+---
+title: "Version 1.7.4"
+slug: v1-7-4
+date: 2024-12-05
+tags: [release]
+---
+
+# π Version 1.7.4
+
+
+
+05/12/2024
+
+## New Features
+
+- **Add-on Accessibility:** Added links in SleakOps for easy access to view logs, APM, or metrics for specific resources.
+- **OpenTelemetry (Beta):** Introduced an add-on to enhance observability in applications deployed with SleakOps. With OpenTelemetry, you can have your own APM to monitor metrics like request rate, latency, and error rate of your application.
+- **Add-on Availability Configurations:** Added various availability settings for each add-on.
+- **Documentation:** Updated the add-on documentation and made it available in Spanish.
+
+## Bug Fixes
+
+- **Kubecost Integration Review:** Reviewed the Prometheus-Kubecost integration. Kubecost now correctly maps the names of deployed resources to their costs, greatly improving the accuracy of its estimates. It's now possible to enable approximate network traffic cost analysis within the cluster in Kubecost (Beta).
diff --git a/changelog/2024-12-09-V1.7.5.md b/changelog/2024-12-09-V1.7.5.md
new file mode 100644
index 000000000..ad11e6c6c
--- /dev/null
+++ b/changelog/2024-12-09-V1.7.5.md
@@ -0,0 +1,17 @@
+---
+title: "Version 1.7.5"
+slug: v1-7-5
+date: 2024-12-09
+tags: [release]
+---
+
+# π Version 1.7.5
+
+
+
+09/12/2024
+
+## New Features
+
+- **AWS Integration Error Handling:**: Implemented a mechanism to handle delays in AWS account activations created by SleakOps.
+- **Add-on Links in Builds:** Added links for easily viewing logs and metrics during the build process.
diff --git a/changelog/2025-01-06-V1.7.6.md b/changelog/2025-01-06-V1.7.6.md
new file mode 100644
index 000000000..6b1acc61d
--- /dev/null
+++ b/changelog/2025-01-06-V1.7.6.md
@@ -0,0 +1,25 @@
+---
+title: "Version 1.7.6"
+slug: v1-7-6
+date: 2025-01-06
+tags: [release]
+---
+
+# π Version 1.7.6
+
+
+
+06/01/2025
+
+## New Features
+
+- **New Nodepool Configurations**: You can now set additional parameters, such as minimum instance sizes and more.
+- **Job with Specific Images**: When creating a job, you can specify the exact image and tag you want to run (e.g., `postgres:16.4`).
+- **(BETA) Chart Extension by Project**: SleakOps can now extend the charts used to deploy project workloads, allowing you to add dependencies. For more information, see the [Helm documentation](https://helm.sh/docs/helm/helm_dependency/).
+- **CI/CD Improvements**: The file for configuring CI/CD has been simplified and optimized.
+
+## Bug Fixes
+
+- **Internal Web Service URL**: Fixed an issue that caused incorrect URLs for βinternalβ type web services.
+- **Volume Deletion**: Resolved problems related to volume deletion under various retention policies.
+- **UX/UI Enhancements**: Improvements in the interface for Projects, Volumes, and Variable Groups.
diff --git a/changelog/2025-02-05-V1.7.7.md b/changelog/2025-02-05-V1.7.7.md
new file mode 100644
index 000000000..1c815f02b
--- /dev/null
+++ b/changelog/2025-02-05-V1.7.7.md
@@ -0,0 +1,25 @@
+---
+title: "Version 1.7.7"
+slug: v1-7-7
+date: 2025-02-05
+tags: [release]
+---
+
+# π Version 1.7.7
+
+
+
+05/02/2025
+
+## New Features
+
+- **Import from External Buckets:** Quickly copy files from an external S3 Bucket into SleakOps via the new Import Bucket feature.
+- **Project View Overhaul:** See logs and key info in a single screen for better visibility.
+- **Executions Renamed to Workloads:** Updated terminology to align with internal cluster notation.
+- **Cluster Deletion Optimization:** Added extra validation for a more secure and stable deletion process.
+
+## Bug Fixes
+
+- **Project Permissions for Jobs:** Fixed an issue where Jobs used cluster node permissions instead of Project permissions.
+- **Docker Args Modification:** Builds now correctly apply any Docker Args changed just before they run.
+- **VPN Profile Generation:** Resolved an issue preventing third-party user profiles from being generated successfully.
diff --git a/changelog/2025-02-10-V1.7.8.md b/changelog/2025-02-10-V1.7.8.md
new file mode 100644
index 000000000..ca145d9c0
--- /dev/null
+++ b/changelog/2025-02-10-V1.7.8.md
@@ -0,0 +1,20 @@
+---
+title: "Version 1.7.8"
+slug: v1-7-8
+date: 2025-02-10
+tags: [release]
+---
+
+# π Version 1.7.8
+
+
+
+10/02/2025
+
+## New Features
+
+- **Kubernetes 1.30:** Updated EKS support to version 1.30.
+
+## Bug Fixes
+
+- **Minor UI Enhancements:** Improved the visual design for project and workload screens.
diff --git a/changelog/2025-02-17-V1.7.9.md b/changelog/2025-02-17-V1.7.9.md
new file mode 100644
index 000000000..6a63becdd
--- /dev/null
+++ b/changelog/2025-02-17-V1.7.9.md
@@ -0,0 +1,24 @@
+---
+title: "Version 1.7.9"
+slug: v1-7-9
+date: 2025-02-17
+tags: [release]
+---
+
+# π Version 1.7.9
+
+
+
+
+17/02/2025
+
+## New Features
+
+- **Cronjob Enhancements:** Configure cronjob policies and easily filter between active and inactive cronjobs.
+- **Support Emails on Notifications:** When SleakOps generates a notification, users now receive it via email.
+- **EKS Insights:** During cluster upgrades, SleakOps checks EKS Insights to ensure everything is running smoothly.
+
+## Bug Fixes
+
+- **Project Flow Improvements:** Enhanced various settings, forms, and other elements for smoother project management.
+- **AWS Account Creation Flow:** Now supports inactive AWS accounts, providing clear guidance on how to manually activate them before resuming the process in SleakOps.
\ No newline at end of file
diff --git a/changelog/2025-04-01-V1.7.10.md b/changelog/2025-04-01-V1.7.10.md
new file mode 100644
index 000000000..c07461667
--- /dev/null
+++ b/changelog/2025-04-01-V1.7.10.md
@@ -0,0 +1,30 @@
+---
+title: "Version 1.7.10"
+slug: v1-7-10
+date: 2025-04-01
+tags: [release]
+---
+
+# π Version 1.7.10
+
+
+
+01/04/2025
+
+## New Features
+
+- **Enhanced Permission Control:** Projects can now have additional associated permissions, whether they are AWS IAM Policies or custom permissions.
+- **Dependency Details:** The configuration details of each dependency are now displayed within its detail view.
+- **Cluster Update Screen Improvements:** EKS Insights analysis is now included directly in SleakOps to streamline cluster updates.
+- **Build & Project Enhancements:** Additional information during builds and improved project validation workflows.
+
+## Bug Fixes
+
+- **Improved Text Input:** Resolved issues affecting text inputs in forms.
+- **Cluster Access Data:** Fixed a bug when retrieving cluster connection data under a different selected account.
+- **Domain List Filters:** Added filters by account to the domain listing.
+- **Nodepool List Improvements:** Refined visuals for the nodepool list view.
+- **Add-on Installation Updates:** The list of add-ons now refreshes properly after installation.
+- **Variable Group Editing:** Fixed an issue with editing variable groups.
+- **Subscription Attachment:** Addressed a bug that prevented new subscriptions from attaching correctly.
+- **Cost Forecast:** Fixed forecasting issues for better cost estimations.
diff --git a/changelog/2025-04-24-V1.7.11.md b/changelog/2025-04-24-V1.7.11.md
new file mode 100644
index 000000000..048ac7671
--- /dev/null
+++ b/changelog/2025-04-24-V1.7.11.md
@@ -0,0 +1,26 @@
+---
+title: "Version 1.7.11"
+slug: v1-7-11
+date: 2025-04-24
+tags: [release]
+---
+
+# π Version 1.7.11
+
+
+
+
+24/04/2025
+
+## New Features
+
+- **Kubernetes 1.31 & Karpenter 1.3:** SleakOps now provisions clusters on EKS 1.31 and upgrades the autoscaler to Karpenter 1.3.
+- **Stronger Secret Management :** All secrets are now also stored encrypted in AWS Systems Manager Parameter Store, adding an extra layer of durability beyond the in-cluster copy.
+
+## Bug Fixes
+
+- **Dev-Cluster Workers:** Removed the PodDisruptionBudge improving worker reliability in development clusters when the cluster had the scheduler shutdown enabled.
+- **Builds:** Builds are no longer triggered for every minor project edit.
+- **Deployments:** Switched deployments jobs away from Fargate; build logs are now persisted for easier troubleshooting.
+- **Web Service Details:** Refined the service detail page for clearer visibility of endpoints, status, and metrics.
+- **Kubecost Add-on:** Stability improvements
\ No newline at end of file
diff --git a/changelog/2025-05-14-V1.7.12.md b/changelog/2025-05-14-V1.7.12.md
new file mode 100644
index 000000000..54dd9d6d3
--- /dev/null
+++ b/changelog/2025-05-14-V1.7.12.md
@@ -0,0 +1,23 @@
+---
+title: "Version 1.7.12"
+slug: v1-7-12
+date: 2025-05-14
+tags: [release]
+---
+
+# π Version 1.7.12
+
+
+
+
+14/05/2025
+
+## New Features
+
+- **New Support Flow:** Introduced a support chatbot and ticketing system to provide better traceability and faster response times.
+- **Subscription & Plan Management:** Enhanced tools for managing subscriptions and service plans.
+
+## Bug Fixes
+
+- **Form Improvements:** General enhancements to form usability and validation.
+- **Project Console:** UI/UX improvements in the project console screen.
\ No newline at end of file
diff --git a/changelog/2025-06-02-V1.7.13.md b/changelog/2025-06-02-V1.7.13.md
new file mode 100644
index 000000000..f85c58a90
--- /dev/null
+++ b/changelog/2025-06-02-V1.7.13.md
@@ -0,0 +1,27 @@
+---
+title: "Version 1.7.13"
+slug: v1-7-13
+date: 2025-06-02
+tags: [release]
+---
+
+# π Version 1.7.13
+
+
+
+02/06/2025
+
+## New Features
+
+- **Dependency Monitoring:** Improved visualization and tracking of dependencies.
+- **Service Control:** New toggle to turn webservices and workers on or off.
+- **Builds with or without cache:** Option to run builds using cache or from scratch.
+- **S3 Bucket Import with Versioning:** Added support for importing S3 Buckets with active versioning.
+- **Variable Groups:** Enhanced interface for managing variable groups.
+- **Dockerfile Validation:** New validations to ensure reliability of Dockerfiles.
+
+## Bug Fixes
+
+- **Job Logs:** Fixed broken log links for Jobs.
+- **Branch Names:** Added support for branches with / in their names.
+- **GitLab Pipelines:** Fixed issues affecting pipeline execution.
diff --git a/changelog/2025-06-26-V1.7.14.md b/changelog/2025-06-26-V1.7.14.md
new file mode 100644
index 000000000..3f44c0c43
--- /dev/null
+++ b/changelog/2025-06-26-V1.7.14.md
@@ -0,0 +1,27 @@
+---
+title: "Version 1.7.14"
+slug: v1-7-14
+date: 2025-06-26
+tags: [release]
+---
+
+# π Version 1.7.14
+
+
+
+
+26/06/2025
+
+## New Features
+
+- **State Transition Improvements:** Smoother state changes for cluster addons and forms.
+- **Support with Images:** Users can now upload images in the support chat.
+- **Jobs from Cronjobs or Existing Jobs:** Ability to launch a Job from an existing cronjob or Job.
+- **Infrastructure Errors:** Improved parsing and display of infrastructure errors for easier troubleshooting.
+
+## Bug Fixes
+
+- **Duplicate Volumes:** Fixed issue when creating volumes with the same name.
+- **Duplicate Users:** Prevented creation of users with the same email.
+- **Duplicate Dependencies:** Blocked creation of dependencies with duplicate names.
+- **Dependency Monitoring:** Fixed date range issues on the dependency monitoring screen.
\ No newline at end of file
diff --git a/changelog/2025-07-07-V1.7.15.md b/changelog/2025-07-07-V1.7.15.md
new file mode 100644
index 000000000..5bdef8a31
--- /dev/null
+++ b/changelog/2025-07-07-V1.7.15.md
@@ -0,0 +1,27 @@
+---
+title: "Version 1.7.15"
+slug: v1-7-15
+date: 2025-07-07
+tags: [release]
+---
+
+# π Version 1.7.15
+
+
+
+
+07/07/2025
+
+## New Features
+
+- **Nodegroup Spot Resilience:** Spot nodegroups now prevent failures when no Spot instances are available.
+- **File-based VariableGroups:** Added support for creating variablegroups of type file.
+- **Agent Bot (beta):** Experimental agent bot released in beta.
+
+## Bug Fixes
+
+- **Dependent domain configuration:** Generate DNS records when parent domain already created.
+- **Cluster status with nightly shutdown:** Fixed incorrect status display for clusters with nightly shutdown enabled.
+- **VariableGroups filters:** Fiter by projects on variablegroups list
+- **Delete cluster:** Fixed deletion cluster flow.
+- **Support ticket status:** Fixed close support ticket status.
\ No newline at end of file
diff --git a/changelog/2025-07-21-V1.7.16.md b/changelog/2025-07-21-V1.7.16.md
new file mode 100644
index 000000000..988110e21
--- /dev/null
+++ b/changelog/2025-07-21-V1.7.16.md
@@ -0,0 +1,22 @@
+---
+title: "Version 1.7.16"
+slug: v1-7-16
+date: 2025-07-21
+tags: [release]
+---
+
+# π Version 1.7.16
+
+
+
+
+21/07/2025
+
+## New Features
+
+- **Projects with Public Repositories:** You can now create and manage projects linked to public repositories.
+- **Exclude Builds from Metrics:** Builds can be excluded from the Grafana metrics dashboard for more accurate reporting.
+
+## Bug Fixes
+
+- **New Project Deployments:** Fixed issues preventing successful deployment of newly created projects.
\ No newline at end of file
diff --git a/changelog/2025-10-01-V2.0.0.md b/changelog/2025-10-01-V2.0.0.md
new file mode 100644
index 000000000..f7f422618
--- /dev/null
+++ b/changelog/2025-10-01-V2.0.0.md
@@ -0,0 +1,37 @@
+---
+title: "Version 2.0.0"
+slug: v2-0-0
+date: 2025-10-01
+tags: [release]
+---
+
+# π Version 2.0.0
+
+
+
+10/01/2025
+
+## New Features
+
+- **Full Console Redesign:** Modernized UI for a cleaner, more intuitive experience.
+- **Light Theme Support:** Complete support for light mode.
+- **Support Bot:** Automated responses for common support questions.
+- **Comprehensive Documentation:** Expanded guides covering all features.
+- **Update lambdas:** Update python versions for lambdas.
+- **Project Chart:** Promoted to stable.
+- **Project Access:** Promoted to stable.
+- **Dependency Aurora MySQL:** Promoted to stable.
+- **Dependency Oracle:** Promoted to stable.
+- **Dependency MariaDB:** Promoted to stable.
+- **Dependency Aurora PostgreSQL:** Promoted to stable.
+- **Dependency Editing:** Ability to edit existing dependencies.
+- **Dockertron (beta):** AI-powered automatic dockerization.
+- **Builds cancel:** Could cancel pending builds.
+- **New MSK Dependency:** Support for Kafka via AWS MSK.
+- **Enhanced Webservices:** Configure custom ingress annotations and optional healthchecks.
+- **Advanced Nodepools:** New fallback strategies and instance mix (reserved, spot, on-demand) for better cost and performance control.
+
+## Bug Fixes
+
+- **GitLab self-hosted:** Fixed URL validation.
+- **Cluster deletion:** Improved cascading deletion handling.
diff --git a/changelog/2025-10-15-V2.0.1.md b/changelog/2025-10-15-V2.0.1.md
new file mode 100644
index 000000000..011ae956e
--- /dev/null
+++ b/changelog/2025-10-15-V2.0.1.md
@@ -0,0 +1,35 @@
+---
+title: "Version 2.0.1"
+slug: v2-0-1
+date: 2025-10-15
+tags: [release]
+---
+
+# π Version 2.0.1
+
+
+
+
+10/15/2025
+
+## New Features
+
+- **Builds and Deploys Table:** Improvements to the data shown in the builds and deploys table.
+
+## Bug Fixes
+
+- **Nightly Shutdown Cron:** Fixed visualization of the nightly shutdown cron.
+- **Cluster Status:** Fixed Cluster status update while updating.
+- **Long Notifications:** Fixed visualization of long notifications.
+- **Third-Party VPN:** Fixed VPN access for third parties.
+- **Deploy Cancellation:** Fixed deploy cancellation flow.
+- **Provider Creation:** Fixed text hierarchies in the Provider creation flow.
+- **Missing Information:** Fixed redirection in the missing information flow for Project.
+- **Viewer User:** Fixed navigation for viewer users.
+- **Light Mode Toggles:** Improved toggle visibility in light mode.
+- **Dependency MQ Password:** Fixed password auto-generation for Dependency MQ.
+- **Icon Loading:** Improvements in icon loading.
+- **Transition Screens:** Fixed transition screens during data loading.
+- **Project Console Tables:** Improved table visualization on the "Project Console" screen.
+- **Infrastructure Errors:** Fixed error messages when infrastructure module execution fails.
+- **Mobile Account Selector:** Support for account selector on mobile devices.
\ No newline at end of file
diff --git a/changelog/2025-11-10-V2.1.0.md b/changelog/2025-11-10-V2.1.0.md
new file mode 100644
index 000000000..e629cac6c
--- /dev/null
+++ b/changelog/2025-11-10-V2.1.0.md
@@ -0,0 +1,39 @@
+---
+title: "Version 2.1.0"
+slug: v2-1-0
+date: 2025-11-10
+tags: [release]
+---
+
+# π Version 2.1.0
+
+
+
+11/05/2025
+
+## New Features
+
+- **Cluster Update:** Support for Cluster update from 1.31 to 1.32.
+- **Dependency Tour:** New guided tour for the Dependency screen.
+- **Workload Tour:** New guided tour for the Workload screen.
+- **Variable Group Tour:** New guided tour for the Variable Group screen.
+- **Cluster Tour:** New guided tour for the Cluster screen.
+- **Project Tour:** New guided tour for the Project screen.
+- **Cluster Update Optimization:** Optimization of Cluster update tasks.
+- **Screen Loading:** Improvements in loading drawers and secondary screens.
+- **Schedule Update:** New flow to schedule Cluster updates.
+- **Onboarding:** New onboarding flow for new users.
+- **Nodepool Configuration:** Support for more Nodepool configuration parameters (instance types, fallbacks, etc.).
+- **Upgrade Monitoring:** New service monitoring flow during Cluster upgrade with error reporting.
+- **Build Logs:** Improvements in build logs with more context.
+
+## Bug Fixes
+
+- **SSL Certificate for S3:** Fixed SSL certificate errors for S3 with CloudFront.
+- **Activity Logs:** Fixed names in some Activity Logs.
+- **User Creation:** Fixed errors in the user creation flow.
+- **Support Tickets:** Fixed support ticket status.
+- **Build with CLI:** Fixed parameters when building using the CLI.
+- **Nightly Shutdown:** Fixed Cluster status with nightly shutdown enabled.
+- **Screen Resolutions:** Adjustments for some resolutions on the main console screen.
+- **Delete Web Services:** Fixed errors when deleting a Web Service from the table.
diff --git a/changelog/2025-11-13-V2.2.0.md b/changelog/2025-11-13-V2.2.0.md
new file mode 100644
index 000000000..4bf38e926
--- /dev/null
+++ b/changelog/2025-11-13-V2.2.0.md
@@ -0,0 +1,23 @@
+---
+title: "Version 2.2.0"
+slug: v2-2-0
+date: 2025-11-13
+tags: [release]
+---
+
+# π Version 2.2.0
+
+
+
+10/25/2025
+
+## New Features
+
+- **Code Viewer:** New component for viewing code within the console.
+
+## Bug Fixes
+
+- **Deleted Users:** Fixed errors with deleted users.
+- **Update Branches:** Fixed the flow for updating branches in Project.
+- **Incomplete Information:** Fixed the flow when Project information is incomplete.
+- **Extra Policies:** Fixed the flow for configuring extra policies in Project.
diff --git a/changelog/2025-11-18-V2.3.0.md b/changelog/2025-11-18-V2.3.0.md
new file mode 100644
index 000000000..becf5975d
--- /dev/null
+++ b/changelog/2025-11-18-V2.3.0.md
@@ -0,0 +1,28 @@
+---
+title: "Version 2.3.0"
+slug: v2-3-0
+date: 2025-11-18
+tags: [release]
+---
+
+# π Version 2.3.0
+
+
+
+
+11/18/2025
+
+## New Features
+
+- **Environment Cloning:** New function to clone Environments.
+- **Project Cloning:** New function to clone Projects.
+- **Dependency Cloning:** New function to clone Dependencies.
+- **Workload Cloning:** New function to clone Workloads.
+- **Variable Group Cloning:** New function to clone Variable Groups.
+- **Cluster Monitoring Filters:** Added filters for navigating Cluster events in Cluster Monitoring.
+- **Variable Group Search:** Ability to search Variable Groups by internal key names from the general search.
+
+## Bug Fixes
+
+- **Selected Account:** The selected account now persists when switching users.
+- **Web Services Shutdown:** Improved Web Services shutdown.
diff --git a/changelog/2025-12-01-V2.3.1.md b/changelog/2025-12-01-V2.3.1.md
new file mode 100644
index 000000000..da58ccb91
--- /dev/null
+++ b/changelog/2025-12-01-V2.3.1.md
@@ -0,0 +1,30 @@
+---
+title: "Version 2.3.1"
+slug: v2-3-1
+date: 2025-12-01
+tags: [release]
+---
+
+# π Version 2.3.1
+
+
+
+
+12/01/2025
+
+## New Features
+
+- **Image Analysis in Support:** Support for image analysis in the support bot.
+- **Documentation:** New documentation for Dockertron and chart management.
+- **Custom Values in Addons:** Ability to use custom values when installing an addon.
+- **Nodegroup Change:** Ability to change the nodegroup of non-production clusters.
+- **Support Flow:** Conversation flow for support between bot and human.
+
+## Bug Fixes
+
+- **Confirmation Modals:** Fixed position of deletion confirmation modals.
+- **Builds Table:** Fixed data and column errors in the builds table.
+- **Dashboard Notifications:** Fixed notification messages in the dashboard.
+- **Workload Names:** Adjusted name sizes for Workloads.
+- **Chart Dependency:** Fixed chart dependency flow.
+- **Console Alerts:** Fixed notification alerts in the console.
diff --git a/changelog/2025-12-19-V2.3.2.md b/changelog/2025-12-19-V2.3.2.md
new file mode 100644
index 000000000..6b4d9d841
--- /dev/null
+++ b/changelog/2025-12-19-V2.3.2.md
@@ -0,0 +1,44 @@
+---
+title: "Version 2.3.2"
+slug: v2-3-2
+date: 2025-12-19
+tags: [release]
+---
+
+# π Version 2.3.2
+
+
+
+## New Features
+
+- **SleakOps CLI:** Improvements and new features, including the ability to open a Workload shell locally.
+- **S3 with CloudFront:** Improvements in S3 integration with CloudFront.
+- **Python in Lambdas:** Updated Python versions for Lambdas.
+- **Charts in Projects:** Improvements to the chart configuration screen in Projects.
+- **Subnet Tags:** Improvements in subnet tag handling for autodiscovery.
+- **DB Restoration:** Improvements in the database restoration flow from a snapshot.
+- **Ingress in Web Services:** Support for configuring URL and ingress annotations in Web Services.
+- **API Performance:** Optimization of API performance.
+- **Domain Errors:** Improvements in domain error handling.
+- **Addon Buttons:** Visual improvements to addon buttons.
+- **Notifications:** Visual improvements when displaying notifications.
+- **Button Options:** Visual improvements to button options (settings, copy, etc.).
+- **RDS Versions:** Updated available RDS versions.
+- **Infrastructure Modules:** Optimization of execution times for infrastructure modules.
+
+## Bug Fixes:
+
+- **Role Deletion:** Handling of role deletion when deleting a Project.
+- **Multi-Provider Billing:** Fixed billing screen with multiple providers.
+- **Registration and Login:** Handling of registration and login flow with different subscription states.
+- **Nodepool Form:** Error handling in the Nodepool form.
+- **Account Switching:** Error handling when switching between accounts.
+- **Variable Characters:** Handling of invalid characters in variable names in Variable Groups.
+- **Cluster Access:** Handling of Cluster access for different user types.
+- **VPN Access:** Error handling when obtaining VPN access for different user types.
+- **Listing Texts:** Fixed texts in listings and forms.
+- **AWS Connection:** Fixed texts in the step-by-step guide for connecting with AWS.
+- **Pending Deployments:** Alert indicator for deployments pending approval.
+- **Postgres Upgrade:** Error handling in PostgreSQL upgrade from 14 to 17.
+- **RDS Security Group:** Fixed security group for public and private RDS replicas.
+- **Support Chat:** Fixed delegation in support chat.
diff --git a/docs/changelog.mdx b/docs/changelog.mdx
index 5235c7d11..ce91c83ac 100644
--- a/docs/changelog.mdx
+++ b/docs/changelog.mdx
@@ -46,7 +46,7 @@
## **Version 2.3.2**
-ποΈ *12/19/2025*
+ποΈ _12/19/2025_
**π New Features:**
@@ -82,10 +82,9 @@
- **RDS Security Group:** Fixed security group for public and private RDS replicas.
- **Support Chat:** Fixed delegation in support chat.
-
## **Version 2.3.1**
-ποΈ *12/01/2025*
+ποΈ _12/01/2025_
**π New Features:**
@@ -104,10 +103,9 @@
- **Chart Dependency:** Fixed chart dependency flow.
- **Console Alerts:** Fixed notification alerts in the console.
-
## **Version 2.3.0**
-ποΈ *11/18/2025*
+ποΈ _11/18/2025_
**π New Features:**
@@ -124,10 +122,9 @@
- **Selected Account:** The selected account now persists when switching users.
- **Web Services Shutdown:** Improved Web Services shutdown.
-
## **Version 2.2.0**
-ποΈ *10/25/2025*
+ποΈ _11/13/2025_
**π New Features:**
@@ -140,10 +137,9 @@
- **Incomplete Information:** Fixed the flow when Project information is incomplete.
- **Extra Policies:** Fixed the flow for configuring extra policies in Project.
-
## **Version 2.1.0**
-ποΈ *11/05/2025*
+ποΈ _11/10/2025_
**π New Features:**
@@ -172,10 +168,9 @@
- **Screen Resolutions:** Adjustments for some resolutions on the main console screen.
- **Delete Web Services:** Fixed errors when deleting a Web Service from the table.
-
## **Version 2.0.1**
-ποΈ *10/15/2025*
+ποΈ _10/15/2025_
**π New Features:**
@@ -199,10 +194,9 @@
- **Infrastructure Errors:** Fixed error messages when infrastructure module execution fails.
- **Mobile Account Selector:** Support for account selector on mobile devices.
-
## **Version 2.0.0**
-ποΈ *01/10/2025*
+ποΈ _01/10/2025_
**π New Features:**
@@ -229,10 +223,9 @@
- **GitLab self-hosted:** Fixed URL validation.
- **Cluster deletion:** Improved cascading deletion handling.
-
## **Version 1.7.16**
-ποΈ *21/07/2025*
+ποΈ _21/07/2025_
**π New Features:**
@@ -243,10 +236,9 @@
- **New Project Deployments:** Fixed issues preventing successful deployment of newly created projects.
-
## **Version 1.7.15**
-ποΈ *07/07/2025*
+ποΈ _07/07/2025_
**π New Features:**
@@ -254,7 +246,6 @@
- **File-based VariableGroups:** Added support for creating variablegroups of type file.
- **Agent Bot (beta):** Experimental agent bot released in beta.
-
**π Bug Fixes:**
- **Dependent domain configuration:** Generate DNS records when parent domain already created.
@@ -263,10 +254,9 @@
- **Delete cluster:** Fixed deletion cluster flow.
- **Support ticket status:** Fixed close support ticket status.
-
## **Version 1.7.14**
-ποΈ *26/06/2025*
+ποΈ _26/06/2025_
**π New Features:**
@@ -275,7 +265,6 @@
- **Jobs from Cronjobs or Existing Jobs:** Ability to launch a Job from an existing cronjob or Job.
- **Infrastructure Errors:** Improved parsing and display of infrastructure errors for easier troubleshooting.
-
**π Bug Fixes:**
- **Duplicate Volumes:** Fixed issue when creating volumes with the same name.
@@ -283,11 +272,9 @@
- **Duplicate Dependencies:** Blocked creation of dependencies with duplicate names.
- **Dependency Monitoring:** Fixed date range issues on the dependency monitoring screen.
-
-
## **Version 1.7.13**
-ποΈ *02/06/2025*
+ποΈ _02/06/2025_
**π New Features:**
@@ -304,10 +291,9 @@
- **Branch Names:** Added support for branches with / in their names.
- **GitLab Pipelines:** Fixed issues affecting pipeline execution.
-
## **Version 1.7.12**
-ποΈ *14/05/2025*
+ποΈ _14/05/2025_
**π New Features:**
@@ -319,10 +305,9 @@
- **Form Improvements:** General enhancements to form usability and validation.
- **Project Console:** UI/UX improvements in the project console screen.
-
## **Version 1.7.11**
-ποΈ *24/04/2025*
+ποΈ _24/04/2025_
**π New Features:**
@@ -331,16 +316,15 @@
**π Bug Fixes:**
-- **Dev-Cluster Workers:** Removed the PodDisruptionBudge improving worker reliability in development clusters when the cluster had the scheduler shutdown enabled.
+- **Dev-Cluster Workers:** Removed the PodDisruptionBudge improving worker reliability in development clusters when the cluster had the scheduler shutdown enabled.
- **Builds:** Builds are no longer triggered for every minor project edit.
- **Deployments:** Switched deployments jobs away from Fargate; build logs are now persisted for easier troubleshooting.
- **Web Service Details:** Refined the service detail page for clearer visibility of endpoints, status, and metrics.
- **Kubecost Add-on:** Stability improvements
-
## **Version 1.7.10**
-ποΈ *01/04/2025*
+ποΈ _01/04/2025_
**π New Features:**
@@ -360,10 +344,9 @@
- **Subscription Attachment:** Addressed a bug that prevented new subscriptions from attaching correctly.
- **Cost Forecast:** Fixed forecasting issues for better cost estimations.
-
## **Version 1.7.9**
-ποΈ *17/02/2025*
+ποΈ _17/02/2025_
**π New Features:**
@@ -376,10 +359,9 @@
- **Project Flow Improvements:** Enhanced various settings, forms, and other elements for smoother project management.
- **AWS Account Creation Flow:** Now supports inactive AWS accounts, providing clear guidance on how to manually activate them before resuming the process in SleakOps.
-
## **Version 1.7.8**
-ποΈ *10/02/2025*
+ποΈ _10/02/2025_
**π New Features:**
@@ -389,10 +371,9 @@
- **Minor UI Enhancements:** Improved the visual design for project and workload screens.
-
## **Version 1.7.7**
-ποΈ *05/02/2025*
+ποΈ _05/02/2025_
**π New Features:**
@@ -409,7 +390,7 @@
## **Version 1.7.6**
-ποΈ *06/01/2025*
+ποΈ _06/01/2025_
**π New Features:**
@@ -426,17 +407,16 @@
## **Version 1.7.5**
-ποΈ *09/12/2024*
+ποΈ _09/12/2024_
**π New Features:**
- **AWS Integration Error Handling:**: Implemented a mechanism to handle delays in AWS account activations created by SleakOps.
-- **Add-on Links in Builds:** Added links for easily viewing logs and metrics during the build process.
-
+- **Add-on Links in Builds:** Added links for easily viewing logs and metrics during the build process.
## **Version 1.7.4**
-ποΈ *05/12/2024*
+ποΈ _05/12/2024_
**π New Features:**
@@ -445,16 +425,13 @@
- **Add-on Availability Configurations:** Added various availability settings for each add-on.
- **Documentation:** Updated the add-on documentation and made it available in Spanish.
-
**π Bug Fixes:**
- **Kubecost Integration Review:** Reviewed the Prometheus-Kubecost integration. Kubecost now correctly maps the names of deployed resources to their costs, greatly improving the accuracy of its estimates. It's now possible to enable approximate network traffic cost analysis within the cluster in Kubecost (Beta).
-
-
## **Version 1.7.3**
-ποΈ *14/11/2024*
+ποΈ _14/11/2024_
**π New Features:**
@@ -465,10 +442,9 @@
- Various minor bug fixes.
-
## **Version 1.7.2**
-ποΈ *05/11/2024*
+ποΈ _05/11/2024_
**π New Features:**
@@ -481,10 +457,9 @@
- Various minor bug fixes.
-
## **Version 1.7.1**
-ποΈ *30/10/2024*
+ποΈ _30/10/2024_
**π New Features:**
@@ -496,10 +471,9 @@
- Various minor bug fixes.
-
## **Version 1.7.0**
-ποΈ *14/10/2024*
+ποΈ _14/10/2024_
**π New Features:**
@@ -512,10 +486,9 @@
- Various minor bug fixes.
-
## **Version 1.6.3**
-ποΈ *27/09/2024*
+ποΈ _27/09/2024_
**π New Features:**
@@ -525,10 +498,9 @@
- Various minor bug fixes and improvements.
-
## **Version 1.6.2**
-ποΈ *09/19/2024*
+ποΈ _09/19/2024_
**π New Features:**
@@ -542,10 +514,9 @@
- Various minor bug fixes and improvements to the platform's workload flows.
-
## **Version 1.6.1**
-ποΈ *08/22/2024*
+ποΈ _08/22/2024_
**π New Features:**
@@ -559,7 +530,7 @@
## **Version 1.6.0**
-ποΈ *08/12/2024*
+ποΈ _08/12/2024_
**π New Features:**
@@ -577,7 +548,7 @@
## **Version 1.5.1**
-ποΈ *06/24/2024*
+ποΈ _06/24/2024_
**π New Features:**
@@ -590,7 +561,7 @@
## **Version 1.5.0**
-ποΈ *05/23/2024*
+ποΈ _05/23/2024_
**π New Features:**
@@ -609,7 +580,7 @@
## **Version 1.4.3**
-ποΈ *05/13/2024*
+ποΈ _05/13/2024_
**π New Features:**
@@ -626,7 +597,7 @@
## **Version 1.4.2**
-ποΈ *04/25/2024*
+ποΈ _04/25/2024_
**π New Features:**
@@ -639,7 +610,7 @@
## **Version 1.4.1**
-ποΈ *04/11/2024*
+ποΈ _04/11/2024_
**π New Features:**
@@ -655,7 +626,7 @@
## **Version 1.4.0**
-ποΈ *03/06/2024*
+ποΈ _03/06/2024_
**π New Features:**
@@ -672,7 +643,7 @@
## **Version 1.3.0**
-ποΈ *01/03/2024*
+ποΈ _01/03/2024_
**π New Features:**
@@ -692,7 +663,7 @@
## **Version 1.2.4**
-ποΈ *15/02/2024*
+ποΈ _15/02/2024_
**π New Features:**
@@ -706,7 +677,7 @@
## **Version 1.2.3**
-ποΈ *05/02/2024*
+ποΈ _05/02/2024_
**π New Features:**
@@ -719,7 +690,7 @@
## **Version 1.2.2**
-ποΈ *25/01/2024*
+ποΈ _25/01/2024_
**π New Features:**
@@ -733,7 +704,7 @@
## **Version 1.2.1**
-ποΈ *12/01/2024*
+ποΈ _12/01/2024_
**π New Features:**
@@ -747,7 +718,7 @@
## **Version 1.2.0**
-ποΈ *05/01/2024*
+ποΈ _05/01/2024_
**π New Features:**
@@ -765,7 +736,7 @@
## **Version 1.1.1**
-ποΈ *05/12/2023*
+ποΈ _05/12/2023_
**π New Features:**
@@ -775,7 +746,7 @@
## **Version 1.1.0**
-ποΈ *06/11/2023*
+ποΈ _06/11/2023_
**π New Features:**
@@ -792,7 +763,7 @@
## **Version 1.0.5**
-ποΈ *27/10/2023*
+ποΈ _27/10/2023_
**π Fixes:**
@@ -801,7 +772,7 @@
## **Version 1.0.4**
-ποΈ *11/10/2023*
+ποΈ _11/10/2023_
**π New Features:**
@@ -816,7 +787,7 @@
## **Version 1.0.3**
-ποΈ *25/09/2023*
+ποΈ _25/09/2023_
**π New Features:**
@@ -831,7 +802,7 @@
## **Version 1.0.2**
-ποΈ *04/09/2023*
+ποΈ _04/09/2023_
**π New Features:**
@@ -845,7 +816,7 @@
## **Version 1.0.1**
-ποΈ *29/08/2023*
+ποΈ _29/08/2023_
**π New Features:**
@@ -854,7 +825,7 @@
## **Version 1.0.0**
-ποΈ *23/08/2023*
+ποΈ _23/08/2023_
**π New Features:**
diff --git a/docs/index.mdx b/docs/index.mdx
index d1644649e..085e9df84 100644
--- a/docs/index.mdx
+++ b/docs/index.mdx
@@ -1,13 +1,14 @@
---
+title: Introduction to Sleakops
sidebar_label: Introduction to Sleakops
sidebar_position: 1
pagination_next: basicconcepts
---
-import { FiCloud, FiServer, FiCopy, FiGrid, FiBox } from "react-icons/fi"
-import { MdMiscellaneousServices } from 'react-icons/md'
-import { FaDocker } from 'react-icons/fa'
-import { VscRocket, VscJson } from 'react-icons/vsc'
+import { FiCloud, FiServer, FiCopy, FiGrid, FiBox } from "react-icons/fi";
+import { MdMiscellaneousServices } from "react-icons/md";
+import { FaDocker } from "react-icons/fa";
+import { VscRocket, VscJson } from "react-icons/vsc";
# Welcome to SleakOps!
@@ -40,85 +41,111 @@ Whether you're a seasoned developer or new to Kubernetes, SleakOps empowers you