wiki:WebKitGTK/2.12.x

Version 38 (modified by jdiggs@igalia.com, 8 years ago) (diff)

Update a11y proposed merges to point to new bugs with branch-compatible patches provided

Preparing for 2.12.0

WebkitGtk+ 2.12.0 will be the next release in the stable series (following 2.10.x). We should merge not overly intrusive patches that improve stability or performance, fix build issues, etc. We branched at r 196806 (19/02/16).

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.12

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.12.4

  • https://bugs.webkit.org/show_bug.cgi?id=158107 [GTK][Stable]: Merge r201072 and r201216 (and some misc gardening of accessibility tests)
    This change brings us into better compliance with a couple of W3C specs and fixes several bugs in which the accessible name of objects was missing or broken. Because Orca doesn't always know when/if the accessible name is broken, having this fix is desirable.
    N.B. Stable-branch-compatible patch attached.
  • https://bugs.webkit.org/show_bug.cgi?id=158109 [GTK][Stable]: Merge r201087
    The reason the meter.html test was failing is due to lack of implementation. Also, as part of the fix, we are now exposing the aria-valuetext value which had not previously been exposed. Because aria-valuetext is used on a number of ARIA widget roles, and because meters should be accessible, this fix is desirable.
    N.B. Stable-branch-compatible patch attached.

Proposed merges for 2.12.3

Proposed merges for 2.12.2

Proposed merges for 2.12.1

Proposed merges for 2.11.92

Proposed merges for 2.11.91

Changes on track

Previous versions

For changes in older stable branches see: 2.10.x

Useful commands

To get a wiki-formated list of commits that just got merged:

 $ git log --pretty=oneline <commit>.. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\),  * ~~[\2] ''\1''~~,"

How to add a webkit-2.12 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.12 branch to there, add a new remote to .git/config:

[svn-remote "webkit-2.12"]
    url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.12
    fetch = :refs/remotes/git-svn-webkit-2.12

and run the following commands:

git svn fetch webkit-2.12 -r 196806
git branch webkit-2.12 git-svn-webkit-2.12
git checkout webkit-2.12
git svn rebase