Ma Liming
65d8b4281c
Update framework/src/Volo.Abp.Timing/Volo/Abp/Timing/TimeZoneHelper.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
4 weeks ago
Ma Liming
6b745b56d6
Update framework/src/Volo.Abp.Timing/Volo/Abp/Timing/TimeZoneHelper.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
4 weeks ago
Ma Liming
1ba16383e3
Update framework/test/Volo.Abp.Timing.Tests/Volo/Abp/Timing/TimeZoneHelper_Tests.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
4 weeks ago
maliming
8210f415fe
Enhance TimeZoneHelper with offset and validation
https://abp.io/support/questions/10295/TimeZoneHelperGetTimezones-throws-TimeZoneNotFoundException-on-Linux
4 weeks ago
Ma Liming
8db67fa91e
Merge pull request #24601 from abpframework/auto-docs-seo/24600
docs: Add SEO descriptions (from PR 24600)
4 weeks ago
github-actions[bot]
54a8117cd6
docs: Add SEO descriptions to modified documentation files
Related to PR #24600
4 weeks ago
Ma Liming
24211e5f4d
Merge pull request #24600 from abpframework/auto-merge/rel-10-0/4262
Merge branch rel-10.1 with rel-10.0
4 weeks ago
Halil İbrahim Kalkan
357fb58009
Merge pull request #24599 from abpframework/enisn-patch-2
Fix code example in AI documentation
4 weeks ago
Enis Necipoglu
4f18932848
Fix code example in AI documentation
4 weeks ago
Ma Liming
73cf4792e1
Update modules/identity/test/Volo.Abp.Identity.Domain.Tests/Volo/Abp/Identity/AbpIdentityErrorDescriber_Tests.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
4 weeks ago
Ma Liming
289087c282
Update modules/identity/test/Volo.Abp.Identity.Domain.Tests/Volo/Abp/Identity/AbpIdentityErrorDescriber_Tests.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
4 weeks ago
Ma Liming
2ef4fdef20
Update modules/identity/test/Volo.Abp.Identity.Domain.Tests/Volo/Abp/Identity/AbpIdentityErrorDescriber_Tests.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
4 weeks ago
maliming
27179a007c
Support dynamic client credentials in token introspection
```cs
AddAbpOpenIdConnect("oidc", options =>
{
//...
options.ClientId = configuration["AuthServer:ClientId"];
options.ClientSecret = configuration["AuthServer:ClientSecret"];
options.UsePkce = true;
//...
options.Events.OnTokenResponseReceived = ctx =>
{
ctx.Properties?.SetString("client_id", configuration["AuthServer:ClientId"]);
ctx.Properties?.SetString("client_secret", configuration["AuthServer:ClientSecret"]);
return Task.CompletedTask;
};
});
```
4 weeks ago
Ma Liming
4461f0f817
Change notification type from info to success
4 weeks ago
sumeyye
975b407615
Merge pull request #24577 from abpframework/issue-22901
Replace LazyLocalizationPipe with AsyncLocalizationPipe
4 weeks ago
sumeyye
6329f4c813
update: auto-save arrangements
4 weeks ago
maliming
9b29a11d8a
Use `AbpIdentityErrorDescriber` to localize error message instead of `AbpIdentityResultExtensions`.
4 weeks ago
Ma Liming
5030e33ba6
Merge pull request #24585 from abpframework/auto-merge/rel-10-0/4258
Merge branch rel-10.1 with rel-10.0
4 weeks ago
sumeyye
d7c4975b0a
Merge remote-tracking branch 'origin/rel-10.1' into auto-merge/rel-10-0/4258
4 weeks ago
sumeyye
fd34dcc54b
fix: remote stream content array check
4 weeks ago
Ma Liming
a4b2a74bc3
Merge pull request #24578 from abpframework/EngincanV/migration-guide-10-1
Create migration guide for v10.1
4 weeks ago
Ma Liming
1276cfb5e0
Enhance migration guide for ABP v10.1
Updated migration guide to include user passkey entity details.
4 weeks ago
sumeyye
fe28c6678b
Merge pull request #24566 from abpframework/issue/update-react-native-documents
React Native - Document fixes and updates
4 weeks ago
Ma Liming
fbcf8a0a0a
Merge pull request #24583 from abpframework/auto-merge/rel-10-0/4256
Merge branch rel-10.1 with rel-10.0
4 weeks ago
Ma Liming
ed839adf30
Merge pull request #24571 from abpframework/lazy-dynamic-initializer
Refactor dynamic initializers to use service provider
4 weeks ago
maliming
0b538d91b6
Add ShowToolbar property to ContentLayout
4 weeks ago
Fahri Gedik
d0953601dd
Add async pipe to abpAsyncLocalization in routes
Appends the async pipe to the abpAsyncLocalization usage in routes.component.html to ensure localized route names are properly resolved from observables.
4 weeks ago
sumeyye
70bc41fa12
Merge pull request #24575 from abpframework/documentation/angular-version-upgrade-to-v21
Angular - Docs version upgrade to v21
4 weeks ago
EngincanV
27dd72e02a
Create migration guide for v10.1
4 weeks ago
Fahri Gedik
56964f5862
Replace LazyLocalizationPipe with AsyncLocalizationPipe
Updated the routes component to use AsyncLocalizationPipe instead of LazyLocalizationPipe for route name localization. Adjusted template bindings to use the new pipe, improving consistency and potentially performance.
4 weeks ago
erdemcaygor
f22335d694
update
4 weeks ago
Yunus Emre Kalkan
c805596a21
Merge pull request #24572 from LEIRONGHUA/fix-cli-solution-extension
Resolve the RemoveProjectFromSolutionStep "file not found" error in the abp CLI new command.
4 weeks ago
Engincan VESKE
4e6a32d042
Merge pull request #24550 from abpframework/DistributedEventBusBase_AddToInbox
Add logic to set addToInbox to true if messageId exists in event inbox
4 weeks ago
maliming
e0ebc1b100
Refactor dynamic initializers to use service provider
Resolve #24570
4 weeks ago
Fahri Gedik
e66291ba29
Ensure config state is loaded before permission check
Updated PermissionGuard and permissionGuard to wait for ConfigStateService to load granted policies before checking permissions. This prevents permission checks from running before configuration is available.
1 month ago
sumeyye
04d67bc872
update: react native docs
1 month ago
Yunus Emre Kalkan
758f7f6a30
Added secrets and metadata to studio concepts document
resolves https://github.com/volosoft/abp-studio/issues/4143
1 month ago
Yunus Emre Kalkan
1df180570a
Update working-with-suite.md
1 month ago
Yunus Emre Kalkan
5fd5da42a8
Update kubernetes.md
1 month ago
Yunus Emre Kalkan
64593cde2f
Enhanced solution explorer window
1 month ago
Yunus Emre Kalkan
4b591cbf20
Updated running applications documentation
1 month ago
Ma Liming
c9d65408fc
Merge pull request #24560 from abpframework/auto-merge/rel-10-0/4251
Merge branch rel-10.1 with rel-10.0
1 month ago
Ma Liming
2d570b23f9
Merge pull request #24557 from abpframework/ExportToExcel
Add 'no records to export' localization key
1 month ago
Ma Liming
5b6dac03b3
Update modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/Localization/tr.json
Co-authored-by: SALİH ÖZKARA <salihozkara00@gmail.com>
1 month ago
Yunus Emre Kalkan
b50a23011e
Documentation: Enhanced `monitoring applications`
1 month ago
maliming
86d6d5d9f8
Add 'no records to export' localization key
1 month ago
voloagent
1e4e9c4dab
Merge branch 'rel-10.1' of https://github.com/abpframework/abp into rel-10.1
1 month ago
voloagent
7e6ed8c8e4
Update_NPM_Packages
1 month ago
Ma Liming
1cdd0d56c7
Merge pull request #24554 from abpframework/auto-merge/rel-10-0/4248
Merge branch rel-10.1 with rel-10.0
1 month ago
Enis Necipoglu
91ee4f99b4
Merge pull request #24553 from abpframework/update-studio-tools-doc-section
Documentation: Updated tools section in Monitoring Applications document
1 month ago