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


Ignore:
Timestamp:
Aug 16, 2018 3:44:16 AM (6 years ago)
Author:
Carlos Garcia Campos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitGTK/2.22.x

    v1 v1  
     1[[PageOutline]]
     2
     3= Preparing for 2.22.0 =
     4
     5WebkitGTK+ '''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).
     6
     7When 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.)
     8
     9To get the stable branch code, simply check out
     10http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.22
     11
     12Over the next few weeks we'll be merging important fixes into the
     13branch, so be sure to stay up to date. Thanks for your help!
     14
     15== Proposed merges for 2.21.92 ==
     16
     17== Changes on track ==
     18   
     19= Previous versions =
     20For changes in older stable branches see: [wiki:WebKitGTK/2.20.x 2.20.x]
     21
     22= Useful commands =
     23
     24To get a wiki-formated list of commits that just got merged:
     25
     26{{{
     27 $ git log --pretty=oneline <commit>.. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\),  * ~~[\2] ''\1''~~,"
     28}}}
     29
     30= How to add a webkit-2.22 branch to existing git-svn clone =
     31
     32If 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:
     33{{{
     34[svn-remote "webkit-2.22"]
     35    url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.22
     36    fetch = :refs/remotes/git-svn-webkit-2.22
     37}}}
     38
     39and run the following commands:
     40{{{
     41git svn fetch webkit-2.22 -r 234917
     42git branch webkit-2.22 git-svn-webkit-2.22
     43git checkout webkit-2.22
     44git svn rebase
     45}}}