Hi @Sturla, we are sorry for that and we are aware of it's a bad experience for you but it was caused by the obfuscation process while releasing and it was almost impossible to find the problem at that stage. We've addressed the problem and fixed it but we need to release a new version (5.3.1) and we'll release it asap. Sorry for this kind of problem and thanks for your patience.
This error was caused after the obfuscation process when released the v5.3.0. To fix this problem, maybe you can try to disable the polls feature by using the GlobalFeatures
:
GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>
{
cmsKitPro.Disable<PollsFeature>();
});
@EngincanV you got something else for me to try out?
I'll create a repository and try to integrate it with the docs module and share the steps with you.
We've fixed this problem and it will be available with v5.3.1.
This issue can be reproduced when you are trying to save some error (the exception which happens in your application). Have you reproduced this case?
Yes, I tried in that case but couldn't reproduce the problem. If it's possible can you share your class that implements the IAuditingStore
?
Hi, if you have the yarn.lock
file in the blazor server project directory, can you delete it and re-run the abp install-libs
command?
Can you create a
docs-langs.json
file in the /docs directory of your repository (like https://github.com/abpframework/abp/blob/dev/docs/docs-langs.json):{ "Languages":[ { "DisplayName" : "Icelandic", "Code" : "is", "IsDefault": true } ] }
Its there https://github.com/Ibeinni/docs or am I misunderstanding? I do not have a docs folder but only a docs repository.. is that it?
It seems you already created it, my bad sorry. Can you change the root URL to https://github.com/Ibeinni/docs/tree/{version}/is
and add an index.md file under the is directory and then try it again?
Can you create a docs-langs.json
file in the /docs directory of your repository (like https://github.com/abpframework/abp/blob/dev/docs/docs-langs.json):
{
"Languages":[
{
"DisplayName" : "Icelandic",
"Code" : "is",
"IsDefault": true
}
]
}
I've created an application with v5.0 and implemented the IAuditingStore
interface and save records by using the IAuditLogRepository
. Then, upgraded the application to v5.1.2 and I still could save records to the database and didn't face with any problems.
Can you share your class that implements the IAuditingStore
?