~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: mbp at sourcefrog
  • Date: 2005-04-06 03:38:35 UTC
  • Revision ID: mbp@sourcefrog.net-20050406033835-0a8142f2ed51db26f3a3681c
- Use a non-null file_id for the branch root directory.  At the moment
  this is fixed; in the future it should be stored in the directory
  and perhaps be randomized at each branch init.  It is not written
  out to the inventory at all as yet.

- Various branch code cleanups to support this.

- If an exception occurs, log traceback into .bzr.log and print a
  message saying it's there.

- New file-id-path command and more help.

- Some pychecker fixups.

- InventoryEntry constructor parameters now require an entry kind and
  a parent_id.

- Fix up cat command when reading a file from a previous revision.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr-0.0.5  NOT RELEASED YET
2
 
 
3
 
  ENHANCEMENTS:
4
 
 
5
 
    * New 'bzr whoami --email' option shows only the email component
6
 
      of the user identification, from Jo Vermeulen.
7
 
 
8
 
    * New 'bzr ignore PATTERN' command.
9
 
 
10
 
    * Nicer error message for broken pipe, interrupt and similar
11
 
      conditions that don't indicate an internal error.
12
 
 
13
 
  TESTING:
14
 
 
15
 
    * Converted black-box test suites from Bourne shell into Python.
16
 
      Various structural improvements to the tests.
17
 
 
18
 
  INTERNAL:
19
 
 
20
 
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
21
 
 
22
 
    * Refactor command functions into Command objects based on
23
 
      mango-sorbet by Scott James Remnant.
24
 
 
25
 
    * Better help messages for many commands.
26
 
 
27
 
 
28
 
bzr-0.0.4  2005-04-22
29
 
 
30
 
  ENHANCEMENTS:
31
 
 
32
 
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
33
 
      basic.  Patch from QuantumG.
34
 
 
35
 
    * More default ignore patterns.
36
 
 
37
 
    * New 'bzr log --verbose' shows a list of files changed in the
38
 
      changeset.  Patch from Sebastian Cote.
39
 
 
40
 
    * Roll over ~/.bzr.log if it gets too large.
41
 
 
42
 
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
43
 
      by Jason Diamon.
44
 
 
45
 
    * New 'bzr help commands' based on a patch from Denys Duchier.
46
 
 
47
 
 
48
 
  CHANGES:
49
 
 
50
 
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
51
 
      or $EMAIL.  All are decoded by the locale preferred encoding.
52
 
      If none of these are present user@hostname is used.  The host's
53
 
      fully-qualified name is not used because that tends to fail when
54
 
      there are DNS problems.
55
 
 
56
 
    * New 'bzr whoami' command instead of username user-email.
57
 
 
58
 
 
59
 
  BUG FIXES: 
60
 
 
61
 
    * Make commit safe for hardlinked bzr trees.
62
 
 
63
 
    * Some Unicode/locale fixes.
64
 
 
65
 
    * Partial workaround for difflib.unified_diff not handling
66
 
      trailing newlines properly.
67
 
 
68
 
 
69
 
  INTERNAL:
70
 
 
71
 
    * Allow docstrings for help to be in PEP0257 format.  Patch from
72
 
      Matt Brubeck.
73
 
 
74
 
    * More tests in test.sh.
75
 
 
76
 
    * Write profile data to a temporary file not into working
77
 
      directory and delete it when done.
78
 
 
79
 
    * Smaller .bzr.log with process ids.
80
 
 
81
 
 
82
 
  PORTABILITY:
83
 
 
84
 
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
85
 
      Bennetts.
86
 
 
87
 
    * Some improvements in handling paths on Windows, based on a patch
88
 
      from QuantumG.
89
 
 
90
 
 
91
 
bzr-0.0.3  2005-04-06
 
1
bzr-0.0.3  NOT RELEASED YET
92
2
 
93
3
  ENHANCEMENTS:
94
4
 
103
13
    * New "move" command to move one or more files into a different
104
14
      directory.
105
15
 
 
16
    * Basic "bzr mv" support for renames!  (Not all scenarios work
 
17
      through the command at the moment, but the inventory support is
 
18
      there.)
 
19
 
106
20
    * New "renames" command lists files renamed since base revision.
107
21
 
108
22
    * New cat command contributed by janmar.
123
37
 
124
38
    * Refactored inventory storage to insert a root entry at the top.
125
39
 
126
 
  TESTING:
127
 
 
128
40
    * Start of shell-based black-box testing in test.sh.
129
41
 
130
42
 
135
47
    * Win32 fixes from Steve Brown.
136
48
 
137
49
 
138
 
bzr-0.0.2  "black cube"  2005-03-31
 
50
bzr-0.0.2  "black cube"  2003-03-31
139
51
 
140
52
  ENHANCEMENTS:
141
53