Ma Liming
80f6be49fa
Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
6 months ago
Engincan VESKE
a478cda571
Update road map for v10.4 release planning.
Refreshes next version details for May 2026, removes a delivered v10.3 backlog item, and aligns roadmap focus with current 10.4 preview work.
Made-with: Cursor
6 months ago
Engincan VESKE
7b9a55735a
Update release-notes.md
6 months ago
maliming
418ace5e11
docs: add missing eventBus resolution in mixed handlers snippet
6 months ago
maliming
a1420e41be
docs: address copilot review feedback on dynamic events PR
6 months ago
maliming
040cba6b74
docs: fix dynamic events article and update distributed event bus docs
6 months ago
maliming
c98a08bd13
feat: Implement route-based culture handling with new helpers and tests
6 months ago
Engincan VESKE
fc5f4bed3e
Update POST.md
6 months ago
github-actions[bot]
efed8144df
Optimised images with calibre/image-actions
6 months ago
Engincan VESKE
75ed059022
Update POST.md
6 months ago
Engincan VESKE
d8cf3cbf35
init commit for v10.3 blog post
6 months ago
Engincan VESKE
c540da5630
Create v10.3 migration guide
6 months ago
maliming
781ad25c38
fix: resolve template rendering errors in modular-crm tutorial docs
- Merge duplicate doc-params blocks into a single block with all UI options
- Fix orphaned {{else if}} blocks in part-04 and part-06
- Add missing BlazorWebApp branch in inline conditionals
6 months ago
github-actions[bot]
ceede870e8
Optimised images with calibre/image-actions
6 months ago
github-actions[bot]
209c907830
Optimised images with calibre/image-actions
6 months ago
maliming
cb412287be
feat: Enhance documentation for URL-based localization with additional examples and images
6 months ago
github-actions[bot]
3a16c0401b
Optimised images with calibre/image-actions
6 months ago
github-actions[bot]
c9841af4a0
docs: update package version changes [skip ci]
6 months ago
github-actions[bot]
988d071ed9
Optimised images with calibre/image-actions
6 months ago
Engincan VESKE
10f6700859
Update docs/en/Blog-Posts/2026-03-31 v10_2_Release_Stable/POST.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
6 months ago
github-actions[bot]
c97ce29eb3
Optimised images with calibre/image-actions
6 months ago
Engincan VESKE
3cdcfac8b9
complete v10.2 stable post
6 months ago
maliming
c36823fe4a
feat: Enhance route-based culture handling by inserting RouteDataRequestCultureProvider after QueryStringRequestCultureProvider
6 months ago
maliming
0880b23d7c
feat: Implement URL-based localization support for Blazor components and enhance menu item URL handling
6 months ago
maliming
cd478093ec
feat: Add culture parameter to account, identity, user, setting, and tenant management pages for URL-based localization
6 months ago
maliming
0292b2bbc7
fix: Update fallback culture handling in AbpCultureMenuItemUrlProvider to use CurrentCulture instead of CurrentUICulture
6 months ago
maliming
7d2686d065
refactor: Remove unnecessary Blazor web app configuration from localization examples
6 months ago
maliming
6f15b2f71a
feat: Enhance URL-based localization support for Blazor components and add tests
6 months ago
maliming
dc3e633606
feat: Implement route-based culture support in localization.
6 months ago
github-actions[bot]
86463d253b
docs: update package version changes [skip ci]
6 months ago
selman koc
56529f8215
Update ABP Studio version range for 10.1.1
6 months ago
selman koc
a035ec1c0a
Update release notes for version 2.2.4
Updated release notes for version 2.2.4, added new features and changes.
6 months ago
maliming
eb42ca88ef
feat: add Volo.Abp.LuckyPenny.AutoMapper package for commercial AutoMapper integration
Closes #25137
6 months ago
maliming
2c8a6e47ee
Add ABP 10.3 availability note to dynamic features articles
6 months ago
selman koc
ea25ea4e35
Update release notes for ABP Studio version 2.2.3
Updated release notes for ABP Studio to include version 2.2.3 and its features.
6 months ago
selman koc
c65040060c
Update ABP Studio version mapping table
6 months ago
Engincan VESKE
bc6a6cda8a
Change header format for OpenAI-Compatible API section
Updated section header for OpenAI-Compatible API and improved formatting.
6 months ago
github-actions[bot]
491df6431b
docs: Add SEO descriptions to modified documentation files
Related to PR #25130
6 months ago
github-actions[bot]
ca319c9add
Optimised images with calibre/image-actions
6 months ago
maliming
7240846914
feat: Add documentation for dynamic events in ABP and include cover image
6 months ago
maliming
ca9b3c54db
refactor: Remove dynamic event support from Dapr distributed event bus implementation
6 months ago
maliming
29dee66e90
refactor: Update DynamicEventData handling and improve documentation across event bus implementations
6 months ago
maliming
fb6f4722ff
refactor: Replace AnonymousEventData with DynamicEventData across the event bus implementation
6 months ago
enisn
c7ccd3175c
docs: add ABP Suite guidance for Mapperly migration
6 months ago
enisn
ced7c80a34
docs: add ABP Suite guidance for Mapperly migration
6 months ago
github-actions[bot]
c50bd1cc64
Optimised images with calibre/image-actions
6 months ago
maliming
238ec359be
Add article for dynamic background jobs and workers.
6 months ago
maliming
ca4d3f8260
Fix documentation for DynamicBackgroundJobArgs description, TickerQ comment, and provider-dependent return values
6 months ago
maliming
a04e20c407
Fix UpdateScheduleAsync restart behavior and revert TickerQ IsRegistered
- Fix Hangfire/Quartz UpdateScheduleAsync to operate directly on persistent
scheduler state without checking the in-memory registry, consistent with
the RemoveAsync fix; this allows updating schedules after restart
- Revert TickerQ IsRegistered to return false instead of throwing;
a boolean query method should not throw exceptions
- Update docs: note that UpdateScheduleAsync works after restart for
persistent providers
6 months ago
maliming
024f16cd99
Fix dynamic background job/worker code review issues
- Fix reflection method lookup in DefaultDynamicBackgroundJobManager to match by parameter types
- Add StopAllAsync to IDynamicBackgroundWorkerManager interface and all implementations
- Add semaphore locking to StopAllAsync in DefaultDynamicBackgroundWorkerManager with volatile _isDisposed
- Fix HangfireDynamicBackgroundWorkerManager.GetCron to match existing HangfireBackgroundWorkerManager format
- Fix QuartzDynamicBackgroundWorkerManager.UpdateScheduleAsync to reuse BuildTrigger method
- Fix TickerQDynamicBackgroundWorkerManager.IsRegistered to throw AbpException (consistent with other methods)
- Add GetAllNames and Clear to IDynamicBackgroundWorkerHandlerRegistry
- Call StopAllAsync in AbpBackgroundWorkersModule.OnApplicationShutdownAsync
- Move DynamicBackgroundWorkerManager_Tests to correct namespace/directory
- Fix singleton state pollution in BackgroundJobManager_Tests
- Update docs to warn about handler loss after restart for dynamic jobs and workers
6 months ago