2025
2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
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
Please share your email with us, and we'll send you download instructions.
We were unable to send the email. Please try again.
If you are a registered customer you don't need to do anything to use this update.
If you would like to evaluate the product, you need an evaluation license.
Follow @DotNetBrowser to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.
Subscribe to get notifications about the latest releases.