~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)
6
51
 
7
52
    - Make sure that binary files aren't annotated. (Martin Albisetti,
8
53
      #258848)
104
149
 
105
150
    - Fix a file descriptor leak (Matt Nordhoff, #370845)
106
151
 
107
 
    - Use transport API internally, so it is possible to specify a remote 
 
152
    - Use transport API internally, so it is possible to specify a remote
108
153
      URL to serve-branches. (Jelmer Vernooij, #371787)
109
154
 
110
155
    - Fix internal server errors when using start-loggerhead. (Matt
113
158
    - Fix annotating non-UTF-8 files when Pygments is disabled. (Matt
114
159
      Nordhoff, #376957)
115
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
 
 
199
 
116
200
1.10 [22Dec2008]
117
 
---------------
 
201
----------------
118
202
 
119
203
    - Add startup deamon script for Linux (Marius Kruger)
120
204