Hello community,

here is the log from the commit of package mercurial for openSUSE:Factory 
checked in at 2013-06-05 13:30:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mercurial (Old)
 and      /work/SRC/openSUSE:Factory/.mercurial.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mercurial"

Changes:
--------
--- /work/SRC/openSUSE:Factory/mercurial/mercurial.changes      2013-04-07 
14:23:33.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.mercurial.new/mercurial.changes 2013-06-05 
13:30:09.000000000 +0200
@@ -1,0 +2,173 @@
+Tue May 21 23:50:07 UTC 2013 - [email protected]
+
+- update to version 2.6.1 (2013-05-14)
+    * convert
+        fix bug of wrong CVS path parsing without port number (issue3678)
+    * help/config
+        note 64-bit Windows registry key used with 32-bit Python
+    * hfs+
+        rewrite percent-escaper (issue3918)
+    * hgignore
+        fix regression with hgignore directory matches (issue3921)
+    * highlight
+        fix page layout with empty first and last lines
+    * largefiles
+        check existence of the file with case awareness of the filesystem
+        check unknown files with case awareness of the filesystem
+    * pathencode
+        grow buffers to increase safety margin
+    * revert
+        ensure that copies and renames are honored (issue3920)
+    * subrepo
+        open files in 'rb' mode to read exact data in (issue3926)
+    * windows
+        check target type before actual unlinking to follow POSIX semantics 
+
+- update to 2.6 (2013-05-01)
+    * addremove
+        improve performance
+    * amend
+        support amending merge changesets (issue3778)
+    * ancestor
+        a new algorithm that is faster for nodes near tip
+    * annotate
+        increase refcount of each revision correctly (issue3841)
+    * applyupdates
+        assign variable before we try to use it (issue3855)
+    * archive
+        raise error.Abort if the file pattern matches no files
+    * bash_completion
+        allow remove to complete normal files
+    * blackbox
+        new extension
+    * bookmarks
+        don't allow integers as bookmark/branch/tag names
+        allow (re-)activating a bookmark on the current changeset
+        allow moving a bookmark forward to a descendant
+        moving the active bookmark deactivates it
+        fix bug that activated a bookmark even with -r passed
+        resolve divergent bookmark when moving across a branch
+        resolve divergent bookmarks when moving active bookmark forward
+    * commit
+        allow closing "non-head" changesets
+        show active bookmark in commit editor helper text
+    * config
+        discard "%unset" values defined in the other files read in previously
+    * convert/git
+        catch errors from modern git-ls-remote (issue3428)
+    * convert
+        add closesort algorithm to mercurial sources
+    * dates
+        support 'today' and 'yesterday' in parsedate (issue3764)
+    * destroyed
+        invalidate phraserevs cache in all case (issue3858)
+    * diff
+        fix binary file removals in git mode
+    * dirstate
+        performance improvements
+    * dispatch
+        exit with status 1 for an InterventionRequired exception (BC)
+        print 'abort:' when a pre-command hook fails (BC)
+    * export
+        clobber files with -o (BC) (issue3652)
+        export working directory parent by default
+        show 'Date' header in a format that also is readable for humans
+    * extensions
+        obsolete and remove interhg extension
+    * filesets
+        add eol predicate
+    * grep
+        use re2 if possible
+    * hgk
+        add support for phases
+        don't use fixed format for dates
+        update backgroud colour when Ttk is available
+    * hgweb
+        generate HTML documentation
+        teach archive how to download a specific directory or file
+    * histedit
+        allow "-" as a command file
+        handle multiple spaces between action and hash (issue3893)
+        make "hg histedit" sensitive to branch in URL
+        properly handle --continue on empty fold
+        support editing of the first commit (issue3767)
+    * httppeer
+        avoid large dumps when we don't see an hgweb repo
+    * icasefs
+        rewrite case-folding collision detection (issue3452)
+    * import
+        don't rollback on failed import --exact (issue3616)
+    * largefiles
+        don't cache largefiles for pulled heads by default
+        improve reuse of HTTP connections
+        introduce lfpull command for pulling missing largefiles
+        introduce pull --lfrev option
+        introduce pulled() revset expression for use in --lfrev
+        quiet (and document) undefined name errors (issue3886)
+        stat all largefiles in one batch before downloading
+        use repo.wwrite for writing standins (issue3909)
+    * log
+        fix behavior with empty repositories (issue3497)
+    * merge
+        apply non-interactive working dir updates in parallel
+    * mergetools
+        avoid losing the merged version with meld
+        vimdiff issues a warning explaining how to abort
+    * mq
+        comply with filtering when injecting fake tags (issue3812)
+        do not inherit settings form base repo in mqrepo (Fixes issue2358)
+    * outgoing
+        fix possible filtering crash in outgoing (issue3814)
+    * pager
+        catch ctrl-c on exit (issue3834)
+    * date
+        understand "now" as a shortcut for the current time
+    * parsers
+        a C implementation of the new ancestors algorithm
+    * pull
+        list bookmarks before pulling changesets (issue3873)
+    * push
+        make locking of source optional (issue3684)
+    * rebase
+        check no-op before checking phase (issue3891)
+        fix --collapse when a file was added then removed
+    * record
+        abort on malformed patches instead of crashing
+    * revset
+        change ancestor to accept 0 or more arguments (issue3750)
+        don't abort when regex to tag() matches nothing (issue3850)
+    * sadclown
+        another test failure eluded bos
+    * scheme
+        don't crash on invalid URLs
+    * scmutil
+        rewrite dirs in C, use if available
+    * setup
+        make error message for missing Python headers more helpful
+    * smtp
+        use 465 as default port for SMTPS
+        verify the certificate of the SMTP server for STARTTLS/SMTPS
+    * sshpeer
+        store subprocess so it cleans up correctly
+    * sslutil
+        abort if peer certificate is not verified for secure use
+    * subrepo
+        clone of git sub-repository creates incorrect git branch (issue3870)
+        do not push mercurial subrepos whose store is clean
+        fix exception on revert when "all" option is omitted
+    * summary
+        make "incoming" information sensitive to branch in URL (issue3830)
+        make "outgoing" information sensitive to branch in URL (issue3829)
+        show active bookmark even if not at current changeset
+    * tags
+        update tag type only if tag node is updated (issue3911)
+    * templatekw
+        add default styles for hybrid types (issue3887)
+    * templater
+        add get() function to access dict element (e.g. extra)
+    * unionrepo
+        read-only operations on a union of two localrepos
+    * win32
+        use explicit path to "python.exe" only if it exists 
+
+-------------------------------------------------------------------

Old:
----
  mercurial-2.5.4.tar.gz

New:
----
  mercurial-2.6.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ mercurial.spec ++++++
--- /var/tmp/diff_new_pack.BzUL3O/_old  2013-06-05 13:30:10.000000000 +0200
+++ /var/tmp/diff_new_pack.BzUL3O/_new  2013-06-05 13:30:10.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           mercurial
-Version:        2.5.4
+Version:        2.6.1
 Release:        0
 Summary:        Scalable Distributed SCM
 License:        GPL-2.0+

++++++ mercurial-2.5.4.tar.gz -> mercurial-2.6.1.tar.gz ++++++
++++ 49958 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to