Browse Source

Merge pull request #23866 from abpframework/auto-merge/rel-10-0/4013

Merge branch dev with rel-10.0
pull/23872/head
Ma Liming 10 months ago
committed by GitHub
parent
commit
5d9a75bd27
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 257
      docs/en/Blog-Posts/2025-10-02 v10_0_Preview/POST.md
  2. BIN
      docs/en/Blog-Posts/2025-10-02 v10_0_Preview/abp-webinar.png
  3. BIN
      docs/en/Blog-Posts/2025-10-02 v10_0_Preview/community-talk-2025-06.png
  4. BIN
      docs/en/Blog-Posts/2025-10-02 v10_0_Preview/community-talk-2025-07.png
  5. BIN
      docs/en/Blog-Posts/2025-10-02 v10_0_Preview/cover-image.png
  6. 21
      docs/en/Blog-Posts/2025-10-02 v10_0_Preview/discover-abp.svg
  7. BIN
      docs/en/Blog-Posts/2025-10-02 v10_0_Preview/elsa-workflow-instances.png
  8. BIN
      docs/en/Blog-Posts/2025-10-02 v10_0_Preview/studio-switch-to-preview.png

257
docs/en/Blog-Posts/2025-10-02 v10_0_Preview/POST.md

@ -0,0 +1,257 @@
# ABP Platform 10.0 RC Has Been Released
We are happy to release [ABP](https://abp.io) version **10.0 RC** (Release Candidate). This blog post introduces the new features and important changes in this new version.
Try this version and provide feedback for a more stable version of ABP v10.0! Thanks to you in advance.
## Get Started with the 10.0 RC
You can check the [Get Started page](https://abp.io/get-started) to see how to get started with ABP. You can either download [ABP Studio](https://abp.io/get-started#abp-studio-tab) (**recommended**, if you prefer a user-friendly GUI application - desktop application) or use the [ABP CLI](https://abp.io/docs/latest/cli).
By default, ABP Studio uses stable versions to create solutions. Therefore, if you want to create a solution with a preview version, first you need to create a solution and then switch your solution to the preview version from the ABP Studio UI:
![studio-switch-to-preview.png](studio-switch-to-preview.png)
## Migration Guide
There are a few breaking changes in this version that may affect your application. Please read the migration guide carefully, if you are upgrading from v9.3 or earlier: [ABP Version 10.0 Migration Guide](https://abp.io/docs/10.0/release-info/migration-guides/abp-10-0).
## What's New with ABP v10.0?
In this section, I will introduce some major features released in this version.
Here is a brief list of titles explained in the next sections:
* Upgraded to .NET 10.0
* Upgraded to Blazorise 1.8.2
* New Module: **Workflow (Elsa)**
* New Object Mapper: **Mapperly**
* Localization: Nested object support in JSON files
* Support EF Core Shared Entity Types on Repositories
* Add failure retry policy to InboxProcessor
* Migrate to New Esbuild-based Angular Builder
* Angular SSR support
### Upgraded to .NET 10.0
We've upgraded ABP to .NET 10.0, so you need to move your solutions to .NET 10.0 if you want to use ABP 10.0.
> Since the stable version of .NET 10 hasn't been released yet, we upgraded ABP to .NET v10.0-rc.1. Stable NET 10 is scheduled to launch as a **Long-Term Support (LTS)** release during .NET Conf 2025, which takes place November 11-13, 2025. We'll update the ABP Platform to the .NET 10 as soon as possible official .NET 10 release is completed.
### Upgraded to Blazorise v1.8.2
Upgraded the [Blazorise](https://blazorise.com/) library to v1.8.2 for Blazor UI. If you are upgrading your project to v10.0 RC, please ensure that all the Blazorise-related packages are using v1.8.2 in your application. Otherwise, you might get errors due to incompatible versions.
> See [#23717](https://github.com/abpframework/abp/issues/23717) for the updated NuGet packages.
### New Module: **Workflow (Elsa)**
ABP now ships a Workflow module that integrates [Elsa Workflows](https://github.com/elsa-workflows/elsa-core) to build visual, long-running, event-driven workflows in your ABP solutions (monolith or microservices). It provides seamless integration with ABP authentication/authorization, distributed event bus, persistence, background processing and includes support for hybrid UIs via Elsa Studio.
For a hands-on reference showcasing an end-to-end order/payment workflow across services, see the sample: [Elsa Workflows - Sample Workflow Demo](https://abp.io/docs/10.0/samples/elsa-workflows-demo). For capabilities, installation and configuration details (activities, storage, hosting, dashboard), see the module docs: [Workflow (Elsa) module](https://abp.io/docs/10.0/modules/elsa-pro).
![Workflow (Elsa) module](./elsa-workflow-instances.png)
### New Object Mapper: **Mapperly**
ABP modules now use Mapperly as the default object-to-object mapper. Mapperly is a compile-time, source generator–based mapper that removes runtime reflection and offers better performance with simpler maintenance. For background and implementation details, see the planning issue and the PR: [Switch to another object mapping library](https://github.com/abpframework/abp/issues/23243) and [Use Mapperly to replace AutoMapper in all modules](https://github.com/abpframework/abp/pull/23277).
The `Volo.Abp.AutoMapper` package remains available for backward compatibility. You can keep using AutoMapper in your solutions, but you are responsible for obtaining and managing its license if needed. For upgrade guidance and practical steps, follow the migration guide: [AutoMapper to Mapperly](https://abp.io/docs/10.0/release-info/migration-guides/AutoMapper-To-Mapperly).
### Localization: Nested object support in JSON files
ABP now supports nested objects (and arrays) in JSON localization files, allowing you to organize translations hierarchically and access them using the double underscore (`__`) separator. This improves maintainability for larger resource files and aligns lookups with familiar key paths.
> See the PR for details: [feat(l8n): add support for nested objects in localization files](https://github.com/abpframework/abp/pull/23701).
**Declaration (nested objects)**:
```json
{
"culture": "en",
"texts": {
"MyNestedTranslation": {
"SomeKey": "Some nested value",
"SomeOtherKey": "Some other nested value"
}
}
}
```
**Usage**:
```csharp
L["MyNestedTranslation__SomeKey"];
L["MyNestedTranslation__SomeOtherKey"];
```
**Declaration (arrays)**:
```json
{
"culture": "en",
"texts": {
"Menu": {
"Items": ["Home", "About", "Contact"]
}
}
}
```
**Usage**:
```csharp
L["Menu__Items__0"]; // Home
L["Menu__Items__2"]; // Contact
```
### Support EF Core Shared Entity Types on Repositories
ABP repositories now support EF Core **shared-type entity** types by allowing a custom entity name to be set on a repository before performing operations. Internally, this uses EF Core's `DbContext.Set<T>(string name)` to target the correct `DbSet`/table for the same CLR type, enabling scenarios like per-tenant tables, archives, or partitioning, and you can switch the target at runtime. See the PR: [Support EF Core Shared Entity Types on Repositories](https://github.com/abpframework/abp/pull/23588) and the EF Core documentation on [shared-type entity types](https://learn.microsoft.com/en-us/ef/core/modeling/entity-types?tabs=data-annotations#shared-type-entity-types).
**Example**:
```csharp
// Set the shared entity name so repository operations target that table
var repo = serviceProvider.GetRequiredService<IRepository<MyEntity, Guid>>();
repo.SetCustomEntityName("MyEntity_TenantA");
var list = await repo.GetListAsync();
// Switch to another shared name later on the same instance
repo.SetCustomEntityName("MyEntity_Archive");
await repo.InsertAsync(new MyEntity { /* ... */ });
```
### Add failure retry policy to InboxProcessor
`InboxProcessor` now supports configurable failure handling strategies per event: **Retry** (default; reprocess in the next cycle), **RetryLater** (skip the failing event and retry it later with exponential backoff; the backoff factor and maximum retries are configurable), and **Discard** (drop the failing event). This prevents a single failing handler from blocking subsequent events and improves resiliency.
> **Note**: This is a breaking change because `IncomingEvent` entity properties were updated. See the PR for details: [Add failure retry policy to InboxProcessor](https://github.com/abpframework/abp/pull/23563).
### Migrate to New Esbuild-based Angular Builder
We've migrated ABP Angular templates and packages to Angular's new esbuild-based build system (introduced in Angular 17+ and fully supported in Angular 20) to deliver faster builds, modern ESM support, built-in SSR/prerender capabilities, and a better development experience. This change is non-breaking for existing apps. See the tracking issue and PR: [Angular - Migrate to New Esbuild-based Angular Builder](https://github.com/abpframework/abp/issues/23242), [feat: Update Angular templates to Angular 20 new build system](https://github.com/abpframework/abp/pull/23363).
**Key updates in templates/config**:
- Builder switched from `@angular-devkit/build-angular:browser` to `@angular-devkit/build-angular:application`.
- `main` option replaced by `browser`; `polyfills` moved to array form.
- TypeScript updated to `es2020` with `esModuleInterop: true`; module target `esnext`.
**More Angular updates**:
- Unit tests have been updated for the new builder and configuration: [#23460](https://github.com/abpframework/abp/pull/23460).
**Warnings**:
- Constructor injections migrated to Angular's `inject()` function. If you extend a class and previously called `super(...)` with injected params, remove those parameters. See: [Angular inject() migration](https://angular.dev/reference/migrations/inject-function).
- `provideLogo` and `withEnvironmentOptions` have moved from LeptonX packages to `@abp/ng.theme-shared`.
- If you use the new application builder and have `tsconfig.json` path mappings that point into `node_modules`, remove those mappings and prefer symlinks instead. See a symlink reference: [Creating symbolic links](https://hostman.com/tutorials/creating-symbolic-links-in-linux/).
### Angular SSR support
ABP Angular templates now support Server-Side Rendering (SSR) with the Angular Application Builder, enabling hybrid rendering (SSR + CSR) for improved first paint, SEO and perceived performance. This includes SSR-safe platform checks (no direct `window`/`location`/`localStorage`), OIDC auth compatibility via cookie-backed storage, and `TransferState` to prevent duplicate HTTP GETs during hydration. For implementation highlights and usage (including how to run the SSR dev server and the `transferStateInterceptor`), see the issue and PR: [Angular SSR](https://github.com/abpframework/abp/issues/23055), [Hybrid Rendering & Application Builder](https://github.com/abpframework/abp/pull/23416).
> See Angular's official guide for details on hybrid rendering (prerender + SSR + CSR): [Angular SSR](https://angular.dev/guide/ssr) and on the builder migration: [Angular build system migration](https://angular.dev/tools/cli/build-system-migration).
## Community News
### Recent Events
We recently hosted two sessions of ABP Community Talks:
#### Community Talks 2025.06: Microservices with ABP Template
The Easiest Way to Get Started with Microservices on .NET Using ABP Microservice Solution Template: a deep dive into ABP’s microservice template, showing how ABP Studio streamlines creating, running, and scaling distributed systems. See the event page: [Community Talks: Microservices with ABP Template](https://abp.io/community/events/community-talks/the-easiest-way-to-get-started-with-microservices-on-.net-using-abp-microservice-solution-template-fd2comfn).
<img src="./community-talk-2025-06.png" alt="ABP Community Talks: Microservices with ABP Template" width="360">
#### Community Talks 2025.07: Developer-Friendly CMS for .NET
Beyond WordPress: A Developer-Friendly CMS for .NET: an overview of building custom web apps with ABP CMS Kit, integrating content management with your application code. Learn more: [Community Talks: Developer-Friendly CMS for .NET](https://abp.io/community/events/community-talks/beyond-wordpress-a-developerfriendly-cms-for-.net-mubtips6).
<img src="./community-talk-2025-07.png" alt="ABP Community Talks: Developer-Friendly CMS for .NET" width="360">
### Weekly Webinar: Discover ABP Platform
We’ve started a **weekly live webinar series** designed for developers who want to get the most out of the **ABP Platform**. This event is designed for those new to ABP to help you understand its core features, capabilities, and licensing models.
![ABP Weekly Webinar - Discover ABP Platform](./abp-webinar.png)
Every webinar features live coding demos, practical examples, and an open Q&A segment where you can get your questions answered directly by the ABP team. Whether you’re just starting with ABP or looking to explore advanced scenarios, these sessions will help you build better apps faster.
[👉 Register here to join an upcoming session!](https://abp.io/webinars/discover-abp-platform)
### New ABP Community Articles
There are exciting articles contributed by the ABP community as always. I will highlight some of them here:
- [Alper Ebiçoğlu](https://abp.io/community/members/alper):
- [High-Performance .NET Libraries You Didn’t Know You Needed](https://abp.io/community/articles/high-performance-net-libraries-you-did-not-know-nu5t88sz)
- [.NET 10: What You Need to Know (LTS Release, Coming November 2025)](https://abp.io/community/articles/net-10-preview-features-breaking-changes-enhancements-xennnnky)
- [Best Free Alternatives to AutoMapper in .NET — Why We Moved to Mapperly](https://abp.io/community/articles/best-free-alternatives-to-automapper-in-net-l9f5ii8s)
- [Liming Ma](https://abp.io/community/members/maliming):
- [Keep Track of Your Users in an ASP.NET Core Application](https://abp.io/community/articles/keep-track-of-your-users-in-an-asp.net-core-application-jlt1fxvb)
- [App Services vs Domain Services](https://abp.io/community/articles/app-services-vs-domain-services-4dvau41u)
- [Using Hangfire Dashboard in ABP API Website](https://abp.io/community/articles/using-hangfire-dashboard-in-abp-api-website--r32ox497)
- [Fahri Gedik](https://abp.io/community/members/fahrigedik):
- [Backward‑Compatible REST APIs in .NET Microservices](https://abp.io/community/articles/backward-compatible-rest-apis-dotnet-microservices-9rzlb4q6)
- [Best Practices for Designing Backward‑Compatible REST APIs in a Microservice Solution for .NET Developers](https://abp.io/community/articles/best-practices-for-designing-backward‑compatible-rest-apis-in-a-microservice-solution-for-.net-developers-t1m4kzfa)
- [Stepbystep AWS Secrets Manager Integration in ABP](https://abp.io/community/articles/stepbystep-aws-secrets-manager-integration-in-abp-3dcblyix)
- [Engincan Veske](https://abp.io/community/members/engincanv):
- [Building a Permission-Based Authorization System for ASP.NET Core](https://abp.io/community/articles/building-a-permission-based-authorization-system-for-asp-net-owyszy0b)
- [Where and How to Store Your Blob Objects in .NET](https://abp.io/community/articles/where-and-how-to-store-your-blob-objects-in-dotnet-r2r1vjjd)
- [Salih Özkara](https://abp.io/community/members/salih):
- [Truly Layering a .NET Application Based on DDD Principles](https://abp.io/community/articles/truly-layering-a-net-application-based-on-ddd-principles-428jhn3a)
- [Kori Francis](https://abp.io/community/members/kfrancis@clinicalsupportsystems.com):
- [ABP Postmark Email Integration, Templated Emails](https://abp.io/community/articles/abp-postmark-email-integration-templated-emails-gvgc6pfj)
- [Universal Redis Configuration in ABP Aspire Deployment](https://abp.io/community/articles/universal-redis-configuration-abp-aspire-deployment-qp90c7u4)
- [Sajankumar Vijayan](https://abp.io/community/members/connect):
- [Multi-tenant SaaS apps, Cloudflare DNS](https://abp.io/community/articles/multi-tenant%20SaaS%20apps,%20Cloudflare%20DNs-dar977al)
- [Selman Koc](https://abp.io/community/members/selmankoc):
- [Azure DevOps, CI/CD pipelines, Azure DevOps best practices](https://abp.io/community/articles/Azure%20DevOps,%20CI%2FCD%20pipelines,%20Azure%20DevOps%20best%20practices,-wiguy1ew)
- [Sümeyye Kurtuluş](https://abp.io/community/members/sumeyye.kurtulus):
- [ABP Now Supports Angular Standalone Applications](https://abp.io/community/articles/abp-now-supports-angular-standalone-applications-zzi2rr2z)
- [Supercharge your Angular app: A developer's guide to unlock](https://abp.io/community/articles/supercharge-your-angular-app-a-developers-guide-to-unlock-0dmu7tkr)
- [Mansur Besleney](https://abp.io/community/members/mansur.besleney):
- [Demystified Aggregates in DDD & .NET: From Theory to Practice](https://abp.io/community/articles/demystified-aggregates-in-ddd-and-dotnet-2becl93q)
- [How to Build Persistent Background Jobs with ABP Framework and Quartz](https://abp.io/community/articles/how-to-build-persistent-background-jobs-with-abp-framework-n9aloh93)
- [Angular Application Builder: Transitioning from Webpack to Esbuild](https://abp.io/community/articles/angular-application-builder-transitioning-from-webpack-to-3yzhzfl0)
- [Muhammet Ali Özkaya](https://abp.io/community/members/m.aliozkaya):
- [Implementing Unit of Work with ASP.NET Core](https://abp.io/community/articles/implementing-unit-of-work-with-asp.net-core-lv4v2tyf)
- [Enis Necipoğlu](https://abp.io/community/members/enisn):
- [Integration Services Explained: What They Are & When to Use](https://abp.io/community/articles/integration-services-explained-what-they-are-when-to-use-lienmsy8)
- [Berkan Şaşmaz](https://abp.io/community/members/berkansasmaz):
- [How to Dynamically Set the Connection String in EF Core](https://abp.io/community/articles/how-to-dynamically-set-the-connection-string-in-ef-core-30k87fpj)
- [Emre Kara](https://abp.io/community/members/emre.kara):
- [A Developer's Guide to Distributed Event Buses in .NET](https://abp.io/community/articles/a-developers-guide-to-distributed-event-buses-in-.net-oehl23kb)
- [Oğuzhan Ağır](https://abp.io/community/members/oguzhan.agir):
- [In-Memory Background Job Queue in ASP.NET Core](https://abp.io/community/articles/in-memory-background-job-queue-aspnet-core-pai2zmtr)
- [Alperen Samurlu](https://abp.io/community/members/alperen.samurlu):
- [How Can We Apply the DRY Principle in a Better Way?](https://abp.io/community/articles/how-can-we-apply-the-dry-principle-in-a-better-way-pmc4eao2)
- [Ahmet Çelik](https://abp.io/community/members/ahmet.celik):
- [Best Practices Guide for REST API Design](https://abp.io/community/articles/best-practices-guide-for-rest-api-design-oexc1euj)
- [Elanur Oğuz](https://abp.io/community/members/s.elanuroguz):
- [Web Design Basics for Graphic Designers Who Don't Code](https://abp.io/community/articles/web-design-basics-for-graphic-designers-who-dont-code-0c2jgt2v)
- [Seda Şen](https://abp.io/community/members/seda.sen):
- [Color Psychology in Web Design](https://abp.io/community/articles/color-psychology-in-web-design-z383jph8)
- [Halime Karayay](https://abp.io/community/members/halimekarayay):
- [10 Modern HTML CSS Techniques Every Designer Should Know](https://abp.io/community/articles/10-modern-html-css-techniques-every-designer-should-know-zxnwilf4)
- [Anto Subash](https://abp.io/community/members/antosubash):
- [ABP React CMS Module: Building Dynamic Pages with Puck](https://abp.io/community/articles/abp-react-cms-module-building-dynamic-pages-with-puck-auxvrwgf)
- [Yağmur Çelik](https://abp.io/community/members/yagmur.celik):
- [Integration Testing Best Practices for Building a Robust API](https://abp.io/community/articles/integration-testing-best-practices-for-building-a-robust-udcwef71)
- [Suhaib Mousa](https://abp.io/community/members/suhaib-mousa):
- [Visual Studio 2026 - What's New and Why I'm Excited About It](https://abp.io/community/articles/visual-studio-2026-e4s5hed7)
- [Alex Maiereanu](https://abp.io/community/members/alex.maiereanu@3sstudio.com):
- [ABP-Hangfire-AzurePostgreSQL](https://abp.io/community/articles/abphangfireazurepostgresql-s1jnf3yg)
- [Jack Fistelmann](https://abp.io/community/members/jfistelmann):
- [ABP and maildev](https://abp.io/community/articles/abp-and-maildev-gy13cr1p)
- Tarık Özdemir:
- [AI-First Architecture for .NET Projects: A Modern Blueprint](https://abp.io/community/articles/AI-First%20Architecture%20for%20.NET%20Projects%3A%20A%20Modern%20Blueprint-h2wgcoq3)
- [Prabhjot Singh](https://abp.io/community/members/prabhjot):
- [Switching from Project References to Package References](https://abp.io/community/articles/switching-from-project-references-to-package-references-ql16qwx0)
- [Yunus Emre Kalkan](https://abp.io/community/members/yekalkan):
- [New in ABP Studio: Docker Container Management](https://abp.io/community/articles/abp-studio-docker-container-management-ex7r27y8)
- [Burak Demir](https://abp.io/community/members/burakdemir):
- [Solving MongoDB GUID Issues After an ABP Framework Upgrade](https://abp.io/community/articles/solving-mongodb-guid-issues-after-an-abp-framework-upgrade-tv8waw1n)
Thanks to the ABP Community for all the content they have published. You can also [post your ABP-related (text or video) content](https://abp.io/community/posts/create) to the ABP Community.
## Conclusion
This version comes with some new features and a lot of enhancements to the existing features. You can see the [Road Map](https://abp.io/docs/10.0/release-info/road-map) documentation to learn about the release schedule and planned features for the next releases. Please try ABP v10.0 RC and provide feedback to help us release a more stable version.
Thanks for being a part of this community!

BIN
docs/en/Blog-Posts/2025-10-02 v10_0_Preview/abp-webinar.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
docs/en/Blog-Posts/2025-10-02 v10_0_Preview/community-talk-2025-06.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

BIN
docs/en/Blog-Posts/2025-10-02 v10_0_Preview/community-talk-2025-07.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

BIN
docs/en/Blog-Posts/2025-10-02 v10_0_Preview/cover-image.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

21
docs/en/Blog-Posts/2025-10-02 v10_0_Preview/discover-abp.svg

@ -0,0 +1,21 @@
<svg width="120" height="112" viewBox="0 0 120 112" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_12211_9057)">
<g clip-path="url(#clip1_12211_9057)">
<path d="M74.7008 22.1601C74.2178 22.9077 62.3268 40.7101 47.4689 36.131C38.223 33.2807 31.852 36.1777 29 38V10.1984C33.692 9.70778 42.5929 9.73115 50.1139 15.0812C60.8318 22.6974 72.6998 19.5201 72.8148 19.4968C73.5048 19.2865 74.2638 19.5668 74.6778 20.1509C75.0918 20.7583 75.1148 21.5527 74.7008 22.1601Z" fill="#00B1AE"/>
<path d="M29 3.5V80.5C29 82.425 26.75 84 24 84C21.25 84 19 82.425 19 80.5V3.5C19 1.575 21.25 0 24 0C26.75 0 29 1.575 29 3.5Z" fill="#1E2127"/>
</g>
<path d="M60.2326 118.596C65.6914 118.596 70.1165 114.171 70.1165 108.711C70.1165 103.252 65.6914 98.8262 60.2326 98.8262C54.7738 98.8262 50.3484 103.252 50.3484 108.711C50.3484 114.171 54.7738 118.596 60.2326 118.596Z" fill="#E83090"/>
<path d="M60.5475 50C51.696 49.9916 42.9588 52.0332 35 55.9698V68.7186C42.0908 64.1195 50.2569 61.5163 58.6629 61.1752C67.0686 60.834 75.4129 62.7672 82.8422 66.777C90.2714 70.7868 96.5193 76.7293 100.947 83.9968C105.374 91.2644 107.822 99.5962 108.041 108.141V144C114.308 135.126 118.044 124.668 118.84 113.776C119.635 102.885 117.459 91.9808 112.549 82.2643C107.64 72.5479 100.189 64.3953 91.0142 58.703C81.8394 53.0107 71.2974 49.9993 60.5475 50Z" fill="#1E2127"/>
<path d="M60.683 156.922C48.2118 156.921 36.2196 152.145 27.1943 143.583C18.1694 135.022 12.8039 123.332 12.2118 110.94H12.1556V74C3.42838 86.1326 -0.391425 101.086 1.45431 115.892C3.30006 130.697 10.6766 144.27 22.1189 153.914C33.5611 163.558 48.2314 168.568 63.2155 167.949C78.2001 167.329 92.4018 161.126 103 150.57V132.286C98.7811 139.76 92.6369 145.982 85.1997 150.312C77.7625 154.641 69.3004 156.923 60.683 156.922Z" fill="#1E2127"/>
<path d="M60.2369 124.479C56.6556 124.482 53.1769 123.283 50.3581 121.074V132.407C55.4969 134.521 61.179 134.927 66.5662 133.566C71.9538 132.204 76.7607 129.147 80.2785 124.846C83.7964 120.544 85.8386 115.225 86.104 109.674C86.3695 104.123 84.8441 98.6341 81.7528 94.0161C78.6615 89.3981 74.1682 85.8963 68.9354 84.0269C63.7026 82.1572 58.0075 82.0192 52.6901 83.6331C47.3731 85.2467 42.7153 88.5272 39.4041 92.9898C36.0925 97.4527 34.303 102.862 34.2993 108.419V141.744C37.3127 144.117 40.6366 146.066 44.1785 147.537V108.404C44.1785 105.227 45.1202 102.122 46.8847 99.4809C48.6494 96.8399 51.1574 94.7813 54.0915 93.5658C57.026 92.3503 60.2547 92.0323 63.3697 92.6518C66.4847 93.2716 69.3463 94.801 71.5921 97.0472C73.8379 99.2933 75.3673 102.155 75.9868 105.27C76.6066 108.386 76.2883 111.615 75.0732 114.549C73.8576 117.484 71.7994 119.992 69.1584 121.757C66.5178 123.522 63.4131 124.464 60.2369 124.464V124.479Z" fill="#1E2127"/>
<path d="M28.8975 135.261V108.575C28.9005 101.893 31.0473 95.3828 35.0306 89.9775C39.014 84.5722 44.629 80.5486 51.0723 78.4832C57.5152 76.4177 64.4559 76.4163 70.8998 78.4791C77.3441 80.542 82.9608 84.5633 86.9465 89.967C90.9318 95.3706 93.0816 101.88 93.0873 108.562C93.0933 115.245 90.9552 121.758 86.9792 127.168C83.0032 132.579 77.3935 136.61 70.9533 138.684C64.513 140.758 57.5724 140.768 51.1255 138.714V148.837C58.3953 150.573 66.003 150.363 73.1622 148.227C80.3217 146.092 86.773 142.109 91.8489 136.69C96.9252 131.272 100.442 124.615 102.036 117.407C103.63 110.198 103.242 102.701 100.915 95.69C98.5867 88.6791 94.4025 82.4084 88.7944 77.5266C83.1867 72.6449 76.3584 69.3291 69.0161 67.9221C61.6737 66.5151 54.0837 67.068 47.0308 69.5236C39.9776 71.9792 33.7175 76.2484 28.8975 81.8897V68.359V60C25.3219 62.2709 22.0037 64.9137 19 67.8829V109.818C19.2804 119.161 22.7701 128.131 28.8975 135.261Z" fill="#1E2127"/>
</g>
<defs>
<clipPath id="clip0_12211_9057">
<rect width="120" height="112" fill="white"/>
</clipPath>
<clipPath id="clip1_12211_9057">
<rect width="76" height="76" fill="white" transform="translate(19)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
docs/en/Blog-Posts/2025-10-02 v10_0_Preview/elsa-workflow-instances.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 KiB

BIN
docs/en/Blog-Posts/2025-10-02 v10_0_Preview/studio-switch-to-preview.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Loading…
Cancel
Save