~ubuntu-branches/ubuntu/vivid/dulwich/vivid

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2013-05-31 00:58:42 UTC
  • mfrom: (1.5.1) (31.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130531005842-whdxa8wnmeqqfidr
Tags: 0.9.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
0.9.0   2013-05-31
 
2
 
 
3
 BUG FIXES
 
4
 
 
5
  * Push efficiency - report missing objects only. (#562676, Artem Tikhomirov)
 
6
 
 
7
  * Use indentation consistent with C Git in config files.
 
8
    (#1031356, Curt Moore, Jelmer Vernooij)
 
9
 
 
10
  * Recognize and skip binary files in diff function.
 
11
    (Takeshi Kanemoto)
 
12
 
 
13
  * Fix handling of relative paths in dulwich.client.get_transport_and_path.
 
14
    (Brian Visel, #1169368)
 
15
 
 
16
  * Preserve ordering of entries in configuration.
 
17
    (Benjamin Pollack)
 
18
 
 
19
  * Support ~ expansion in SSH client paths. (milki, #1083439)
 
20
 
 
21
  * Support relative paths in alternate paths.
 
22
    (milki, Michel Lespinasse, #1175007)
 
23
 
 
24
  * Log all error messages from wsgiref server to the logging module. This
 
25
    makes the test suit quiet again. (Gary van der Merwe)
 
26
 
 
27
  * Support passing None for empty tree in changes_from_tree.
 
28
    (Kevin Watters)
 
29
 
 
30
  * Support fetching empty repository in client. (milki, #1060462)
 
31
 
 
32
 IMPROVEMENTS:
 
33
 
 
34
  * Add optional honor_filemode flag to build_index_from_tree.
 
35
    (Mark Mikofski)
 
36
 
 
37
  * Support core/filemode setting when building trees. (Jelmer Vernooij)
 
38
 
 
39
  * Add chapter on tags in tutorial. (Ryan Faulkner)
 
40
 
 
41
 FEATURES
 
42
 
 
43
  * Add support for mergetags. (milki, #963525)
 
44
 
 
45
  * Add support for posix shell hooks. (milki)
 
46
 
 
47
0.8.7   2012-11-27
 
48
 
 
49
 BUG FIXES
 
50
 
 
51
  * Fix use of alternates in ``DiskObjectStore``.{__contains__,__iter__}.
 
52
    (Dmitriy)
 
53
 
 
54
  * Fix compatibility with Python 2.4. (David Carr)
 
55
 
 
56
0.8.6   2012-11-09
 
57
 
 
58
 API CHANGES
 
59
 
 
60
  * dulwich.__init__ no longer imports client, protocol, repo and
 
61
    server modules. (Jelmer Vernooij)
 
62
 
 
63
 FEATURES
 
64
 
 
65
  * ConfigDict now behaves more like a dictionary.
 
66
    (Adam 'Cezar' Jenkins, issue #58)
 
67
 
 
68
  * HTTPGitApplication now takes an optional
 
69
    `fallback_app` argument. (Jonas Haag, issue #67)
 
70
 
 
71
  * Support for large pack index files. (Jameson Nash)
 
72
 
 
73
 TESTING
 
74
 
 
75
  * Make index entry tests a little bit less strict, to cope with
 
76
    slightly different behaviour on various platforms.
 
77
    (Jelmer Vernooij)
 
78
 
 
79
  * ``setup.py test`` (available when setuptools is installed) now
 
80
    runs all tests, not just the basic unit tests.
 
81
    (Jelmer Vernooij)
 
82
 
 
83
 BUG FIXES
 
84
 
 
85
  * Commit._deserialize now actually deserializes the current state rather than
 
86
    the previous one. (Yifan Zhang, issue #59)
 
87
 
 
88
  * Handle None elements in lists of TreeChange objects. (Alex Holmes)
 
89
 
 
90
  * Support cloning repositories without HEAD set.
 
91
    (D-Key, Jelmer Vernooij, issue #69)
 
92
 
 
93
  * Support ``MemoryRepo.get_config``. (Jelmer Vernooij)
 
94
 
 
95
  * In ``get_transport_and_path``, pass extra keyword arguments on to
 
96
    HttpGitClient. (Jelmer Vernooij)
 
97
 
1
98
0.8.5   2012-03-29
2
99
 
3
100
 BUG FIXES
50
147
 
51
148
  * ``Repo.do_commit`` will now use the user identity from
52
149
    .git/config or ~/.gitconfig if none was explicitly specified.
53
 
   (Jelmer Vernooij)
 
150
    (Jelmer Vernooij)
54
151
 
55
152
 BUG FIXES
56
153