Volosoft Agent
847760119f
Merge pull request #25134 from abpframework/auto-merge/rel-10-2/4443
Merge branch dev with rel-10.2
1 week ago
maliming
06d77ff36e
Merge branch 'dev' into auto-merge/rel-10-2/4443
1 week ago
voloagent
203668ec6c
Update_NPM_Packages
1 week ago
Ma Liming
19d938b2bd
Merge pull request #25131 from abpframework/auto-merge/rel-10-2/4441
Merge branch dev with rel-10.2
1 week ago
maliming
12b2c89361
Merge branch 'dev' into auto-merge/rel-10-2/4441
1 week ago
Ma Liming
af6e18a063
Merge pull request #25132 from abpframework/auto-merge/rel-10-2/4442
Merge branch dev with rel-10.2
1 week ago
Ma Liming
eca97b2df6
Merge pull request #25133 from abpframework/auto-docs-seo/25130
docs: Add SEO descriptions (from PR 25130)
1 week ago
maliming
2cac62a5fc
Merge branch 'dev' into auto-merge/rel-10-2/4441
1 week ago
github-actions[bot]
491df6431b
docs: Add SEO descriptions to modified documentation files
Related to PR #25130
1 week ago
Volosoft Agent
f146c72fdf
Merge pull request #25130 from abpframework/auto-merge/rel-10-2/4440
Merge branch dev with rel-10.2
1 week ago
Ma Liming
2478aceca8
Merge branch 'dev' into auto-merge/rel-10-2/4440
1 week ago
Volosoft Agent
520d506d97
Merge pull request #25129 from abpframework/auto-merge/rel-10-1/4439
Merge branch rel-10.2 with rel-10.1
1 week ago
İsmail ÇAĞDAŞ
f337488c7e
Merge pull request #25118 from abpframework/issue-14079-external-user-lookup-docs
docs: explain external user lookup for Identity and CMS Kit
1 week ago
Engincan VESKE
d4bec65290
Merge pull request #25122 from abpframework/upgrade/scriban-6.6.0
Upgrade Scriban to 6.6.0
1 week ago
Fahri Gedik
0ce1b453fa
Merge pull request #25117 from abpframework/issue/25115
Angular - Fixing the `ExtensibleLimitedResultRequestDto` extention class
1 week ago
Ma Liming
35aa17d3e2
Merge pull request #25128 from JasonPG2007/fix-angular-route-name-i
fix(cli): use ToUpperInvariant for snake case replacement in SolutionRenamer
1 week ago
github-actions[bot]
ca319c9add
Optimised images with calibre/image-actions
1 week ago
maliming
7240846914
feat: Add documentation for dynamic events in ABP and include cover image
1 week ago
maliming
54f1241099
Allow publishing dynamic events without local subscribers, use IJsonSerializer for ConvertDynamicEventData
- Remove "Unknown event name" exception from all providers and LocalEventBus
to match typed PublishAsync behavior (no handler = silent, not exception)
- Use ABP's IJsonSerializer instead of System.Text.Json for ConvertDynamicEventData
to respect configured JSON serialization options
1 week ago
maliming
4af07a7c58
fix(cli): use ToUpperInvariant/ToLowerInvariant across CLI Core project
1 week ago
maliming
b51ee74653
Remove unused System.Text.Json using from Azure and Kafka providers, remove dead IsDynamicEvent method from Dapr provider
1 week ago
Halil İbrahim Kalkan
171e7039cc
Added agent skills for codex
1 week ago
maliming
3658bf3a49
Remove `DistDemoApp`.
1 week ago
maliming
ca9b3c54db
refactor: Remove dynamic event support from Dapr distributed event bus implementation
1 week ago
maliming
20d85a44bb
fix: Add missing newlines at the end of several files in the event bus implementation
1 week ago
maliming
29dee66e90
refactor: Update DynamicEventData handling and improve documentation across event bus implementations
1 week ago
maliming
fb6f4722ff
refactor: Replace AnonymousEventData with DynamicEventData across the event bus implementation
1 week ago
Nguyễn Quốc Bảo An
0abbe232b0
fix(cli): use ToUpperInvariant to avoid culture-specific casing issues
1 week ago
Volosoft Agent
026537d38a
Merge pull request #25127 from abpframework/auto-merge/rel-10-2/4438
Merge branch dev with rel-10.2
1 week ago
Volosoft Agent
925862aa4c
Merge pull request #25126 from abpframework/auto-merge/rel-10-1/4437
Merge branch rel-10.2 with rel-10.1
1 week ago
Ma Liming
23321b9f27
Merge pull request #25125 from abpframework/enisn/10537-mapperly-suite-docs-rel-10-1
docs: clarify ABP Suite usage after Mapperly migration
1 week ago
enisn
c7ccd3175c
docs: add ABP Suite guidance for Mapperly migration
1 week ago
enisn
ced7c80a34
docs: add ABP Suite guidance for Mapperly migration
1 week ago
maliming
ec9db61b06
Merge branch 'dev' into issue-24918-event-bus
1 week ago
github-actions[bot]
c50bd1cc64
Optimised images with calibre/image-actions
1 week ago
maliming
238ec359be
Add article for dynamic background jobs and workers.
1 week ago
maliming
ca4d3f8260
Fix documentation for DynamicBackgroundJobArgs description, TickerQ comment, and provider-dependent return values
1 week ago
maliming
d8eefa4685
Add tests for dynamic background job handler registry and StopAllAsync, fix duplicate usings in DemoAppSharedModule
1 week 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
1 week ago
maliming
eb2cf10a3d
Enhance dynamic background worker management with improved error handling and logging
1 week ago
maliming
3a01bd5d42
Refactor RemoveAsync method to return registration status instead of deletion result
1 week ago
maliming
7a1e246ce9
Enhance dynamic background job handling with improved argument management and error logging
1 week 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
1 week ago
maliming
0545daaf12
Merge branch 'issue-24918-bg-workers' into issue-24918-bg-jobs
1 week ago
maliming
6fc04cf5aa
Add logger and relax JsonData validation
1 week ago
maliming
7c95bd6796
Fix dynamic background job code review issues
1 week ago
maliming
92a72fcef5
Implement dynamic background job handling with new DynamicBackgroundJobArgs and executor
1 week ago
maliming
5d74d97566
Fix whitespace issues and update job handler registration in background job management
1 week ago
maliming
a18cd1c5e9
fix: Refactor background worker handler to use delegate type for improved clarity and consistency
2 weeks ago
maliming
70c333ad97
Refactor background job execution and management
2 weeks ago