Changes between Initial Version and Version 1 of WebKitGTK/2.26.x


Ignore:
Timestamp:
Aug 28, 2019, 4:33:18 AM (6 years ago)
Author:
Carlos Garcia Campos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitGTK/2.26.x

    v1 v1  
     1[[PageOutline]]
     2
     3= Preparing for 2.26.0 =
     4
     5WebKitGTK and WPE '''2.26.0''' will be the next release in the stable series (following  [wiki:WebKitGTK/2.24.x 2.24.x]). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at r 249195 (28/08/19).
     6
     7When filing bugs (http://bugs.webkit.org) against stable release, please prefix them with "[GTK] [Stable]" (or "[WPE] [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.)
     8
     9To get the stable branch code, simply check out
     10http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.26
     11Over the next few weeks we'll be merging important fixes into the
     12branch, so be sure to stay up to date. Thanks for your help!
     13
     14== Proposed merges for 2.25.92 ==
     15 
     16
     17
     18== Changes on track ==
     19   
     20= Previous versions =
     21For changes in older stable branches see: [wiki:WebKitGTK/2.24.x 2.24.x]
     22
     23= Useful commands =
     24
     25To get a wiki-formated list of commits that just got merged:
     26
     27{{{
     28 $ git log --pretty=oneline <commit>.. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\),  * ~~[\2] ''\1''~~,"
     29}}}
     30
     31= How to add a webkit-2.26 branch to existing git-svn clone =
     32
     33If 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.26 branch to there, add a new remote to .git/config:
     34{{{
     35[svn-remote "webkit-2.26"]
     36    url = https://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.26
     37    fetch = :refs/remotes/git-svn-webkit-2.26
     38}}}
     39
     40and run the following commands:
     41{{{
     42git svn fetch webkit-2.26 -r 249195
     43git branch webkit-2.26 git-svn-webkit-2.26
     44git checkout webkit-2.26
     45git svn rebase
     46}}}