Posted on January 24, 2025
DotNetBrowser 3.0.1
Chromium 132.0.6834.84
We upgraded Chromium to a newer version, which introduces 16 security fixes, including:
- CVE-2025-0434: Out of bounds memory access in V8
- CVE-2025-0435: Inappropriate implementation in Navigation
- CVE-2025-0436: Integer overflow in Skia
For the complete list of Chromium fixes and improvements since the previous Chromium upgrade please visit the product blog posts for the following versions:
Passwords, credit cards, user data profiles
Now you can add passwords, credit cards, and user data profiles to the corresponding stores programmatically. In the previous versions, this data could be added to the stores only by the user’s interaction with the browser when the browser prompts the user to save the data.
The following code demonstrates how to add a password to the password store programmatically:
PasswordRecord passwordRecord = new PasswordRecord.Builder
{
Url = "https://company.com",
Login = "login",
Password = "password"
}.Build();
IPasswordStore passwords = engine.Profiles.Default.PasswordStore;
passwords.Add(passwordRecord);
Quality enhancements
- The default dialogs implementations in WinUI 3 were reworked to work properly with the hardware-accelerated rendering mode.
- Fixed broken Widevine functionality on Windows and Linux.
Download DotNetBrowser 3.0.1 (.NET Framework)
Download DotNetBrowser 3.0.1 (.NET Core)
Download DotNetBrowser 3.0.1 (Cross-platform)
Follow @DotNetBrowser to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.