selman koc
9bbc807d47
Update version to release 10.2.0-rc.3
2 weeks ago
Volosoft Agent
8577eb22a8
Merge pull request #25108 from abpframework/auto-merge/rel-10-1/4434
Merge branch rel-10.2 with rel-10.1
2 weeks ago
Engincan VESKE
155f0ca5b5
Merge pull request #25105 from abpframework/fix/fluent-validation-conventional-controllers
Fix FluentValidation not working with `ConventionalControllers`
2 weeks ago
Volosoft Agent
ba0245e252
Merge pull request #25106 from abpframework/auto-merge/rel-10-1/4432
Merge branch rel-10.2 with rel-10.1
2 weeks ago
Enis Necipoglu
e94aa4fb9a
Merge pull request #25097 from abpframework/EngincanV/update-maui-docs
Update maui document to mention adb tool
2 weeks ago
maliming
b21747c63b
Dispose HttpRequestMessage in tests
2 weeks ago
maliming
86b42e2613
Avoid double reflection call by passing effectiveMethod into ValidateActionArgumentsAsync
2 weeks ago
maliming
d3d6915ddf
Address Copilot review: extract GetEffectiveMethodInfo helper and fix method resolution in ValidateActionArgumentsAsync
Extract override method resolution logic into a reusable GetEffectiveMethodInfo helper to avoid duplication.
Use the resolved override method in ValidateActionArgumentsAsync so that IMethodInvocationValidator validates
against the concrete method on the controller type, not the base method from ActionDescriptor.
Remove unused imports in FluentValidationTestAppService_Tests.
2 weeks ago
maliming
234c46aab8
Fix FluentValidation not working with ConventionalControllers
When Application Services are registered via ConventionalControllers.Create(),
their types are added to DynamicProxyIgnoreTypes, which disables the
ValidationInterceptor. The AbpValidationActionFilter only checked ModelState
(DataAnnotations), so FluentValidation rules were never executed.
Add IValidationEnabled check in AbpValidationActionFilter to call
IMethodInvocationValidator for conventional controllers, enabling
FluentValidation support without duplicating validation for regular controllers.
Resolve #23457
2 weeks ago
Enis Necipoglu
0861612fa6
Merge pull request #25098 from abpframework/issue/bs-dependency-requirement
Blazor - Adding `popper.js` dependency for bootstrap package
2 weeks ago
Engincan VESKE
0b73a2e5bc
Merge pull request #25100 from abpframework/10.2-docs-rag-enhancements
Add Ollama setup and model pull instructions
2 weeks ago
Enis Necipoglu
22ccdb1641
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2 weeks ago
enisn
6af345610b
Add Ollama setup and model pull instructions
Add IMPORTANT notes explaining that the Ollama server must be installed and running and that models referenced by a workspace must be pulled locally before configuring. Include example commands (e.g. ollama pull llama3.2 and ollama pull nomic-embed-text) and note that nomic-embed-text is embedding-only. Also add a similar reminder in the RAG section to pull both chat and embedding models when using Ollama.
2 weeks ago
sumeyye
300f33eb9c
update: add popper.js dependency for bootstrap package
2 weeks ago
Engincan VESKE
0e61d85331
Update maui document to mention adb tool
2 weeks ago
Enis Necipoglu
89f5f5f7bc
fix: avoid spacing for hidden MVC inputs ( #25095 )
* fix: avoid spacing for hidden MVC inputs
* fix: preserve MVC input tag helper extensibility
* refactor: simplify hidden input spacing fix using context.Items
---------
Co-authored-by: maliming <malimings@gmail.com>
2 weeks ago
Volosoft Agent
556f78ed5e
Merge pull request #25086 from abpframework/auto-merge/rel-10-1/4427
Merge branch rel-10.2 with rel-10.1
2 weeks ago
Ma Liming
2b3a5d9624
Merge branch 'rel-10.2' into auto-merge/rel-10-1/4427
2 weeks ago
Fahri Gedik
60d7b2f084
Merge pull request #25085 from abpframework/issue/25081
Angular - Aligning the vite version
2 weeks ago
sumeyye
a395b93f99
update: use vite version 8 instead
3 weeks ago
sumeyye
dbc325ba1c
fix: downgrade the vite version because of the vitest version
3 weeks ago
Yağmur Çelik
6b80dc5971
Merge pull request #25067 from abpframework/fix/manage-page-post-null-reference
fix: initialize `ProfileManagementPageCreationContext` in `OnPostAsync` of `ManageModel`
3 weeks ago
Yağmur Çelik
862d055ec5
Merge pull request #25070 from abpframework/issue-21890
Remove bottom padding from modal header
3 weeks ago
Engincan VESKE
9b658e44b8
Merge pull request #25076 from abpframework/docs/ai-management-upload-hosting-limits
docs: clarify AI Management upload hosting limits
3 weeks ago
Engincan VESKE
d604e6ccfd
Merge pull request #25071 from abpframework/fix/swagger-oidc-scheme-mismatch
fix: OIDC schema mismatch in `AddAbpSwaggerGenWithOidc`
3 weeks ago
Enis Necipoglu
88c21fc073
docs: clarify AI Management upload hosting limits
3 weeks ago
Volosoft Agent
45c7325c1f
Merge pull request #25074 from abpframework/auto-merge/rel-10-1/4421
Merge branch rel-10.2 with rel-10.1
3 weeks ago
Yağmur Çelik
5f86700df4
Merge pull request #25017 from abpframework/fix/resource-permission-definition-bugs
fix: resource permission definition bugs in cache and event notification
3 weeks ago
maliming
46478acd14
fix: OIDC schema mismatch in SwaggerGen setup
3 weeks ago
Fahri Gedik
ea7cad3f9d
Remove bottom padding from modal header
Add the 'pb-0' class to the modal header div in modal.component.html to remove the default bottom padding when abpHeader() is present. This fixes layout/spacing in the theme-shared modal header.
3 weeks ago
Engincan VESKE
6de8a21d82
Merge pull request #25064 from abpframework/fix/blazor-wasm-streaming-http-only
fix: only enable browser request streaming over HTTPS in `AbpBlazorClientHttpMessageHandler`
3 weeks ago
maliming
b262f71c32
fix: initialize ProfileManagementPageCreationContext in OnPostAsync of ManageModel
3 weeks ago
maliming
ef84dbaef3
Include sorting and paging in role list fetch
3 weeks ago
maliming
1490b32e26
fix: only enable browser request streaming over HTTPS in Blazor WASM
SetBrowserRequestStreamingEnabled(true) requires HTTP/2, which browsers
only support over TLS (ALPN). When the target API uses plain HTTP,
the browser fails with ERR_ALPN_NEGOTIATION_FAILED on POST/PUT requests.
This change conditionally enables streaming only for HTTPS requests,
preserving the large file upload capability while fixing HTTP-only
development scenarios.
3 weeks ago
maliming
a57e249ab3
fix: guard against null provider key and stale search results in ResourcePermissionManagementModal
3 weeks ago
Volosoft Agent
fa794fc869
Merge pull request #25057 from abpframework/auto-merge/rel-10-1/4418
Merge branch rel-10.2 with rel-10.1
3 weeks ago
Engincan VESKE
a0fbdfd258
Merge pull request #25056 from abpframework/fix/update-dependency-changes-script
improve: preserve doc preamble and normalize `-preview` version in `update_dependency_changes` script
3 weeks ago
maliming
fb23d80440
test: add coverage for extract_preamble in update_dependency_changes tests
3 weeks ago
maliming
dacda7721c
fix: preserve doc preamble and normalize preview version in update_dependency_changes script
- Add extract_preamble() to retain SEO metadata before the heading when rewriting the doc
- Add normalize_version() to map -preview suffix to -rc.1 (preview == RC1 in ABP versioning)
- Add unit tests (Test 17-19) covering preview, rc.N, and stable version normalization
3 weeks ago
maliming
bacca3a1c0
fix: add AbpUiResource as base type in AbpPermissionManagementWebModule for JS localization fallback
3 weeks ago
Volosoft Agent
6c7cb581dd
Merge pull request #25047 from abpframework/auto-merge/rel-10-1/4416
Merge branch rel-10.2 with rel-10.1
3 weeks ago
Engincan VESKE
80bd4dca7a
Merge pull request #25041 from abpframework/feature/add-claude-code-skills
feat: add Claude Code skills.
3 weeks ago
voloagent
33c76dc6ed
Merge branch 'rel-10.2' of https://github.com/abpframework/abp into rel-10.2
3 weeks ago
voloagent
fcff022e56
Update_NPM_Packages
3 weeks ago
Berkan Sasmaz
f9337bd2e8
Merge pull request #25044 from abpframework/salihozkara-patch-3
Delete 'Low-Code System' from docs navigation
3 weeks ago
SALİH ÖZKARA
64285de9a2
Delete 'Low-Code System' from docs navigation
Removed 'Low-Code System' section and its items from navigation.
3 weeks ago
maliming
211a37b764
fix: remove XML tags from abp-multi-tenancy skill description
3 weeks ago
maliming
2773012640
improve: enhance Claude Code skills descriptions and add key rules sections
3 weeks ago
maliming
682312289b
feat: add Claude Code skills for ABP ai-rules
3 weeks ago
Alper Ebiçoğlu
167de5145d
Merge pull request #25037 from abpframework/skoc10-patch-3
Update version to release 10.2.0-rc.2
3 weeks ago