From 84fb67c0a636fe3e93d11bdba6a12f2853cc8eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Muhammed=20Ali=20=C3=96ZKAYA?= Date: Tue, 1 Jul 2025 13:43:07 +0300 Subject: [PATCH 1/2] Update abp studio release notes --- docs/en/studio/release-notes.md | 29 +++++++++++++++++++++++++++++ docs/en/studio/version-mapping.md | 3 +++ 2 files changed, 32 insertions(+) diff --git a/docs/en/studio/release-notes.md b/docs/en/studio/release-notes.md index cfb8e9fb61..fa438a42b4 100644 --- a/docs/en/studio/release-notes.md +++ b/docs/en/studio/release-notes.md @@ -2,6 +2,35 @@ This document contains **brief release notes** for each ABP Studio release. Release notes only include **major features** and **visible enhancements**. Therefore, they don't include all the development done in the related version. +## 1.0.2 (2025-06-24) + +* Various improvements and fixes related to Docker containers. +* Resolved issues in Blazor Web App microservices. +* Enhanced the ABP NuGet package installation experience. +* Upgraded template dependencies for ABP Framework and LeptonX. (targeting ABP `9.2.1`) +* Replaced the `System.Data` package with `Microsoft.Data`. +* Fixed a dynamic-env file path configuration issue in Angular templates. +* Disabled Pushed Authorization for MAUI applications. +* Improved the IDE experience by displaying the main project in a dedicated 'main' folder and hiding `.abppkg` files. + +## 1.0.1 (2025-06-13) + +* Fixed an issue with language selection during solution creation. +* Resolved a logo visibility problem in the Angular semi-dark theme. +* Added and corrected the handling of CEF (Chromium Embedded Framework) resources for the Windows version. + +## 1.0.0 (2025-06-11) + +* **Solution & Module Creation:** Introduced major enhancements, including language selection, database provider choice for microservices, improved folder handling, theme visualization, and better module installation recommendations. +* **MAUI & Blazor:** Configured the new MAUI/Blazor bundling system, added dashboard pages to MAUI projects, and applied various fixes for themes and dependencies. +* **Solution Runner & Docker:** Added Docker container support to the solution runner, enabling users to add and manage containers within run profiles. +* **Authentication & Authorization:** Improved login flows with `select_account` support, fixed Swagger authentication, and added dynamic claims support for microservices. +* **Language Selection:** Added language selection during solution creation. You can now include only the languages you need in your project. +* **Performance:** Sped up the development cycle by skipping package restores during project runs when no dependencies have changed. +* **Dependency Updates:** Upgraded ABP Framework, ABP Commercial, LeptonX, and other Microsoft dependencies to the latest versions. (targeting ABP `9.2.0`) +* **User Experience:** Implemented several UI/UX improvements, such as remembering user choices in wizards and sorting items alphabetically. +* **Testing & Internals:** Switched to `MongoSandbox` for integration tests, improved local development against abp.io websites, and made various fixes to CI/CD workflows. + ## 0.9.26 (2025-04-30) * Fixed the issue where C# applications would not stop when requested. diff --git a/docs/en/studio/version-mapping.md b/docs/en/studio/version-mapping.md index 88d9be25fe..51e0de5bbd 100644 --- a/docs/en/studio/version-mapping.md +++ b/docs/en/studio/version-mapping.md @@ -4,6 +4,9 @@ This document provides a general overview of the relationship between various ve | **ABP Studio Version** | **ABP Version of Startup Template** | |------------------------|---------------------------| +| 1.0.2 | 9.2.1 | +| 1.0.1 | 9.2.0 | +| 1.0.0 | 9.2.0 | | 0.9.26 | 9.1.1 | | 0.9.24 - 0.9.25 | 9.1.0 | | 0.9.22 - 0.9.23 | 9.0.4 | From af769e7176326f89c9addbe8a5b118fb37bd0051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Muhammed=20Ali=20=C3=96ZKAYA?= Date: Tue, 1 Jul 2025 15:34:16 +0300 Subject: [PATCH 2/2] Refactor abp studio release notes --- docs/en/studio/release-notes.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/en/studio/release-notes.md b/docs/en/studio/release-notes.md index fa438a42b4..d2db328fbf 100644 --- a/docs/en/studio/release-notes.md +++ b/docs/en/studio/release-notes.md @@ -4,8 +4,6 @@ This document contains **brief release notes** for each ABP Studio release. Rele ## 1.0.2 (2025-06-24) -* Various improvements and fixes related to Docker containers. -* Resolved issues in Blazor Web App microservices. * Enhanced the ABP NuGet package installation experience. * Upgraded template dependencies for ABP Framework and LeptonX. (targeting ABP `9.2.1`) * Replaced the `System.Data` package with `Microsoft.Data`. @@ -21,13 +19,17 @@ This document contains **brief release notes** for each ABP Studio release. Rele ## 1.0.0 (2025-06-11) +* **Solution Runner with Health Checks:** ABP Studio's Solution Runner now provides visual health monitoring that makes tracking your applications' status easily. +* **Improved Multi-DbContext Migration Handling:** ABP Studio now prompts you to select the correct DbContext for migration operations when working with multiple DbContexts. +* **Theme Style Selection on Project Creation:** When creating a new solution, you can now choose your theme, theme style, and layout right from the project creation wizard instead of having to configure these settings later. * **Solution & Module Creation:** Introduced major enhancements, including language selection, database provider choice for microservices, improved folder handling, theme visualization, and better module installation recommendations. * **MAUI & Blazor:** Configured the new MAUI/Blazor bundling system, added dashboard pages to MAUI projects, and applied various fixes for themes and dependencies. * **Solution Runner & Docker:** Added Docker container support to the solution runner, enabling users to add and manage containers within run profiles. -* **Authentication & Authorization:** Improved login flows with `select_account` support, fixed Swagger authentication, and added dynamic claims support for microservices. +* **Authentication & Authorization:** Fixed Swagger authentication, and added dynamic claims support for microservices. +* **ABP Studio Login:** Improved login flows with selecting account and organization support. * **Language Selection:** Added language selection during solution creation. You can now include only the languages you need in your project. * **Performance:** Sped up the development cycle by skipping package restores during project runs when no dependencies have changed. -* **Dependency Updates:** Upgraded ABP Framework, ABP Commercial, LeptonX, and other Microsoft dependencies to the latest versions. (targeting ABP `9.2.0`) +* **Dependency Updates:** Upgraded ABP Framework, LeptonX, and other Microsoft dependencies to the latest versions. (targeting ABP `9.2.0`) * **User Experience:** Implemented several UI/UX improvements, such as remembering user choices in wizards and sorting items alphabetically. * **Testing & Internals:** Switched to `MongoSandbox` for integration tests, improved local development against abp.io websites, and made various fixes to CI/CD workflows.