~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: John Arbash Meinel
  • Date: 2011-03-19 08:35:57 UTC
  • mfrom: (422.3.2 head_middleware)
  • Revision ID: john@arbash-meinel.com-20110319083557-k8mbbkr3bzisz3ob
include HeadMiddleware so that we can be sure HEAD requests never return BODY content.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
What's changed in loggerhead?
2
2
=============================
3
3
 
 
4
1.19 [???]
 
5
----------------
 
6
 
 
7
    - Add ``bzr load-test-loggerhead`` as a way to make sure loggerhead can
 
8
      handle concurrent requests, etc. Scripts can be written that spawn
 
9
      multiple threads, and issue concurrent requests.
 
10
      (John Arbash Meinel)
 
11
 
 
12
    - HEAD requests should not return body content. This is done by adding
 
13
      another wsgi middleware that strips the body when the REQUEST_METHOD is
 
14
      HEAD. Note that you have to add the middleware into your pipeline, and
 
15
      it does not decrease the actual work done.
 
16
      (John Arbash Meinel, #716201)
 
17
 
 
18
    - If we get a HEAD request, there is no reason to expand the template, we
 
19
      shouldn't be returning body content anyway.
 
20
      (John Arbash Meinel, #716201, #716217)
 
21
 
 
22
    - Merge the pqm changes back into trunk, after trunk was reverted to an old
 
23
      revision. (John Arbash Meinel, #716152)
 
24
 
 
25
    - Redirect ``/files/file.txt`` to ``/view/file.txt`` and ``/view/dir`` to
 
26
      ``/files/dir``. (Jasper St. Pierre, #569358)
 
27
 
 
28
    - Remove ``start-loggerhead`` and ``stop-loggerhead`` which were already
 
29
      deprecated. (John Arbash Meinel)
 
30
 
 
31
    - Show "Author(s)" as separate from "Committer". And label them
 
32
      correctly. (John Arbash Meinel, #733015)
 
33
 
 
34
    - The json module is no longer claimed to be supported as alternative for 
 
35
      simplejson. (Jelmer Vernooij, #586611)
 
36
 
 
37
    - Viewing the ``/changes`` page only iterates enough of the history to show
 
38
      the actual revisions displayed, rather than walking the whole mainline.
 
39
      Improves performance on projects with long histories like emacs.
 
40
      (John Arbash Meinel)
 
41
 
 
42
 
 
43
1.18 [10Nov2010]
 
44
----------------
 
45
 
 
46
    - Syntax highlighting is no longer applied for files greater than 512K,
 
47
      reducing codebrowse.launchpad.net overloading.
 
48
      (Max Kanat-Alexander, #513044)
 
49
 
 
50
    - Documentation added in the docs directory. README simplified
 
51
      accordingly. (Tres Seaver).
 
52
 
 
53
    - Show svn/git/hg revision ids in loggerhead revision view.
 
54
      (Jelmer Vernooij)
 
55
 
 
56
    - Fix .bzr/smart access to branches in shared repos. (You also need
 
57
      a version of bzr with bug #348308 fixed.) (Andrew Bennetts)
 
58
 
 
59
    - Support FastCGI, SCGI and AJP using flup. (Denis Martinez)
 
60
 
 
61
    - Repository.get_revision_inventory() was removed in bzr 2.2; use
 
62
      Repository.get_inventory() instead. (Matt Nordhoff, #528194)
 
63
 
 
64
    - Ignore readonly+ prefix when checking if Loggerhead is serving a
 
65
      local location. (Reported by Tres Seaver.) (Matt Nordhoff)
 
66
 
 
67
    - Set Cache-Control and Expires headers on static pages.
 
68
      (John Arbash Meinel)
 
69
 
 
70
    - Generate relative links where possible (everywhere but HTTP
 
71
      redirects and feed IDs). (Michael Hudson, Matt Nordhoff)
 
72
 
 
73
    - Fix bad redirect when visiting "/download" or "/download/".
 
74
      (Matt Nordhoff, #247992)
 
75
 
 
76
 
 
77
1.17 [20Aug2009]
 
78
----------------
 
79
 
 
80
    - Add bug links in revision informations (Alexandre Garnier, #314052)
 
81
 
 
82
    - Make sure that binary files aren't annotated. (Martin Albisetti,
 
83
      #258848)
 
84
 
 
85
    - Loggerhead now serves bzr branches over HTTP and exposes the URL
 
86
      to branch them. Addresses bug #240577. (Jonathan Lange)
 
87
 
 
88
    - Leading blank lines in commit messages no longer result in an
 
89
      empty summary. (Colin Watson)
 
90
 
 
91
    - Added optional syntax highlighting to annotate view using
 
92
      python-pygments.  Partially addresses bug #306631. (Peter Bui)
 
93
 
 
94
    - Convert newlines in commit messages to HTML line breaks for
 
95
      annotate and changelog views.  Addresses bug #273688. (Peter
 
96
      Bui)
 
97
 
 
98
    - serve-branches now errors if run behind a proxy without
 
99
      paste.deploy installed. (Michael Hudson)
 
100
 
 
101
    - Loggerhead should now handle file and directory names that need
 
102
      URL escaping without crashing.
 
103
 
 
104
    - The start-loggerhead script properly sets the wsgi.url_scheme
 
105
      from the server.webpath option. (neror, #260547)
 
106
 
 
107
    - The revision page defaults to unified style again, and can
 
108
      convert to a side-by-side view using JavaScript. (Michael Hudson)
 
109
 
 
110
    - Clean up and improve performance of the annotate view. (Michael
 
111
      Hudson)
 
112
 
 
113
    - Finish converting JavaScript from MooTools to YUI 3. (Michael
 
114
      Hudson)
 
115
 
 
116
    - Improve compatibility with IE 6. (Michael Hudson)
 
117
 
 
118
    - Leading blank lines in commit messages no longer result in an
 
119
      empty summary. (Colin Watson)
 
120
 
 
121
    - Clip long lines in side-by-side diff view. (Michael Hudson,
 
122
      #334837)
 
123
 
 
124
    - The user-confusing "next" and "previous" links now read "older"
 
125
      and "newer" respectively. (Michael Hudson, #297930)
 
126
 
 
127
    - The annotate view now contains line number anchors. (Michael
 
128
      Hudson)
 
129
 
 
130
    - Fix inventory pages using "//" in links. (Michael Hudson, #329668)
 
131
 
 
132
    - Fix problems viewing files and directories containing spaces and
 
133
      other funny characters. (Peter Bui)
 
134
 
 
135
    - Changelog messages are now displayed with newlines preserved.
 
136
      (Peter Bui, #273688)
 
137
 
 
138
    - Offer a link to see the full file diffs for a file path. (Michael
 
139
      Hudson, #333797)
 
140
 
 
141
    - Fix annotate error caused by Pygments stripping trailing
 
142
      whitespace. (Michael Hudson, #338762)
 
143
 
 
144
    - Loggerhead can be installed as a Bazaar plugin and run by
 
145
      'bzr serve --http'. (Martin Pool)
 
146
 
 
147
    - Load parts of the changelog and revision pages via XMLHttpRequest
 
148
      to improve performance. This adds a dependency on simplejson or
 
149
      json. Partially addresses bug #253950. (Michael Hudson)
 
150
 
 
151
    - Various improvements to the animation JavaScript. (Michael Hudson)
 
152
 
 
153
    - Fix HTML content of source files being displayed unescaped when
 
154
      Pygments was unavailable. (Michael Hudson, #344970)
 
155
 
 
156
    - Fix serve-branches's path argument. (Michael Hudson, #353230)
 
157
 
 
158
    - serve-branches now has an option, --use-cdn, to load YUI from
 
159
      Yahoo!'s CDN. (Matt Nordhoff)
 
160
 
 
161
    - Fix certain race conditions for loading bzr-search. (Robert
 
162
      Collins, #334250)
 
163
 
 
164
    - Fix errors when using serve-branches --log-folder or --user-dirs.
 
165
      (It was calling config.get_option() incorrectly.) (Matt Nordhoff,
 
166
      bug #361238)
 
167
 
 
168
    - Move some caching from RAM to the disk, and other caching and
 
169
      memory usage improvements. (Michael Hudson)
 
170
 
 
171
    - Add a --cache-dir option to serve-branches to choose where to
 
172
      place the SQL cache, and only create one temporary SQL dir per
 
173
      process. (Matt Nordhoff, #358322)
 
174
 
 
175
    - Replace homebrew memory profiling code with Dozer. (Paul Hummer)
 
176
 
 
177
    - Use the branch's public_branch as the default suggested URL to
 
178
      branch from (Matt Nordhoff, #369767)
 
179
 
 
180
    - Fix a file descriptor leak (Matt Nordhoff, #370845)
 
181
 
 
182
    - Use transport API internally, so it is possible to specify a remote
 
183
      URL to serve-branches. (Jelmer Vernooij, #371787)
 
184
 
 
185
    - Fix internal server errors when using start-loggerhead. (Matt
 
186
      Nordhoff, #375948)
 
187
 
 
188
    - Fix annotating non-UTF-8 files when Pygments is disabled. (Matt
 
189
      Nordhoff, #376957)
 
190
 
 
191
    - Fix 'bzr serve --http' errors. (Matt Nordhoff, #377551)
 
192
 
 
193
    - Added the option to hide branches by setting http_serve = False
 
194
      in locations.conf (Martin Albisetti)
 
195
 
 
196
    - Fix serving branches over HTTP. (Matt Nordhoff, Jelmer Vernooij,
 
197
      #380026)
 
198
 
 
199
    - Install loggerhead as a bzr plugin by default (Jelmer Vernooij)
 
200
 
 
201
    - Fix logging 404 Not Found responses (Matt Nordhoff, #381029)
 
202
 
 
203
    - Bumped minimunm bzrlib version to 1.13 (Martin Albisetti)
 
204
 
 
205
    - Make sure the Atom feeds (nearly) validate. (Matt Nordhoff, #247162)
 
206
 
 
207
    - Support serving branches over HTTP using the smart server protocol.
 
208
      (Jelmer Vernooij, #306853)
 
209
 
 
210
    - Serving branch data was broken when --allow-writes was *not*
 
211
      passed. (Michael Hudson, #388730)
 
212
 
 
213
    - http_serve config values are interpreted more forgivingly.
 
214
      (Michael Hudson)
 
215
 
 
216
    - When specifying a remote url to serve-branches, do not share
 
217
      connections between threads. (Michael Hudson, #390972)
 
218
 
 
219
    - http_serve values from locations.conf are now applied to
 
220
      non-branch .bzr data (e.g shared repositories). (Michael Hudson)
 
221
 
 
222
    - tags are now displayed. (Cris Boylan, Alexandre Garnier, Michael
 
223
      Hudson, #246739)
 
224
 
 
225
    - Display Loggerhead's version number at the bottom of the page, and
 
226
      add a <meta> generator tag also including the version numbers of
 
227
      its dependencies. (Matt Nordhoff, #370155)
 
228
 
 
229
 
 
230
1.10 [22Dec2008]
 
231
----------------
 
232
 
 
233
    - Add startup deamon script for Linux (Marius Kruger)
 
234
 
 
235
    - Switch navigation from file_ids to paths. Fixes bugs #260363,
 
236
      #269365 and #128926. (Martin Albisetti)
 
237
 
 
238
    - Fix bug #258710 ("the /files page explodes in an empty branch").
 
239
      Also minor improvements to the /files and /changes pages.
 
240
      (Marius Kruger)
 
241
 
 
242
    - Added --port, --host and --prefix options to serve-branches
 
243
      script. (Martin Albisetti)
 
244
 
 
245
    - Fixed broken template for project browsing with start-loggerhead
 
246
      (Martin Albisetti)
 
247
 
 
248
    - Added --reload options to restart the application when a python
 
249
      file change. (Guillermo Gonzalez)
 
250
 
 
251
    - Added error handling middleware. (Guillermo Gonzalez)
 
252
 
 
253
    - Fix bug #243415 ("Tracebacks go to console but not log
 
254
      file"). Also minor improvements to logging in serve-branches and
 
255
      start-loggerhead. (Guillermo Gonzalez)
 
256
 
 
257
1.6 [15Aug2008]
 
258
----------------
 
259
 
 
260
    - Download a diffs between revisions. (Martin Albisetti)
 
261
 
 
262
    - Modified templates to make loggerhead's theme easier to
 
263
      change. (Paul Hummer)
 
264
 
 
265
    - Default sqlite interface is now sqlite3. (Robert Collins)
 
266
 
 
267
    - New ninja theme sponsored by Canonical (Martin Albisetti)
 
268
 
 
269
    - Added COPYING file and clarified copyright headers (John Arbash Meinel)
 
270
 
 
271
    - Remove the .py extension requiered by the Debian Policy.
 
272
      (Jelmer Vernooij)
 
273
 
 
274
    - New startup script serve-branches will serve Loggerhead without
 
275
      the need of configuration, and allow you to browse through directories
 
276
      and branches. (Michael Hudson)
 
277
 
 
278
    - Loggerhead is no longer a TurboGears application, but rather a
 
279
      WSGI application built using Paste (see http://wsgi.org/ and
 
280
      http://pythonpaste.org/ for more about WSGI and Paste).
 
281
 
 
282
    - URLs now use revision numbers instead of revision ids (Martin Albisetti)
 
283
 
 
284
    - The scripts no longer insist on Python 2.4 -- loggerhead works
 
285
      fine with 2.5.
 
286
 
 
287
    - Bazaar as of version 1.5 has improved in performance enough that
 
288
      the revision cache no longer gave any noticeable benefit, so it
 
289
      was removed (the files-changed cache is still useful).
 
290
 
 
291
    - The templates were rewritten in Zope's TAL markup, powered by
 
292
      the simpleTAL library -- improving both the performance and
 
293
      memory consumption of rendering by a factor of around 3 for
 
294
      large pages over the old Kid templates.
 
295
 
 
296
    - Loggerhead's poorly performing text index was disabled. bzr-search
 
297
      is now used if the plugin is installed and a text index is present
 
298
      on the branch being viewed. (Martin Albisetti, Robert Collins).
 
299
 
 
300
    - Loggerhead no longer depends on bzrlib functions deprecated in
 
301
      Bazaar 1.5 and removed in 1.6 (Martin Albisetti).
 
302
 
 
303
    - The daemonization code was made more regular, fixing bugs
 
304
      #139161 ("Starting loggerhead process may not close its stdin
 
305
      and stdout properly") and #211526 ("Codebrowse log directory has
 
306
      unnecessarily permissive permissions")
 
307
 
 
308
    - Some confusion about what the 'file_id' query argument means was
 
309
      cleared up: filter_file_id now means "filter revisions to those
 
310
      that affect this file" in all views and file_id means "examine
 
311
      this file/directory" in the annotate and inventory views.
 
312
 
 
313
    - Dates are present more compactly.
 
314
 
 
315
    - The loggerhead.conf file can specify which network interface to
 
316
      bind to (Mattias Eriksson)
 
317
 
4
318
1.2.1  [06mar2008]
5
319
------------------
6
320
 
8
322
      cache.
9
323
 
10
324
1.2  [04mar2008]
11
 
----------------
12
325
 
13
326
    - Michael Hudson <michael.hudson@canonical.com> has mostly taken
14
327
      over the maintenance of loggerhead.