diff --git a/Source/WebKit/gtk/NEWS b/Source/WebKit/gtk/NEWS index 4b2466062d5d..2ad6ed44998b 100644 --- a/Source/WebKit/gtk/NEWS +++ b/Source/WebKit/gtk/NEWS @@ -1,3 +1,22 @@ +================ +WebKitGTK 2.39.2 +================ + +What's new in WebKitGTK 2.39.2? + + - Add API to support asynchronously returning values from user script messages. + - Deprecate WebKitConsoleMessage API. + - Deprecate event parameter of WebKitWebView::context-menu and WebKitWebView::show-option-menu signals + in favor of a getter in WebKitConextMenu and WebKitOptionMenu. + - Do not emit context-menu signals for media settings popup menu. + - Use async scrolling also for keyboard scrolling. + - Add support for client side certificates on WebSocket connections. + - Fix first party for cookies set on every media request. + - Fix a crash on authentication dialog with GTK4. + - Fix web process leak when webkit_download_set_destination is called with empty destination. + - Fix several warnings when building for ARMv7 (32-bits). + - Fix several crashes and rendering issues. + ================ WebKitGTK 2.39.1 ================ diff --git a/Source/cmake/OptionsGTK.cmake b/Source/cmake/OptionsGTK.cmake index 885a2befa041..3d6e88353dab 100644 --- a/Source/cmake/OptionsGTK.cmake +++ b/Source/cmake/OptionsGTK.cmake @@ -3,7 +3,7 @@ include(VersioningUtils) WEBKIT_OPTION_BEGIN() -SET_PROJECT_VERSION(2 39 1) +SET_PROJECT_VERSION(2 39 2) # This is required because we use the DEPFILE argument to add_custom_command(). # Remove after upgrading cmake_minimum_required() to 3.20. @@ -236,11 +236,11 @@ EXPOSE_STRING_VARIABLE_TO_BUILD(WEBKITGTK_API_INFIX) EXPOSE_STRING_VARIABLE_TO_BUILD(WEBKITGTK_API_VERSION) if (WEBKITGTK_API_VERSION VERSION_EQUAL "4.0") - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 95 0 58) - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 40 0 22) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 96 0 59) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 40 1 22) elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "4.1") - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 3 0 3) - CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 3 0 3) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 4 0 4) + CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 3 1 3) elseif (WEBKITGTK_API_VERSION VERSION_EQUAL "6.0") CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT 0 0 0) CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 0 0 0)