Thunderbird/Release Driving/Rapid Release Activities/Compatibility Bump: Difference between revisions

no edit summary
No edit summary
Line 19: Line 19:
** If this hasn't been merged to comm-beta yet, then the latest tag can be "default"
** If this hasn't been merged to comm-beta yet, then the latest tag can be "default"
** The previous tag will be AURORA_<version - 1>_END, e.g. in the example "AURORA_10_END"
** The previous tag will be AURORA_<version - 1>_END, e.g. in the example "AURORA_10_END"
* Mercurial is only so-so at ignoring whitespace changes. You may want to follow the instructions in the [https://developer.mozilla.org/en/Mercurial_FAQ#How_do_I.C2.A0get_a_diff_-w.3F Mozilla Mercurial guide]
and replace "hg diff -w" in the instructions below.


=== Collecting the data ===
=== Collecting the data ===
Line 26: Line 28:
==== idl/xpcom changes ====
==== idl/xpcom changes ====


  $ hg diff --exclude 're:.*\/test\/.*' --exclude 'suite' --exclude 'calendar' -r AURORA_10_END -r default --include 're:.*\.idl$'
  $ hg diff -w --exclude 're:.*\/test\/.*' --exclude 'suite' --exclude 'calendar' -r AURORA_10_END -r default --include 're:.*\.idl$'


(you can pipe to less or a file if you want).
(you can pipe to less or a file if you want).
Line 49: Line 51:
==== Javascript changes ====
==== Javascript changes ====


  $ hg diff --exclude 're:.*\/test\/.*' --exclude 'suite' --exclude 'calendar' -r AURORA_10_END -r default --include 're:.*\.js$'
  $ hg diff -w --exclude 're:.*\/test\/.*' --exclude 'suite' --exclude 'calendar' -r AURORA_10_END -r default --include 're:.*\.js$'


What to look for:
What to look for:
Line 67: Line 69:
==== Locale Files ====
==== Locale Files ====


  $ hg diff --exclude 're:.*\/test\/.*' --exclude 'suite' --exclude 'calendar' -r AURORA_10_END \
  $ hg diff -w --exclude 're:.*\/test\/.*' --exclude 'suite' --exclude 'calendar' -r AURORA_10_END -r default --include 're:.*\.dtd$'
  -r default --include 're:.*\.dtd$'
  $ hg diff -w --exclude 're:.*\/test\/.*' --exclude 'suite' --exclude 'calendar' -r AURORA_10_END -r default --include 're:.*\.properties$'
  $ hg diff --exclude 're:.*\/test\/.*' --exclude 'suite' --exclude 'calendar' -r AURORA_10_END \
  -r default --include 're:.*\.properties$'


What to look for:
What to look for:
15

edits