Let's say I've made a change to Chrome (https://chromium.googlesource.com/chromium/src.git) and I'd like to know the first canary/dev release that contained that change. How do I figure that out?
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
Those seem to be version → commit, and not commit → version which is what I'm looking for. So if I wanted to figure out when my change (de701ab) first landed in a dev channel how do I use that site?
Those seem to be version → commit, and not commit → version which is what I'm looking for. So if I wanted to figure out when my change (de701ab) first landed in a dev channel how do I use that site?1. Given a commit hash, visit crrev.com/de701ab.2. Click on the "tree" link, this will bring you to https://chromium.googlesource.com/chromium/src/+/de701ab/.3. Click on the "chrome" directory.4. Click on the "VERSION" file: https://chromium.googlesource.com/chromium/src/+/de701ab/chrome/VERSIONThis file shows the version when the patch was NOT applied yet.
MAJOR=41
MINOR=0
BUILD=2251
PATCH=0When a new version is released, the BUILD version is bumped. So you will find your patch in releases starting at 41.0.2252.0.
On Wed, Jan 7, 2015 at 2:03 PM, Rob Wu <r...@robwu.nl> wrote:Those seem to be version → commit, and not commit → version which is what I'm looking for. So if I wanted to figure out when my change (de701ab) first landed in a dev channel how do I use that site?1. Given a commit hash, visit crrev.com/de701ab.2. Click on the "tree" link, this will bring you to https://chromium.googlesource.com/chromium/src/+/de701ab/.3. Click on the "chrome" directory.4. Click on the "VERSION" file: https://chromium.googlesource.com/chromium/src/+/de701ab/chrome/VERSIONThis file shows the version when the patch was NOT applied yet.
MAJOR=41
MINOR=0
BUILD=2251
PATCH=0When a new version is released, the BUILD version is bumped. So you will find your patch in releases starting at 41.0.2252.0.Actually, the patch is in 2251 and later. The VERSION file is bumped after the release branch is cut, so the chrome/VERSION file at the time of your commit is a good indicator of the first release that should include your commit (modulo any problems cutting that release, reverts on the branch, etc.).