-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Description
Is there an existing issue for this?
- I have searched the existing issues
Describe the bug
When upgrading from 8.0.4 to 8.0.5, the dotnet.js
changed.
In opposite to dotnet.native.{fingerprint}.js
and dotnet.runtime.{fingerprint}.js
, the dotnet.js
is not fingerprinted and thus cached. The usual Clear site data in F12-DevTools do not help as the file is cached by the browser and still taken from "(disk cache)".
The 8.0.4 dotnet.js
is not compatible with 8.0.5 dotnet.native.{...}.js
or dotnet.runtime.{...}.js
and the symptom is:
logging.ts:32 MONO_WASM: TypeError: Cannot read properties of undefined (reading 'out')
at $l (https://localhost:44303/_framework/dotnet.runtime.8.0.5.gongq8hbow.js:3:198913)
at ze (https://localhost:44303/_framework/dotnet.js:3:30895)
at https://localhost:44303/_framework/dotnet.js:3:30131
at async Object.create (https://localhost:44303/_framework/dotnet.js:3:34510)
at async https://localhost:44303/_framework/blazor.web.js:1:154483
at async https://localhost:44303/_framework/blazor.web.js:1:164313
startup.ts:43 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'out')
at $l (startup.ts:43:17)
at ze (run.ts:461:11)
at run.ts:505:11
at async Object.create (run.ts:361:72)
at async blazor.web.js:1:154483
at async blazor.web.js:1:164313
(No module
parameter set when calling configureRuntimeStartup()
from initializeModules()
.)
Expected Behavior
dotnet.js
to be correctly fingerprinted (As it already used to be before splitting to several files?).
Steps To Reproduce
VS 2022 17.9.6 - Create new BWA - WebAssembly project + run locally in browser.
Update VS to 17.9.7 (brings dotnet 8.0.5).
Run the same project again.
Exceptions (if any)
No response
.NET Version
8.0.5 (9.0.0-preview3 still does not resolve this issue)
Anything else?
WORKAROUND: Ctrl+F5 in browser to force reloading the file.
(It seems this is already in progress, as there are some options in tests which enable checking the fingerprinting on dotnet.js
.)