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