0
brike.kuo@authme.com created
- ABP Framework version: v5.0.0
- UI type: Angular
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
- Exception message and stack trace:
- Steps to reproduce the issue:"
- yarn install angular project withour existed yarn.lock (in docker image build)
- and then it will get 5.0.2 dependency but not 5.0.0 abp version on my package.json is 5.0.0↓
but there are same bug on 5.1.1 and 5.0.2
that is
string-utils.ts
export function escapeHtmlChars(value: string) {
return (
value &&
value.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"')
);
}
audit log list has "execution duration" column, and that is number not string, so it will throw exception on value.replace
it's fixed on 5.1.2.
1 Answer(s)
-
0
Hello,
Thanks for reporting the issue. I will notify you when the fix is available in the 5.0.x version
If you want to install 5.0.0 packages you can add abp packages in the resolutions section in the package.json
// package.json { "resolutions": { "@abp/ng.account": "5.0.0", "@abp/ng.account.core": "5.0.0", "@abp/ng.core": "5.0.0", "@abp/ng.feature-management": "5.0.0", "@abp/ng.identity": "5.0.0", "@abp/ng.permission-management": "5.0.0", "@abp/ng.schematics": "5.0.0", "@abp/ng.setting-management": "5.0.0", "@abp/ng.tenant-management": "5.0.0", "@abp/ng.theme.basic": "5.0.0", "@abp/ng.theme.shared": "5.0.0", } }