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


Ignore:
Timestamp:
Sep 1, 2021 2:30:00 AM (3 years ago)
Author:
Carlos Garcia Campos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitGTK/2.34.x

    v1 v1  
     1[[PageOutline]]
     2
     3
     4= Preparing for 2.34.0 =
     5
     6WebKitGTK and WPE '''2.34.0''' will be the next release in the stable series (following  [wiki:WebKitGTK/2.32.x 2.32.x]). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at r281844 (01/09/2021).
     7
     8When 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.)
     9
     10To get the stable branch code, simply check out
     11http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.32
     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.33.91 ==
     16
     17== Changes on track ==
     18   
     19= Previous versions =
     20For changes in older stable branches see: [wiki:WebKitGTK/2.32.x 2.32.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.34 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.34 branch to there, add a new remote to .git/config:
     33{{{
     34[svn-remote "webkit-2.34"]
     35    url = https://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.34
     36    fetch = :refs/remotes/git-svn-webkit-2.34
     37}}}
     38
     39and run the following commands:
     40{{{
     41git svn fetch webkit-2.34 -r 281844
     42git branch webkit-2.34 git-svn-webkit-2.34
     43git checkout webkit-2.34
     44git svn rebase
     45}}}