Version 35 (modified by 9 years ago) ( diff ) | ,
---|
Preparing for 2.10.0
WebkitGtk+ 2.10.0 will be the next release in the stable series (following 2.8.x). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at r188381 (13/08/15).
When filing bugs (http://bugs.webkit.org) against stable release, please prefix them with "[GTK] [Stable]" to ensure they are addressed with high priority. Also, running a debug build and including stack traces is highly encouraged. (Don't use "[Stable]" if the bug also applies to master, though.)
To get the stable branch code, simply check out http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.10
Over the next few weeks we'll be merging important fixes into the branch, so be sure to stay up to date. Thanks for your help!
Proposed merges for 2.10.4
http://trac.webkit.org/changeset/191618 [GTK] InstallMissingMediaPluginsPermissionRequest not defined when building without GStreamerhttp://trac.webkit.org/changeset/191619 [GTK] Build GL texture mapper only if USE_TEXTURE_MAPPER_GLhttp://trac.webkit.org/changeset/191856 [GTK] Fix combinations of PLATFORM(GTK) and OS(DARWIN)http://trac.webkit.org/changeset/192095 [GTK] Re-enable Quartz backend on cmake build systemhttp://trac.webkit.org/changeset/192096 [GTK] Fails to link libwebkit2gtkinjectedbundle.so on OSXhttps://bugs.webkit.org/show_bug.cgi?id=150618 [SOUP] Cannot build the network process in glibc-based BSD systemshttps://bugs.webkit.org/show_bug.cgi?id=146194 ASSERTION FAILED: typesettingFeatures & (Kerning | Ligatures) in WebCore::applyFontTransformshttp://trac.webkit.org/changeset/191077 (not specific to ContentExtensions) Make blocked async XHR call onerror
Proposed merges for 2.10.1
http://trac.webkit.org/changeset/190405 [GTK] Web Inspector: Add GTK+ icons for the numerical input and slider based Visual editors for CSS propertieshttp://trac.webkit.org/changeset/190404 [GTK] Web Inspector: Add GTK+ icons for the different types of non-numerical Visual editors for CSS propertieshttp://trac.webkit.org/changeset/190369 [GTK] Web Inspector: Add GTK+ icon for the Bezier curve visual editorhttp://trac.webkit.org/changeset/190345 [GTK] Build error with -DENABLE_SPELLCHECK=OFFhttp://trac.webkit.org/changeset/189912 [GTK] Crash in WebKit::BackingStore::createBackend running under Waylandhttp://trac.webkit.org/changeset/190857 [GTK] Fails to link JavaScriptCore in OS X, missing symbols add_history and readlinehttp://trac.webkit.org/changeset/190856 [GTK] Don't use --version-script on Darwinhttp://trac.webkit.org/changeset/190909 [GTK] OSX linker doesn't understand --whole-archive- https://bugs.webkit.org/show_bug.cgi?id=144785 [GTK] Fails to link libwebkit2gtkinjectedbundle.so on OSX
- https://bugs.webkit.org/show_bug.cgi?id=148606 [GTK] Build GL texture mapper only if USE_TEXTURE_MAPPER_GL
- https://bugs.webkit.org/show_bug.cgi?id=148607 [GTK] InstallMissingMediaPluginsPermissionRequest not defined when building without GStreamer
http://trac.webkit.org/changeset/190615 [GTK] ENABLE_OPENGL=OFF builds still include GL-specific fileshttp://trac.webkit.org/changeset/188973 [GTK] Disable ACCELERATED_2D_CANVAS by default
Proposed merges for 2.9.92
https://bugs.webkit.org/show_bug.cgi?id=149064 [GTK] Web Process crash recovery no longer workshttp://trac.webkit.org/changeset/189170 [Freetype] FontCache::strengthOfFirstAlias leaks an FcPatternhttp://trac.webkit.org/changeset/189133 JavaScriptCore fails to build using GCC 5http://trac.webkit.org/changeset/189526 Crash when WebCore::SQLiteFileSystem::openDatabase is called from multiple threadshttp://trac.webkit.org/changeset/189566 [GTK] Volume bar is broken
Translations:
http://trac.webkit.org/changeset/189661 [GTK] [l10n] Updated Turkish translation of WebKitGTK+http://trac.webkit.org/changeset/189663 [l10n] Updated Polish translation of WebKitGTK+http://trac.webkit.org/changeset/189664 [l10n] Updated Bulgarian translationhttp://trac.webkit.org/changeset/189665 Webkit Tamil translations updatedhttp://trac.webkit.org/changeset/189666 Updated Slovenian translationhttp://trac.webkit.org/changeset/189667 Updated Spanish translationhttp://trac.webkit.org/changeset/189673 Webkit Gujarati Translations
Proposed merges for 2.9.91
http://trac.webkit.org/changeset/188902 Clear cairo-gl surface for initialization
Changes on track
Previous versions
For changes in older stable branches see: 2.8.x
Useful commands
To get a wiki-formated list of commits that just got merged:
$ git log --pretty=oneline <commit>.. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\), * ~~[\2] ''\1''~~,"
How to add a webkit-2.10 branch to existing git-svn clone
If you have already cloned git://git.webkit.org/WebKit.git, it only contains a git-svn clone of the svn trunk. To add webkit-2.10 branch to there, add a new remote to .git/config:
[svn-remote "webkit-2.10"] url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.10 fetch = :refs/remotes/git-svn-webkit-2.10
and run the following commands:
git svn fetch webkit-2.10 -r 188381 git branch webkit-2.10 git-svn-webkit-2.10 git checkout webkit-2.10 git svn rebase