Skip to content

Commit

Permalink
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.39.2 release
Browse files Browse the repository at this point in the history
* Source/WebKit/gtk/NEWS: Add release notes for 2.39.2.
* Source/cmake/OptionsGTK.cmake: Bump version numbers.

Canonical link: https://commits.webkit.org/257065@main
  • Loading branch information
carlosgcampos committed Nov 28, 2022
1 parent a798257 commit ab46c3e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
19 changes: 19 additions & 0 deletions 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
================
Expand Down
10 changes: 5 additions & 5 deletions Source/cmake/OptionsGTK.cmake
Expand Up @@ -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.
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit ab46c3e

Please sign in to comment.