#pragma section-numbers 2 = Upgrading Mercurial = Notes on upgrading Mercurial. <> == Introduction == Mercurial is designed to be painless to upgrade. This means: * existing [[Repository|repositories]] will continue to be usable * existing configuration will continue to work * existing web server setups will continue to work * existing usage patterns will continue to work * existing automation based on Mercurial's command-line interface will continue to work * new clients will interoperate with old servers * new servers will interoperate with old clients Any changes that break these rules will be listed in our [[UpgradeNotes|upgrade notes]] and will generally be very minor. There are two notable areas where you ''may'' encounter problems between ''major releases'' (ie 1.6 to 1.7): * multiple client versions on a shared disk * third-party or custom extensions and Python hooks == Multiple client versions on a shared disk == New clients, by default, will create new repositories with all current features enabled. Such repositories will interoperate normally with older clients when accessed via SSH or HTTP protocols. However, if multiple users are using different client versions on a shared disk (ie NFS or Windows share), old clients ''may'' report "requirement not supported" when trying to read directly from these repositories. To avoid this issue, there are three approaches: * only use old clients to create new shared repositories * use settings in the [[http://www.selenic.com/mercurial/hgrc.5.html#format|"format" section]] of '`hgrc`' to disable new repository features * manually downgrade new repositories to the old format === Upgrading and downgrading repository formats === To upgrade, simply use '`hg clone --pull`' with a new client. To downgrade, use one of the following: * For compatibility with hg < 1.7 (Nov 2010): '`hg clone --config format.dotencode=False --pull`' * For compatibility with hg < 1.1 (Dec 2008): '`hg clone --config format.usefncache=False --pull`' * For compatibility with hg < 0.9.4 (Jun 2007): '`hg clone --config format.usestore=False --pull`' == Third-party or custom extensions and Python hooks == Unlike Mercurial's command line interface, Mercurial's internal interfaces may change significantly between major releases. This may require upgrading any third-party extensions you are using. If you have custom extensions or hooks written in Python, you may need to modify them when upgrading to a new major release. See [[ApiChanges|API changes]] for details. == Release timing, support and obsolescence == New major releases are made four times per year, in February, May, August, and November, generally on the 1st of the month. Minor releases are made every month between major releases or more often as required. Because of our focus on painless backward-compatibility, we do not do continued maintenance on old releases. We encourage all users to upgrade to the latest major release when they encounter problems. == Testing unreleased features and bugfixes == Mercurial is continually subjected to a large suite of regression tests, so it is generally safe to test any version of Mercurial, including unreleased development versions. Bugfixes are generally committed to the "stable" branch of the [[DeveloperRepos|Mercurial repository]] and are generally included in the "nightly builds" found on our [[Download|downloads]] page. Features are developed in the "default" branch of the Mercurial repository and will show up in nightly builds two weeks before each major release during our feature freeze. == See also == * Our [[UpgradeNotes|upgrade notes]] list any possible compatibility issues * [[Download|Downloads]] for latest versions * Explanation of our [[FeatureLevels|feature levels]] * Our [[CompatibilityRules|compatibility rules]] for new features * Recent [[ApiChanges|API changes]] * Details on our [[TimeBasedReleasePlan|time-based release plan]] ---- CategoryProject