I just made a brand new ABP project via the CLI on angular 18 and ABP 8.3.0, and it has the same issue.
Had to run yarn cache clean
instead
The above steps did not work unfortunately, we're still left with the same warnings
We found it was because the email send type was changed to Queued, but we had disabled background jobs in our auth server. We had to manually add the line of code context.Services.Replace(ServiceDescriptor.Singleton<IBackgroundJobManager, NullBackgroundJobManager>());
even though the options had background jobs as disabled via Configure<AbpBackgroundJobOptions>(options => { options.IsJobExecutionEnabled = false; });
. Feels like it should take that into account, instead of the literal implementation type of IBackgroundJobManager.
None that are different from the ABP 7 version, no. I got logs of both ABP 7 and ABP 8. 7 works, 8 doesn't - no obvious differences in the logs, no warnings/errors etc. nothing around that code has changed, the method still gets called with the same data.
updating to 7.2.2 did the job for me
Any word on this?
That worked! Thanks!
Any word on this?
So, is the abp suite cli broken? I just ran it. I did not change it afterwards.
Funny, I saw your forum comment before and tried this before, I figured it was fixed in the new update. I just did not replace all the styles. Now I did and it at least compiles the angular project. B
Project no longer errors out and does compile but it does not load the site. Not errors either.