~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Aaron Bentley
  • Date: 2008-07-14 16:16:48 UTC
  • mfrom: (3537 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3538.
  • Revision ID: aaron@aaronbentley.com-20080714161648-hh0bz2f22cjdftwe
Merge with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
  FEATURES:
12
12
 
 
13
    * New ``pre_change_branch_tip`` hook that is called before the
 
14
      branch tip is moved, while the branch is write-locked.  See the User
 
15
      Reference for signature details.  (Andrew Bennetts)
 
16
 
 
17
    * Rule-based preferences can now be defined for selected files in
 
18
      selected branches, allowing commands and plugins to provide
 
19
      custom behaviour for files matching defined patterns.
 
20
      See ``Rule-based preferences`` (part of ``Configuring Bazaar``)
 
21
      in the User Guide and ``bzr help rules`` for more information.
 
22
      (Ian Clatworthy)
 
23
 
 
24
    * Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
 
25
 
13
26
    * Stacked branches are now supported. See ``bzr help branch`` and 
14
27
      ``bzr help push``. (Robert Collins)
15
28
 
16
 
    * Sites may suggest a branch to stack new branches on.  (Aaron Bentley)
 
29
  IMPROVEMENTS:
 
30
 
 
31
    * ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball 
 
32
      to stdout; also ``tar`` and ``tbz2``.
 
33
      (Martin Pool)
 
34
 
 
35
    * ``bzr send`` documents and better supports ``emacsclient`` (proper
 
36
      escaping of mail headers and handling of the MUA Mew).
 
37
      (Christophe Troestler)
 
38
 
 
39
    * Remembered locations can be specified by aliases, e.g. :parent, :public,
 
40
      :submit.  (Aaron Bentley)
 
41
 
 
42
    * The smart protocol now has improved support for setting branches'
 
43
      revision info directly.  This makes operations like push
 
44
      faster.  The new request method name is
 
45
      ``Branch.set_last_revision_ex``.  (Andrew Bennetts)
 
46
 
 
47
  BUG FIXES:
 
48
 
 
49
    * ``bzr log --long`` with a ghost in your mainline now handles that
 
50
      ghost properly. (John Arbash Meinel, #243536)
 
51
 
 
52
    * ``check`` handles the split-up .bzr layout correctly, so no longer
 
53
      requires a branch to be present.
 
54
      (Daniel Watkins, #64783)
 
55
 
 
56
    * Clearer message about how to set the PYTHONPATH if bzrlib can't be
 
57
      loaded. 
 
58
      (Martin Pool, #205230)
 
59
 
 
60
    * Errors about missing libraries are now shown without a traceback,
 
61
      and with a suggestion to install the library.  The full traceback is 
 
62
      still in ``.bzr.log`` and can be shown with ``-Derror``.
 
63
      (Martin Pool, #240161)
 
64
 
 
65
    * Handle urls such as ftp://user@host.com@www.host.com where the user
 
66
      name contains an @.
 
67
      (Neil Martinsen-Burrell, #228058)
 
68
 
 
69
    * ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
 
70
      ``unlock`` if there was an error in the original function. This helps
 
71
      most when there is a failure with a smart server action, since often the
 
72
      connection closes and we cannot unlock.
 
73
      (Andrew Bennetts, John Arbash Meinel, #125784)
 
74
 
 
75
    * Obsolete hidden command ``bzr fetch`` removed.
 
76
      (Martin Pool, #172870)
 
77
 
 
78
    * Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
 
79
      (John Arbash Meinel, #239933)
 
80
 
 
81
    * You can now compare file revisions in Windows diff programs from 
 
82
      Cygwin Bazaar.
 
83
      (Matt McClure, #209281)
 
84
 
 
85
    * revision_history now tolerates mainline ghosts for Branch format 6.
 
86
      (Aaron Bentley, #235055)
 
87
 
 
88
    * Set locale from environment for third party libs.
 
89
      (Martin von Gagern, #128496)
 
90
 
 
91
  DOCUMENTATION:
 
92
 
 
93
    * Updated developer documentation.
 
94
      (Martin Pool)
 
95
 
 
96
  TESTING:
 
97
 
 
98
   * ``-Dmemory`` will cause /proc/PID/status to be catted before bzr
 
99
     exits, allowing low-key analysis of peak memory use. (Robert Collins)
 
100
 
 
101
   * ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
 
102
     a tree with a ``branch`` attribute of the right format.  This was
 
103
     preventing some ``RemoteBranch`` tests from actually running with
 
104
     ``RemoteBranch`` instances.  (Andrew Bennetts)
 
105
 
 
106
  API CHANGES:
 
107
 
 
108
    * Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
 
109
      there are new attributes ``texts, inventories, revisions,
 
110
      signatures``, each of which is a ``VersionedFiles``.  See the
 
111
      Repository docstring for more details.
 
112
      (Robert Collins)
 
113
 
 
114
    * ``Branch.pull`` now accepts an ``_override_hook_target`` optional
 
115
      parameter.  If you have a subclass of ``Branch`` that overrides
 
116
      ``pull`` then you should add this parameter.  (Andrew Bennetts)
 
117
 
 
118
    * ``bzrlib.check.check()`` has been deprecated in favour of the more
 
119
      aptly-named ``bzrlib.check.check_branch()``.
 
120
      (Daniel Watkins)
 
121
 
 
122
    * ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
 
123
      These methods are bad APIs because they write directly to sys.stdout.
 
124
      bzrlib does not use them internally, and there are no direct tests
 
125
      for them. (Alexander Belchenko)
 
126
 
 
127
  INTERNALS:
 
128
 
 
129
    * ``cat`` command no longer uses ``Tree.print_file()`` internally.
 
130
      (Alexander Belchenko)
 
131
 
 
132
    * New class method ``BzrDir.open_containing_tree_branch_or_repository``
 
133
      which eases the discovery of the tree, the branch and the repository
 
134
      containing a given location.
 
135
      (Daniel Watkins)
 
136
 
 
137
    * New ``versionedfile.KeyMapper`` interface to abstract out the access to
 
138
      underlying .knit/.kndx etc files in repositories with partitioned
 
139
      storage. (Robert Collins)
 
140
 
 
141
    * Obsolete developer-use command ``weave-join`` has been removed.
 
142
      (Robert Collins)
 
143
 
 
144
    * ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
 
145
      to support new ``VersionedFiles`` layering.
 
146
      (Robert Collins)
 
147
 
 
148
 
 
149
bzr 1.6beta2 2008-06-10
 
150
-----------------------
 
151
 
 
152
This release contains further progress towards our 1.6 goals of shallow
 
153
repositories, and contains a fix for some user-affecting bugs in the
 
154
repository layer.  Building working trees during checkout and branch is
 
155
now faster.
17
156
 
18
157
  BUG FIXES:
19
158
 
22
161
      reading from the repository.)
23
162
      (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
24
163
 
 
164
    * ``bzr status`` was breaking if you merged the same revision twice.
 
165
      (John Arbash Meinel, #235407)
 
166
 
 
167
    * Fix infinite loop consuming 100% CPU when a connection is lost while
 
168
      reading a response body via the smart protocol v1 or v2.
 
169
      (Andrew Bennetts)
 
170
      
25
171
    * Inserting a bundle which changes the contents of a file with no trailing
26
172
      end of line, causing a knit snapshot in a 'knits' repository will no longer
27
173
      cause KnitCorrupt. (Robert Collins)
50
196
    * Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
51
197
      (Ian Clatworthy, Aaron Bentley)
52
198
 
53
 
  BUGFIXES:
54
 
 
55
 
    * ``bzr status`` was breaking if you merged the same revision twice.
56
 
      (John Arbash Meinel, #235407)
57
 
 
58
199
  DOCUMENTATION:
59
200
 
60
201
    * Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)