~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: John Arbash Meinel
  • Date: 2011-02-10 02:33:15 UTC
  • mto: This revision was merged to the branch mainline in revision 441.
  • Revision ID: john@arbash-meinel.com-20110210023315-515pkynlfpfs3cvm
Fix bug #716201 by suppressing body content when getting a HEAD request.

This adds some WSGI middleware that suppresses returning body content if a HEAD request
is received.

Note that we don't yet pass GET down to the lower levels, so they could still
decide whether they can do less work or not. We may want to make the standard BranchWSGIApp
do less work under those circumstances.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
What's changed in loggerhead?
2
2
=============================
3
3
 
4
 
dev [future]
5
 
---------------
 
4
1.19 [????]
 
5
-----------
 
6
 
 
7
    - HEAD requests should not return body content. This is done by adding
 
8
      another wsgi middleware that strips the body when the REQUEST_METHOD is
 
9
      HEAD. Note that you have to add the middleware into your pipeline, and
 
10
      it does not decrease the actual work done.
 
11
      (John Arbash Meinel, #716201)
 
12
 
 
13
1.18 [10Nov2010]
 
14
----------------
 
15
 
 
16
    - Syntax highlighting is no longer applied for files greater than 512K,
 
17
      reducing codebrowse.launchpad.net overloading.
 
18
      (Max Kanat-Alexander, #513044)
 
19
 
 
20
    - Documentation added in the docs directory. README simplified
 
21
      accordingly. (Tres Seaver).
 
22
 
 
23
    - Show svn/git/hg revision ids in loggerhead revision view.
 
24
      (Jelmer Vernooij)
 
25
 
 
26
    - Fix .bzr/smart access to branches in shared repos. (You also need
 
27
      a version of bzr with bug #348308 fixed.) (Andrew Bennetts)
 
28
 
 
29
    - Support FastCGI, SCGI and AJP using flup. (Denis Martinez)
 
30
 
 
31
    - Repository.get_revision_inventory() was removed in bzr 2.2; use
 
32
      Repository.get_inventory() instead. (Matt Nordhoff, #528194)
 
33
 
 
34
    - Ignore readonly+ prefix when checking if Loggerhead is serving a
 
35
      local location. (Reported by Tres Seaver.) (Matt Nordhoff)
 
36
 
 
37
    - Set Cache-Control and Expires headers on static pages.
 
38
      (John Arbash Meinel)
 
39
 
 
40
    - Generate relative links where possible (everywhere but HTTP
 
41
      redirects and feed IDs). (Michael Hudson, Matt Nordhoff)
 
42
 
 
43
    - Fix bad redirect when visiting "/download" or "/download/".
 
44
      (Matt Nordhoff, #247992)
 
45
 
 
46
 
 
47
1.17 [20Aug2009]
 
48
----------------
 
49
 
 
50
    - Add bug links in revision informations (Alexandre Garnier, #314052)
 
51
 
 
52
    - Make sure that binary files aren't annotated. (Martin Albisetti,
 
53
      #258848)
6
54
 
7
55
    - Loggerhead now serves bzr branches over HTTP and exposes the URL
8
 
      to branch them. (Jonathan Lange)
 
56
      to branch them. Addresses bug #240577. (Jonathan Lange)
9
57
 
10
58
    - Leading blank lines in commit messages no longer result in an
11
59
      empty summary. (Colin Watson)
12
60
 
13
 
    - Added syntax highlighting to annotate view using
 
61
    - Added optional syntax highlighting to annotate view using
14
62
      python-pygments.  Partially addresses bug #306631. (Peter Bui)
15
63
 
16
64
    - Convert newlines in commit messages to HTML line breaks for
18
66
      Bui)
19
67
 
20
68
    - serve-branches now errors if run behind a proxy without
21
 
      paste.deploy installed.
 
69
      paste.deploy installed. (Michael Hudson)
22
70
 
23
71
    - Loggerhead should now handle file and directory names that need
24
72
      URL escaping without crashing.
25
73
 
26
74
    - The start-loggerhead script properly sets the wsgi.url_scheme
27
 
      from the server.webpath option. (neror)
 
75
      from the server.webpath option. (neror, #260547)
28
76
 
29
77
    - The revision page defaults to unified style again, and can
30
 
      convert to a side-by-side view using Javascript.
 
78
      convert to a side-by-side view using JavaScript. (Michael Hudson)
 
79
 
 
80
    - Clean up and improve performance of the annotate view. (Michael
 
81
      Hudson)
 
82
 
 
83
    - Finish converting JavaScript from MooTools to YUI 3. (Michael
 
84
      Hudson)
 
85
 
 
86
    - Improve compatibility with IE 6. (Michael Hudson)
31
87
 
32
88
    - Leading blank lines in commit messages no longer result in an
33
89
      empty summary. (Colin Watson)
34
90
 
 
91
    - Clip long lines in side-by-side diff view. (Michael Hudson,
 
92
      #334837)
 
93
 
35
94
    - The user-confusing "next" and "previous" links now read "older"
36
 
      and "newer" respectively.
37
 
 
38
 
    - The annotate view now contains line number anchors.
39
 
 
40
 
    - The annotate view does syntax highlighting using the "pygments"
41
 
      library.  (Peter Bui)
 
95
      and "newer" respectively. (Michael Hudson, #297930)
 
96
 
 
97
    - The annotate view now contains line number anchors. (Michael
 
98
      Hudson)
 
99
 
 
100
    - Fix inventory pages using "//" in links. (Michael Hudson, #329668)
 
101
 
 
102
    - Fix problems viewing files and directories containing spaces and
 
103
      other funny characters. (Peter Bui)
42
104
 
43
105
    - Changelog messages are now displayed with newlines preserved.
44
 
      (Peter Bui)
 
106
      (Peter Bui, #273688)
 
107
 
 
108
    - Offer a link to see the full file diffs for a file path. (Michael
 
109
      Hudson, #333797)
 
110
 
 
111
    - Fix annotate error caused by Pygments stripping trailing
 
112
      whitespace. (Michael Hudson, #338762)
 
113
 
 
114
    - Loggerhead can be installed as a Bazaar plugin and run by
 
115
      'bzr serve --http'. (Martin Pool)
 
116
 
 
117
    - Load parts of the changelog and revision pages via XMLHttpRequest
 
118
      to improve performance. This adds a dependency on simplejson or
 
119
      json. Partially addresses bug #253950. (Michael Hudson)
 
120
 
 
121
    - Various improvements to the animation JavaScript. (Michael Hudson)
 
122
 
 
123
    - Fix HTML content of source files being displayed unescaped when
 
124
      Pygments was unavailable. (Michael Hudson, #344970)
 
125
 
 
126
    - Fix serve-branches's path argument. (Michael Hudson, #353230)
 
127
 
 
128
    - serve-branches now has an option, --use-cdn, to load YUI from
 
129
      Yahoo!'s CDN. (Matt Nordhoff)
 
130
 
 
131
    - Fix certain race conditions for loading bzr-search. (Robert
 
132
      Collins, #334250)
 
133
 
 
134
    - Fix errors when using serve-branches --log-folder or --user-dirs.
 
135
      (It was calling config.get_option() incorrectly.) (Matt Nordhoff,
 
136
      bug #361238)
 
137
 
 
138
    - Move some caching from RAM to the disk, and other caching and
 
139
      memory usage improvements. (Michael Hudson)
 
140
 
 
141
    - Add a --cache-dir option to serve-branches to choose where to
 
142
      place the SQL cache, and only create one temporary SQL dir per
 
143
      process. (Matt Nordhoff, #358322)
 
144
 
 
145
    - Replace homebrew memory profiling code with Dozer. (Paul Hummer)
 
146
 
 
147
    - Use the branch's public_branch as the default suggested URL to
 
148
      branch from (Matt Nordhoff, #369767)
 
149
 
 
150
    - Fix a file descriptor leak (Matt Nordhoff, #370845)
 
151
 
 
152
    - Use transport API internally, so it is possible to specify a remote
 
153
      URL to serve-branches. (Jelmer Vernooij, #371787)
 
154
 
 
155
    - Fix internal server errors when using start-loggerhead. (Matt
 
156
      Nordhoff, #375948)
 
157
 
 
158
    - Fix annotating non-UTF-8 files when Pygments is disabled. (Matt
 
159
      Nordhoff, #376957)
 
160
 
 
161
    - Fix 'bzr serve --http' errors. (Matt Nordhoff, #377551)
 
162
 
 
163
    - Added the option to hide branches by setting http_serve = False
 
164
      in locations.conf (Martin Albisetti)
 
165
 
 
166
    - Fix serving branches over HTTP. (Matt Nordhoff, Jelmer Vernooij,
 
167
      #380026)
 
168
 
 
169
    - Install loggerhead as a bzr plugin by default (Jelmer Vernooij)
 
170
 
 
171
    - Fix logging 404 Not Found responses (Matt Nordhoff, #381029)
 
172
 
 
173
    - Bumped minimunm bzrlib version to 1.13 (Martin Albisetti)
 
174
 
 
175
    - Make sure the Atom feeds (nearly) validate. (Matt Nordhoff, #247162)
 
176
 
 
177
    - Support serving branches over HTTP using the smart server protocol.
 
178
      (Jelmer Vernooij, #306853)
 
179
 
 
180
    - Serving branch data was broken when --allow-writes was *not*
 
181
      passed. (Michael Hudson, #388730)
 
182
 
 
183
    - http_serve config values are interpreted more forgivingly.
 
184
      (Michael Hudson)
 
185
 
 
186
    - When specifying a remote url to serve-branches, do not share
 
187
      connections between threads. (Michael Hudson, #390972)
 
188
 
 
189
    - http_serve values from locations.conf are now applied to
 
190
      non-branch .bzr data (e.g shared repositories). (Michael Hudson)
 
191
 
 
192
    - tags are now displayed. (Cris Boylan, Alexandre Garnier, Michael
 
193
      Hudson, #246739)
 
194
 
 
195
    - Display Loggerhead's version number at the bottom of the page, and
 
196
      add a <meta> generator tag also including the version numbers of
 
197
      its dependencies. (Matt Nordhoff, #370155)
 
198
 
45
199
 
46
200
1.10 [22Dec2008]
47
 
---------------
 
201
----------------
48
202
 
49
203
    - Add startup deamon script for Linux (Marius Kruger)
50
204