jruby-rack 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.1.6 (16/05/12)
2
+
3
+ - consider 403 as an unhandled response from filter chain (along with 404) and
4
+ allow configuring responseNotHandledStatuses via filter init parameter (#105)
5
+
1
6
  == 1.1.5 (04/03/12)
2
7
 
3
8
  - bundler 1.1 workaround when ENV is cleared - set ENV['PATH'] = ''
data/README.md CHANGED
@@ -179,8 +179,10 @@ as context init parameters in web.xml or as VM-wide system properties.
179
179
  `servlet_context`. See below.
180
180
  - `jruby.rack.ignore.env`: Clears out the `ENV` hash in each runtime to insulate
181
181
  the application from the environment.
182
- - `jruby.rack.background.spool`: (EXPERIMENTAL) Enable large request
183
- bodies to be spooled to a tempfile in the background.
182
+ - `jruby.rack.request.size.initial.bytes`: Initial size for request body memory
183
+ buffer, see also `jruby.rack.request.size.maximum.bytes` bellow.
184
+ - `jruby.rack.request.size.maximum.bytes`: The maximum size for the request in
185
+ memory buffer, if the body is larger than this it gets spooled to a tempfile.
184
186
  - `jruby.rack.filter.adds.html`:
185
187
  **deprecated** use `addsHtmlToPathInfo` filter config init parameter.
186
188
  The default behavior for Rails and many other Ruby applications is to add an
@@ -252,19 +254,18 @@ Please use GitHub to file bugs, patches and pull requests.
252
254
  For JRuby-Rack contributors, the release process goes something like
253
255
  the following:
254
256
 
255
- 1. Ensure that release version is correct in pom.xml and `mvn install`
257
+ 1. Ensure that release version is correct in _pom.xml_ and `mvn install`
256
258
  runs clean.
257
- 2. Ensure generated changes to src/main/ruby/jruby/rack/version.rb are
259
+ 2. Ensure generated changes to _src/main/ruby/jruby/rack/version.rb_ are
258
260
  checked in.
259
- 3. Ensure History.txt is updated with latest release information.
261
+ 3. Ensure _History.txt_ is updated with latest release information.
260
262
  3. Tag current release in git: `git tag <version>`.
261
263
  4. Push commits and tag: `git push origin master --tags`
262
264
  5. Build gem: `rake clean gem`
263
265
  6. Push gem: `gem push target/jruby-rack-*.gem`
264
266
  7. Release jar to maven repository: `mvn -DupdateReleaseInfo=true deploy`
265
- 8. Bump the version in pom.xml to the
266
- `<next-release-version>.dev-SNAPSHOT`, run `mvn install`, and commit
267
- the changes.
267
+ 8. Bump the version in _pom.xml_ to next release version *X.X.X.dev-SNAPSHOT*,
268
+ run `mvn install`, and commit the changes.
268
269
 
269
270
  ## Rails Step-by-step
270
271
 
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = "1.1.5"
10
+ VERSION = "1.1.6"
11
11
  end
12
12
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: jruby-rack
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.5
5
+ version: 1.1.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nick Sieger
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-04-03 00:00:00 Z
13
+ date: 2012-05-16 00:00:00 Z
14
14
  dependencies: []
15
15
 
16
16
  description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
@@ -27,7 +27,7 @@ files:
27
27
  - LICENSE.txt
28
28
  - History.txt
29
29
  - lib/jruby-rack.rb
30
- - lib/jruby-rack-1.1.5.jar
30
+ - lib/jruby-rack-1.1.6.jar
31
31
  - lib/jruby/rack/version.rb
32
32
  homepage: http://jruby.org
33
33
  licenses: []