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