[[PageOutline]] = Preparing for 2.18.0 = WebkitGtk+ '''2.18.0''' will be the next release in the stable series (following [wiki:WebKitGTK/2.16.x 2.16.x]). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at r220448(09/08/17). 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.18 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.18.1 == * https://trac.webkit.org/changeset/221989 ''[GTK] Fails to build because 'Float32Array' has not been declared in AudioContext.h'' * https://trac.webkit.org/changeset/220461 ''[GStreamer][MSE] Add missing lock around getStreamByTrackId'' * https://trac.webkit.org/changeset/220861 ''[GStreamer] GstStructure shouldn't be handled through GRefPtr'' * https://trac.webkit.org/changeset/221372 ''[WPE] Enable MEMORY_SAMPLER.'' * https://trac.webkit.org/changeset/221075 and http://trac.webkit.org/changeset/221260 ''[WPE] Some event handlers not working.'' * https://trac.webkit.org/changeset/221681 ''[WPE][CMake] Fix path to the WebKitApplicationInfo.h header.'' * https://trac.webkit.org/changeset/221734 ''[WPE][CMake] Add "dist" and "distcheck" targets'' * https://trac.webkit.org/changeset/220585 ''[WPE] Build failure with Clang 4.0.1: no matching conversion for functional-style cast from 'pointer' (aka 'unsigned short *') to 'WTF::String''' * https://trac.webkit.org/changeset/220326 and https://trac.webkit.org/changeset/220331 ''[GTK][WPE] CFLAGS from pkg-config for (E)GL are not passed to WebKit'' * https://trac.webkit.org/changeset/220334 ''[WPE][CMake] Only pass pkg-config CFLAGS from (E)GL when not using libepoxy.'' * https://trac.webkit.org/changeset/222130 ''[GTK] Build failure with enchant-2.1.1'' * https://trac.webkit.org/changeset/222245 ''REGRESSION (r215613): Incorrect corners clipping with border-radius'' * https://trac.webkit.org/changeset/222264 ''[GTK] Completely garbled display in GMail'' == Proposed merges for 2.18.0 == * ~~http://trac.webkit.org/changeset/221588 ''Unreviewed build fix for Clang with libc++''~~ * ~~http://trac.webkit.org/changeset/221677 ''Missing break in URLParser''~~ * ~~http://trac.webkit.org/changeset/221742 ''[ARM] Building FELightningNEON.cpp fails due to missing {Point,Spot}LightSource declarations''~~ == Proposed merges for 2.17.92 == * ~~https://trac.webkit.org/changeset/221572 ''[GTK] Libgcrypt warning: missing initialization - please fix the application''~~ * ~~https://trac.webkit.org/changeset/221132 ''Geoclue2 based backend should provide the right desktop ID''~~ * ~~https://trac.webkit.org/changeset/221183 ''[GTK] Completely garbled display in Transifex in accelerated compositing mode''~~ * ~~https://trac.webkit.org/changeset/221008 ''GLContext: zero-initialize the GLContext pointer in ThreadGlobalGLContext ​https://bugs.webkit.org/show_bug.cgi?id=175819''~~ == Proposed merges for 2.17.91 == * ~~http://trac.webkit.org/changeset/220746/webkit ''Unreviewed, rolling out r219504.''~~ * ~~http://trac.webkit.org/changeset/220797/webkit ''[HarfBuzz] Decomposed Vietnamese characters are rendered incorrectly''~~ * ~~http://trac.webkit.org/changeset/220860/webkit ''[WPE][GTK] Ensure proper casting of data in gvariants''~~ == Changes on track == = Previous versions = For changes in older stable branches see: [wiki:WebKitGTK/2.16.x 2.16.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.18 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.18 branch to there, add a new remote to .git/config: {{{ [svn-remote "webkit-2.18"] url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.18 fetch = :refs/remotes/git-svn-webkit-2.18 }}} and run the following commands: {{{ git svn fetch webkit-2.18 -r 220448 git branch webkit-2.18 git-svn-webkit-2.18 git checkout webkit-2.18 git svn rebase }}}