Differences between revisions 9 and 33 (spanning 24 versions)
Revision 9 as of 2006-07-19 19:23:32
Size: 4892
Comment:
Revision 33 as of 2008-06-01 21:26:30
Size: 5948
Editor: abuehl
Comment: how to produce changelog for 1.0.1 (is an FAQ on IRC)
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Be sure to read UpgradeNotes. Be sure to read [:UpgradeNotes]. See also [:RoadMap].
Line 5: Line 5:
== Version 0.9 == (see [:/Archive:archive] for older versions)
Line 7: Line 7:
'''DRAFT''' == Version 1.0.1 - 2008-05-22 ==
Line 9: Line 9:
These are the major changes between Mercurial 0.8.1 and 0.9: Bugfix release.
Line 11: Line 11:
 * The repository file format has been improved.
   * This has resulted in an average 40% reduction in disk space usage.
   * The new format (called RevlogNG) is now the default.
   * Mercurial works perfectly with both the old and new repository file formats. It can transfer changes transparently between repositories of either format.
   * To use the new repository format, simply use `hg clone --pull` to clone an existing repository.
   * '''Note''': Versions 0.8.1 and earlier of Mercurial cannot read RevlogNG repositories directly, but they can `clone`, `pull` from, and `push` to servers that are serving RevlogNG repositories.
 * Memory usage has been improved by over 50% for many common operations.
 * Substantial performance improvements on large repositories.
 * New commands:
   * `archive` - generate a directory tree snapshot, tarball, or zip file of a revision
 * Deprecated commands:
   * `addremove` - replaced by `add` and `remove --after`
   * `forget` - replaced by `revert`
   * `undo` - replaced by `rollback`
 * New extensions:
   * Bugzilla integration hook
   * Email notification hook
 * Nested repositories are now supported. Mercurial will not recurse into a subdirectory that contains a `.hg` directory. It is treated as a separate repository.
 * The standalone web server, `hg serve`, is now threaded, so it can talk to multiple clients at a time.
 * The web server can now display a "message of the day".
 * Support added for hooks written in Python.
 * Many improvements and clarifications to built-in help.
  No changelog has been manually compiled yet. For the list of changes right from the Mercurial repo itself do[[BR]]
  {{{hg clone http://selenic.com/repo/hg-stable; cd hg-stable; hg log -r 1.0:1.0.1}}}
Line 34: Line 14:
== Version 0.8.1 == == Version 1.0 - 2008-03-24 ==
Line 36: Line 16:
Released [http://www.selenic.com/pipermail/mercurial/2006-April/007534.html 2006-04-07]. General:
 * greatly improved [:MergeToolConfiguration:merge tool configuration], see "hgrc.5.txt" for details
 * improved copy/rename handling in diffs, status, and merge
 * files in .hg inherit permissions from .hg/store
 * infer --repository when possible, so commands may be run from anywhere.
 * easy-installable
 * new "droplet" logo
Line 38: Line 24:
 * New extensions:
  * `mq` (manage a queue of patches, like `quilt` only better)
  * `email` (send changes as series of email patches)
 * New command: `merge` (replaces `update -m`)
 * Improved commands:
  * `log` (`--limit` option added)
  * `pull` and `push` (`-r` works on specific revisions)
  * `revert` (rewritten, much better)
 * Comprehensive hook support
 * Output templating added, supporting e.g. GNU changelog style
 * Windows, Mac OS X: prebuilt binary packages, better support
 * Many reliability, performance, and memory usage improvements
Commands:
 * archive: disable ".hg_archival.txt" file addition with "ui.archivemeta"
 * bisect: now built-in with greatly improved performance and usability
 * bundle: new --all option to bundle the whole repository more easily.
 * cat: apply decode filters with --decode
 * clone: can clone from a full-history bundle
 * commit: warn when creating a new head
 * debugancestor: index argument is now optional
 * diff: set the number of context line to show with -U/--unified
 * grep: display matched revisions commit date with --date
 * import: new --no-commit and --user options
 * incoming/outgoing: add --limit option
 * log: use -b/--only-branch to show revisions of a single branch
 * remove: improve handling for --after
 * revert: major speedup
 * serve: prefix the served path with --prefix (also in [web] section)
 * status: unknown files are skipped by --quiet
 * tag: allow multiple tags to be added or removed
 * tags: --verbose flags local tags
 * update: switch between named branches without -C
Line 51: Line 45:
== Version 0.8 == Extensions:
 * churn: promoted to an official extension (previously in contrib)
 * color: new extension coloring "status" and "qseries" command outputs
 * convert:
   * allow synthetic history to be spliced in with --splicemap
   * support GNU Arch and Monotone sources
   * svn: allow shallow conversions of single branches with convert.svn.startrev option.
   * svn: make trunk/branches/tags layout detection more flexible by allowing either of them to be skipped.
   * svn: preliminary support as a conversion target
 * hgk: configuration file changed from .gitk to .hgk
 * highlight: new extension enabling syntax highlighting in hgweb file view (requires pygments)
 * inotify: new extension using Linux 2.6 inotify API for instant status checking
 * keyword: new extension for filewise RCS-keyword expansion in working directory
 * mq: new --currentdate, --date, --currentuser, and --user options
 * record: add "qrecord" command when used with mq
 * win32mbcs: new extension dealing with problematic MBCS behavior on Windows
Line 53: Line 62:
Major changes from 0.7 to 0.8: Web interface:
 * improved WSGI integration and compatibility
 * follow symlinks in hgwebdir collections
 * show branches in most of gitweb templates
 * add line anchors to annotate, changeset, diff and file views
 * support web.baseurl in hgwebdir, overriding SCRIPT_NAME
Line 55: Line 69:
{{{
 faster status, diff, and commit
 reduced memory usage for push and pull
 improved extension API
 new bisect, gpg, hgk, and win32text extensions
 short URLs, binary file handling, and optional gitweb skin for hgweb
 numerous new command options including log --keyword and pull --rev
 improved hooks and file filtering
}}}
Hooks:
 * standard hook to reject text files with CRLF in win32text extension
 * redirect stdout to stderr for ssh and http servers
Line 65: Line 73:
== Version 0.7 == Windows support:
 * "hg" script output set to binary mode for redirecting diff, export, annotate, etc.
 * also search for .hgrc if mercurial.ini cannot be found
 * major speedup of "clone --pull"
Line 67: Line 78:
Changes from 0.6 to 0.7:
Line 69: Line 79:
{{{
core
 greatly improved merge logic
 improved copy/rename support (still experimental)
 automatic binary file handling
 generic file filtering support
 support for user-defined hooks (aka triggers)
 support for local tags and finding branches with tags
 numerous performance improvements
command line
 fewer long, confusing hashes to deal with
 new commands: clone, revert, incoming/outgoing, bundle/unbundle, grep, rename
 more powerful path handling with most commands
 improved push and pull support
 support for plug-in extensions
 much improved exception handling and debugging support
 many new command options and settings
web interface
 more conformant and compatible HTML output
 built-in RSS feeds
 fast multiple keyword search
 easy to set up multiple repository interface
 configurable support for downloading tarballs and zip files
 improved configurability
 IPv6 support
documentation
 improved built-in help and man pages
 a greatly expanded wiki
 tutorials in multiple languages
portability
 full support for Windows, including hardlinking and file filtering
 should easily compile and install on any modern UNIX
 binary packages available for many systems
extras
 powerful bash completion support
 Emacs integration
 updated hgk
and more
 expanded test suite
 numerous bug fixes and cleanups
}}}
== Version 0.9.5 - 2007-10-19 ==
Line 111: Line 81:
Changes from 0.6c to 0.7:
{{{
core
 improved merge logic
 improved copy/rename support (still experimental)
 automatic binary file handling
 generic file filtering support
 various performance improvements
command line
 new bundle/unbundle commands for exchanging native updates
 more natural support for remove, copy, and rename
 faster, more powerful log command
 new grep command for searching entire history
 support for plug-in extensions
 improved exception handling and debugging facilities
hgweb
 optional downloading of tarballs and zip files
Windows support
 hardlinking support
 newline conversion through file filtering
contrib
 updated hgk
}}}
New features:
 * Handle symlinks on systems without symlink support
 * hg archive supports symlinks
 * Display executable/symlink bit with "hg manifest -v" (see UpgradeNotes)
 * Improved hg verify diagostics
 * Faster revlog handling
 * Faster handling of large directories
 * Greatly improved handling of large files
 * Atom syndication support in hgweb
 * Improved test suite with parallel execution

Fixes:
 * Fixes for some file copy and rename corner cases
 * Allow moving newly-added files before commit
 * Improve hg diff whitespace handling
 * Disallow fast-forward merge with an ancestor
 * Fix adding untracked files on directory renames
 * Fix hg archive %r format specifier
 * Fix re: and glob: patterns in .hgignore
 * Improve hg executable path resolution
 * Many options and hgrc parsing improvements
 * Better handling of VFAT filesystems on Linux
 * Fix tgz archival on Windows
 * Fix hg serve on Windows requiring pywin32 modules
 * Fix --profile under Windows

New extensions:
 * alias - allow user-defined command aliases
 * children - show the children of the given or working dir revision
 * imerge - incremental interactive merging
 * interhg - modify changelog text as in InterWiki
 * record - darcs-style interactive change selection during commit

New extension features:
 * convert
   * Now supports Subversion, Darcs and Mercurial as source SCMs
   * Use clone's behaviour for the default destination name
   * Force encoding to UTF-8 for converted repository
   * Support new-style .cvspass file format
   * Filter the files and directories to import
   * Remap paths to new locations during import
 * hgk
   * Fix hgk stopping because of untrusted repository warnings
   * Handle filenames with spaces
   * Improved documentation
 * mq
   * Autodetect --git patches on qrefresh

== Version 0.9.4 - 2007-06-25 ==

New features:
 * support for symlinks
 * improved tag handling
 * improved merge handling of file and directory renames
 * improved named branch usability
 * numerous improvements to commands
 * generic pre- and post-command hooks
 * improved Windows support
 * basic BeOS and OpenVMS support
 * numerous bug fixes

New extensions and contributions:
 * extensions can now be specified in .hg/hgrc
 * new convert extension with CVS support
 * new graphlog extension
 * improved patchbomb extension
 * example FastCGI script

Be sure to read [:UpgradeNotes]. See also [:RoadMap].

TableOfContents()

(see [:/Archive:archive] for older versions)

Version 1.0.1 - 2008-05-22

Bugfix release.

  • No changelog has been manually compiled yet. For the list of changes right from the Mercurial repo itself doBR hg clone http://selenic.com/repo/hg-stable; cd hg-stable; hg log -r 1.0:1.0.1

Version 1.0 - 2008-03-24

General:

  • greatly improved [:MergeToolConfiguration:merge tool configuration], see "hgrc.5.txt" for details

  • improved copy/rename handling in diffs, status, and merge
  • files in .hg inherit permissions from .hg/store
  • infer --repository when possible, so commands may be run from anywhere.
  • easy-installable
  • new "droplet" logo

Commands:

  • archive: disable ".hg_archival.txt" file addition with "ui.archivemeta"
  • bisect: now built-in with greatly improved performance and usability
  • bundle: new --all option to bundle the whole repository more easily.
  • cat: apply decode filters with --decode
  • clone: can clone from a full-history bundle
  • commit: warn when creating a new head
  • debugancestor: index argument is now optional
  • diff: set the number of context line to show with -U/--unified
  • grep: display matched revisions commit date with --date
  • import: new --no-commit and --user options
  • incoming/outgoing: add --limit option
  • log: use -b/--only-branch to show revisions of a single branch
  • remove: improve handling for --after
  • revert: major speedup
  • serve: prefix the served path with --prefix (also in [web] section)
  • status: unknown files are skipped by --quiet
  • tag: allow multiple tags to be added or removed
  • tags: --verbose flags local tags
  • update: switch between named branches without -C

Extensions:

  • churn: promoted to an official extension (previously in contrib)
  • color: new extension coloring "status" and "qseries" command outputs
  • convert:
    • allow synthetic history to be spliced in with --splicemap
    • support GNU Arch and Monotone sources
    • svn: allow shallow conversions of single branches with convert.svn.startrev option.
    • svn: make trunk/branches/tags layout detection more flexible by allowing either of them to be skipped.
    • svn: preliminary support as a conversion target
  • hgk: configuration file changed from .gitk to .hgk
  • highlight: new extension enabling syntax highlighting in hgweb file view (requires pygments)
  • inotify: new extension using Linux 2.6 inotify API for instant status checking
  • keyword: new extension for filewise RCS-keyword expansion in working directory
  • mq: new --currentdate, --date, --currentuser, and --user options
  • record: add "qrecord" command when used with mq
  • win32mbcs: new extension dealing with problematic MBCS behavior on Windows

Web interface:

  • improved WSGI integration and compatibility
  • follow symlinks in hgwebdir collections
  • show branches in most of gitweb templates
  • add line anchors to annotate, changeset, diff and file views
  • support web.baseurl in hgwebdir, overriding SCRIPT_NAME

Hooks:

  • standard hook to reject text files with CRLF in win32text extension
  • redirect stdout to stderr for ssh and http servers

Windows support:

  • "hg" script output set to binary mode for redirecting diff, export, annotate, etc.
  • also search for .hgrc if mercurial.ini cannot be found
  • major speedup of "clone --pull"

Version 0.9.5 - 2007-10-19

New features:

  • Handle symlinks on systems without symlink support
  • hg archive supports symlinks
  • Display executable/symlink bit with "hg manifest -v" (see UpgradeNotes)

  • Improved hg verify diagostics
  • Faster revlog handling
  • Faster handling of large directories
  • Greatly improved handling of large files
  • Atom syndication support in hgweb
  • Improved test suite with parallel execution

Fixes:

  • Fixes for some file copy and rename corner cases
  • Allow moving newly-added files before commit
  • Improve hg diff whitespace handling
  • Disallow fast-forward merge with an ancestor
  • Fix adding untracked files on directory renames
  • Fix hg archive %r format specifier
  • Fix re: and glob: patterns in .hgignore
  • Improve hg executable path resolution
  • Many options and hgrc parsing improvements
  • Better handling of VFAT filesystems on Linux
  • Fix tgz archival on Windows
  • Fix hg serve on Windows requiring pywin32 modules
  • Fix --profile under Windows

New extensions:

  • alias - allow user-defined command aliases
  • children - show the children of the given or working dir revision
  • imerge - incremental interactive merging
  • interhg - modify changelog text as in InterWiki

  • record - darcs-style interactive change selection during commit

New extension features:

  • convert
    • Now supports Subversion, Darcs and Mercurial as source SCMs
    • Use clone's behaviour for the default destination name
    • Force encoding to UTF-8 for converted repository
    • Support new-style .cvspass file format
    • Filter the files and directories to import
    • Remap paths to new locations during import
  • hgk
    • Fix hgk stopping because of untrusted repository warnings
    • Handle filenames with spaces
    • Improved documentation
  • mq
    • Autodetect --git patches on qrefresh

Version 0.9.4 - 2007-06-25

New features:

  • support for symlinks
  • improved tag handling
  • improved merge handling of file and directory renames
  • improved named branch usability
  • numerous improvements to commands
  • generic pre- and post-command hooks
  • improved Windows support
  • basic BeOS and OpenVMS support
  • numerous bug fixes

New extensions and contributions:

  • extensions can now be specified in .hg/hgrc
  • new convert extension with CVS support
  • new graphlog extension
  • improved patchbomb extension
  • example FastCGI script

WhatsNew (last edited 2025-03-17 21:45:49 by Pierre-YvesDavid)