Skip to content

v126.2.70

Latest
Compare
Choose a tag to compare
@amaitland amaitland released this 23 Jun 10:34

June 23, 2024, CEF 126.2.7+g300bb05+chromium-126.0.6478.115 / Chromium 126.0.6478.115

  • ⚠️ Change from Alloy Bootstrap to Chrome bootstrap as default. The Alloy bootstrap is deprecated and will be removed shortly (upstream) (#4835). Those using the Chrome Runtime previously will need to set CefSharpSettings.RuntimeStyle = CefRuntimeStyle.Chrome;
  • 🛑 Switching from Alloy Bootstrap to Chrome bootstrap appears to ignore cookies from the previous version as the encrpytion keys
    are likely different. You can switch back to the Alloy bootstrap if required via cefSettings.ChromeRuntime = false; #4835
  • CEF now supports the Chromium process singleton, this brings with it changes to how CachePath/RootCachePath are accessed from multiple processes. See #4668 for more details
  • ⚠️ Microsoft Visual C++ 2019 Redistributable is required. A minimum of VC++ 2019 is required, higher versions are backwards compatible. For those upgrading from a previous version which only required VC++ 2015 minimum see #3636 for some guidance.

✅ Change Log

For a list of CefSharp specific changes see the 126.2.x Milestone. See also Release Notification.

⚠️ Breaking Changes

  • #4835 Change to using Chrome bootstrap by default
  • #4838 IDialogHandler.OnFileDialog add new extensions and descriptions arguments
  • #4830 Chrome Runtime proxies don't work unless flag is set. (disable-chrome-login-prompt command line arg is now set by default)
  • #4832 OffScreen - ChromeRuntime doesn't work with LoadURL

ℹ️ Notes

❌ Known Issues


  • All paths (CachePath, BrowserSubProcessPath, etc) must be absolute paths, if using a non-absolute path an exception will be throw. See #3102 for details.
  • When using a RequestContext you must ensure that RequestContextSettings.CachePath is equal to or a child of CefSettings.RootCachePath See #3111 (comment) for details