"Anything" -> "Any" Thanks for Ring! I'm new to Clojure and web development with Ring, Compojure, and Enlive has been awesome.
Add :max-threads option to the Jetty adapter
In some cloud environments, such as Heroku, the number of threads available to a process is limited. The Jetty adapter should therefore support a :max-threads option for limiting the number of threads ...
Upgrade clj-stacktrace to 0.2.4
The ring-devel leiningen project includes a dependency on clj-stacktrace 0.2.2. Unfortunately, that version of clj-stacktrace is not compatible with recent versions of swank-closure (1.3.4 or newer). The ...
A bit of humor for the MIT license on a Clojure project.
I don't know how proud you are of your choice of the MIT license. Personally I quite like it and I think it's important for this project. I respect the choice of EPL for Clojure but I think for ...
Running additional WARs in addition to the app
I'm developping a webapp which has two components, one is a JSON REST service, the other the app itself. Both are written in Clojure with Compojure. When running the app with run-jetty, is there a ...
Let's clean up the README, assume most people are going to use Ring via a project.clj dependency, and remove the examples folder from the repository (examples can be better stored and documented in ...
Cookie parsing needs to deal with nil return value from url-decode
The decision to allow url-decode to return nil for improperly encoded strings (instead of throwing an exception) now means that cookie handling needs to accomodate this newly-endorsed return value. Frankly, ...
Tag all public functions with version metadata
Public functions should have {:added "1.0"} metadata to define which version they were added in.