[[PageOutline]] = Preparing for 2.22.0 = WebkitGTK+ '''2.22.0''' will be the next release in the stable series (following [wiki:WebKitGTK/2.20.x 2.20.x]). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at r234917(16/08/18). 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.22 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.22.2 == * ~~https://trac.webkit.org/changeset/236258 ''[MSE] Use some tolerance when deciding whether a frame should be appended to the decode queue''~~ * ~~https://trac.webkit.org/changeset/236264 ''[GStreamer][MSE] Add a default sample duration''~~ * ~~https://trac.webkit.org/changeset/236275 ''[WPE] fails to build on ARM arches complaining about undefined reference to epoxy_eglMakeCurrent''~~ * https://trac.webkit.org/changeset/236309 ''[WPE] Built RPM of WPE webkit fails to install with "nothing provides libWPEToolingBackends.so()"'' * https://trac.webkit.org/changeset/236315 ''[ARM] Build broken on armv7hl after r235517'' * https://trac.webkit.org/changeset/236314 ''[MSE] Fix comparsion with uninitialized greatestDecodeDuration'' == Proposed merges for 2.22.1 == * ~~https://trac.webkit.org/changeset/235612 ''[WPE][GTK] Add more unused result warnings to JSC API''~~ * ~~https://trac.webkit.org/changeset/235740 ''[JSC] Build broken after r234975 on s390x, ppc64le, armv7hl''~~ * ~~https://trac.webkit.org/changeset/235933 ''Linking against libWPEWebKit-0.1.so is not posible when WPE is build with ENABLE_VIDEO=OFF and ENABLE_WEB_AUDIO=OFF''~~ * ~~https://trac.webkit.org/changeset/235906 ''WebFullScreenManager should compile when ENABLE(VIDEO) is off''~~ * ~~https://trac.webkit.org/changeset/235895 ''Add missing #if ENABLE(VIDEO) Page.cpp and Page.h''~~ == Proposed merges for 2.22.0 == * ~~https://trac.webkit.org/changeset/235373 ''[GTK][JSC] Add warn_unused_result attribute to some APIs''~~ * ~~https://trac.webkit.org/changeset/235499 ''[ConnectionUnix] Shrink sizeof AttachmentInfo by reordering members''~~ * ~~https://trac.webkit.org/changeset/235194 ''Don't use WTF_CPU_MIPS when building for mips64''~~ * ~~https://trac.webkit.org/changeset/235529 ''[GTK] Touchscreen pinch to zoom should scale the page like other platforms''~~ * ~~https://trac.webkit.org/changeset/235588 ''[WPE] 2.21.91 fails to build with ENABLE_MINIBROWSER''~~ == Proposed merges for 2.21.92 == *~~ https://trac.webkit.org/changeset/234926 ''[l10n] Updated Polish translation of WebKitGTK+ for 2.22''~~ * ~~https://trac.webkit.org/changeset/234982 ''[SOUP] Handle OAuth authentication after r234912''~~ * ~~https://trac.webkit.org/changeset/235080 ''[GTK] Sort inspector GResource manifest to ensure reproducible builds''~~ * ~~https://trac.webkit.org/changeset/235133 ''Increment NetworkCache::Storage::lastStableVersion after r233742''~~ == Changes on track == = Previous versions = For changes in older stable branches see: [wiki:WebKitGTK/2.20.x 2.20.x] = Useful commands = To get a wiki-formated list of commits that just got merged: {{{ $ git log --pretty=oneline .. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\), * ~~[\2] ''\1''~~," }}} = How to add a webkit-2.22 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.22 branch to there, add a new remote to .git/config: {{{ [svn-remote "webkit-2.22"] url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.22 fetch = :refs/remotes/git-svn-webkit-2.22 }}} and run the following commands: {{{ git svn fetch webkit-2.22 -r 234917 git branch webkit-2.22 git-svn-webkit-2.22 git checkout webkit-2.22 git svn rebase }}}