Permalink
Newer
Older
100644 44 lines (32 sloc) 1.66 KB
4e0ecb7 @weavejester Updated README and HISTORY
weavejester authored Jul 4, 2010
1 ## 0.2.4 (2010-07-04)
2
3 * Fixed race condition in file-info middleware date parsing
4 * Forced US locale for file-info middleware date parsing
5 * Fixed NPE in multipart-params middleware when field is nil
6 * Fixed another flash middleware bug that was wiping out session data
7
4e630cc @weavejester Release 0.2.3.
weavejester authored Jun 16, 2010
8 ## 0.2.3 (2010-06-17)
9
10 * Code updated to be more Clojure 1.2 compatible
11 * Fixed bug in r.m.flash that was wiping out the session
12 * Added If-Modified-Since support to r.m.file-info
13 * Added ring.util.response/header
14 * Added :root key to r.m.session as a shortcut to cookie path attribute
15 * Updated ring-devel to use Hiccup instead of clj-html
16 * Session cookie attributes can now be set by adding a :session-cookie-attrs key to the response.
17
0a475ab @weavejester Release 0.2.2.
weavejester authored May 16, 2010
18 ## 0.2.2 (2010-05-16)
19
20 * Introduce middleware for session flash
21 * Cookie middleware made to work for browsers that don't follow cookie RFC (which is most of them)
22
fff77d9 @weavejester Added HISTORY entry for 0.2.1
weavejester authored May 16, 2010
23 ## 0.2.1 (2010-05-05)
24
0a475ab @weavejester Release 0.2.2.
weavejester authored May 16, 2010
25 * Depend on javax.servlet instead of org.mortbay.jetty for Servlet API artifact
fff77d9 @weavejester Added HISTORY entry for 0.2.1
weavejester authored May 16, 2010
26
998bd11 @mmcgrana Release 0.2.0.
authored Mar 28, 2010
27 ## 0.2.0 (2010-03-28)
24fe9d2 @mmcgrana Introduce history and contributors files.
authored Mar 10, 2010
28
29 * Distribute Ring as separate Maven artifacts: `ring-core`, `ring-servlet`, `ring-devel`, `ring-jetty-adapter`, and `ring-http-core-adapter`
9c6c621 @mmcgrana Re-introduce ring/ring artifact.
authored Mar 17, 2010
30 * The `ring` artifact now just depends on all of these granular artifacts
24fe9d2 @mmcgrana Introduce history and contributors files.
authored Mar 10, 2010
31 * Build with Leiningen
32 * Test with `clojure.test`
33 * Depend only on stable point-released libraries
34 * Introduce new middlewares for params, cookies, sessions
a37ad20 @mmcgrana Update history to reflect dropping of namespacing.
authored Mar 17, 2010
35 * Intro new utils for encoding/decoding, forming responses, and unit testing
36 * No longer require namespacing of request and response keys
24fe9d2 @mmcgrana Introduce history and contributors files.
authored Mar 10, 2010
37 * More documentation, including autodocs
38 * Various bugfixes
39
40 ## 0.1.0 (2009-09-06)
41
42 * First numbered Ring release
43 * Adopt ring.{handler,middleware,adapter,util}.* namespace framework