~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2006-03-02 03:12:34 UTC
  • mto: (1594.2.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: robertc@robertcollins.net-20060302031234-cf6b75961f27c5df
InterVersionedFile implemented.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
bzr development version
 
2
 
 
3
 
 
4
  IMPROVEMENTS:
 
5
 
 
6
    * Sftp paths can now be relative, or local, according to the lftp
 
7
      convention. Paths now take the form:
 
8
      sftp://user:pass@host:port/~/relative/path
 
9
      or
 
10
      sftp://user:pass@host:port/absolute/path
 
11
 
 
12
    * The FTP transport now tries to reconnect after a temporary
 
13
      failure. ftp put is made atomic. (Matthieu Moy)
 
14
 
 
15
    * The FTP transport now maintains a pool of connections, and
 
16
      reuses them to avoid multiple connections to the same host (like
 
17
      sftp did). (Daniel Silverstone)
 
18
 
 
19
    * The bzr_man.py file has been removed. To create the man page now,
 
20
      use ./generate_docs.py man. The new program can also create other files.
 
21
      Run "python generate_docs.py --help" for usage information. (Hans
 
22
      Ulrich Niedermann & James Blackwell).
 
23
 
 
24
    * Man Page now gives full help (James Blackwell). Help also updated to 
 
25
      reflect user config now being stored in .bazaar (Hans Ulrich
 
26
      Niedermann)
 
27
 
 
28
    * It's now possible to set aliases in bazaar.conf (Erik Bågfors)
 
29
 
 
30
    * Pull now accepts a --revision argument (Erik Bågfors)
 
31
 
 
32
    * 'bzr re-sign' now allows multiple revisions to be supplied on the command
 
33
      line. You can now use the following command to sign all of your old commits.
 
34
        find .bzr/revision-store// -name my@email-* \
 
35
          | sed 's/.*\/\/..\///' \
 
36
          | xargs bzr re-sign
 
37
 
 
38
    * Upgrade can now upgrade over the network. (Robert Collins)
 
39
 
 
40
    * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
 
41
      behaviour. They use the existing serverless-mode and store no data
 
42
      locally. As such they are not suitable for use except in high bandwidth
 
43
      low latency environments like LAN's or local disk. (Robert Collins)
 
44
 
 
45
    * 'revert' unversions newly-versioned files, instead of deleting them.
 
46
 
 
47
    * 'merge' is more robust.  Conflict messages have changed.
 
48
 
 
49
    * 'merge' and 'revert' no longer clobber existing files that end in '~' or
 
50
      '.moved'.
 
51
 
 
52
    * Default log format can be set in configuration and plugins can register
 
53
      their own formatters. (Erik Bågfors)
2
54
 
3
55
  INTERNALS:
4
56
  
7
59
      management routines are now in bzrlib.lockablefiles. 
8
60
      (Aaron Bentley, Robert Collins, Martin Pool)
9
61
 
 
62
    * Using Tree Transform for merge, revert, tree-building
 
63
 
 
64
    * WorkingTree.create, Branch.create, WorkingTree.create_standalone,
 
65
      Branch.initialize are now deprecated. Please see BzrDir.create_* for
 
66
      replacement API's. (Robert Collins)
 
67
 
 
68
    * New BzrDir class represents the .bzr control directory and manages
 
69
      formatting issues. (Robert Collins)
 
70
 
 
71
    * New repository.InterRepository class encapsulates Repository to 
 
72
      Repository actions and allows for clean selection of optimised code
 
73
      paths. (Robert Collins)
 
74
 
 
75
    * bzrlib.fetch.fetch and bzrlib.fetch.greedy_fetch are now deprecated,
 
76
      please use 'branch.fetch' or 'repository.fetch' depending on your
 
77
      needs. (Robert Collins)
 
78
 
 
79
    * deprecated methods now have a 'is_deprecated' flag on them that can
 
80
      be checked, if you need to determine whether a given callable is 
 
81
      deprecated at runtime. (Robert Collins)
 
82
 
10
83
  TESTING:
11
84
 
12
85
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
13
86
      for testing SFTP protocol support. (Robey Pointer)
14
87
 
 
88
    * Branch formats are now tested once per implementation (see bzrlib.
 
89
      tests.branch_implementations. This is analagous to the transport
 
90
      interface tests, and has been followed up with working tree,
 
91
      repository and BzrDir tests. (Robert Collins)
 
92
 
 
93
    * New test base class TestCaseWithTransport provides a transport aware
 
94
      test environment, useful for testing any transport-interface using
 
95
      code. The test suite option --transport controls the transport used
 
96
      by this class (when its not being used as part of implementation
 
97
      contract testing). (Robert Collins)
 
98
 
 
99
 
15
100
bzr 0.7rc1 2006-01-09
16
101
 
17
102
  CHANGES:
41
126
      This gives better integration with user settings such as ProxyCommand.
42
127
      (James Henstridge)
43
128
 
44
 
    * Sftp paths can now be relative, or local, according to the lftp
45
 
      convention. Paths now take the form:
46
 
      sftp://user:pass@host:port/~/relative/path
47
 
      or
48
 
      sftp://user:pass@host:port/absolute/path
49
 
 
50
129
    * Permissions on files underneath .bzr/ are inherited from the .bzr 
51
130
      directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
52
131
      will mean that future file will be created with group write permissions.