jruby-rack 1.1.17 → 1.1.18

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e9f29b0f32ad8675dac61389ac298e8ef94aa5f
4
- data.tar.gz: 80945a497c477f4bf29553d25eb0b4a2c9484dd6
3
+ metadata.gz: e6f27dc691c0a86ba619322c63b739d333b6a5f1
4
+ data.tar.gz: 28569aa292094ea8301d0bcb0a5d5e08ddb63952
5
5
  SHA512:
6
- metadata.gz: 9950b4dca7e534b37683da4924b87f6a6167eb742b3c1b038e1110529ba6c4308aeb76916723cd9d6167ad221890fb452c0831cc70b51d708972aaa4901d4519
7
- data.tar.gz: 266f1c32b1ba05d7abce712b7a4ed0ad37f55c4683ae1e78c14c7ed78c23c6efa63bc69356a438d75a09cb1823753a9b20ce20360a9e82edeb598c07acc09734
6
+ metadata.gz: 143655b4094638478007128644ad1dad27c3d56593ed110f85c37ef53b4d94eb5be89dfc6198d4d5e15a5df970cce2b35a98173ade6cc369aed107c71cce26da
7
+ data.tar.gz: ad4267f375a996fb4565f8905eb5d6602ecdf934e186aa96faacee301410e719ccf9e6c8a6e6242dfef81ddb3d9b37d351b8af3069e3e5bb5391c16411401bc8
data/History.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## 1.1.18 (13/01/15)
2
+
3
+ - back-port Rack::ShowStatus to be used with out ErrorApp (contains XSS fix #190)
4
+ - search rackup (config.ru) on context-classloader if not found elsewhere
5
+ - introduce a new ClassPathLayout where the whole app + gems are on CP (#191)
6
+ - update to (vendored) rack ~> 1.5.2 (for JRuby-Rack 1.1.x)
7
+ - use Rack::Utils.best_q_match in ErrorApp if available
8
+ - improved rack-compatibility for our "pure" servlet-env request env parsing
9
+ * raise a TypeError just like rack does when it detects invalid parameters
10
+ * compatibility with rack's parse_nested_query logic
11
+
1
12
  ## 1.1.17 (30/12/14)
2
13
 
3
14
  This release changes deployment from codehaus.org to oss.sonatype.org for artifacts.
data/README.md CHANGED
@@ -1,18 +1,18 @@
1
1
  # JRuby-Rack
2
2
 
3
3
  JRuby-Rack is a lightweight adapter for the Java Servlet environment that allows
4
- any Rack-based application to run unmodified in a Java Servlet container.
4
+ any (Ruby) Rack-based application to run unmodified in a Java Servlet container.
5
5
  JRuby-Rack supports Rails as well as any Rack-compatible Ruby web framework.
6
6
 
7
- For more information on Rack, visit http://rack.rubyforge.org.
7
+ For more information on Rack, visit http://rack.github.io/.
8
8
 
9
- [![Build Status][0]](http://travis-ci.org/jruby/jruby-rack)
9
+ [![Gem Version](https://badge.fury.io/rb/jruby-rack.png)][8]
10
+ [![Build Status][9]](http://travis-ci.org/jruby/jruby-rack)
10
11
 
11
12
  ## Compatibility
12
13
 
13
- JRuby-Rack 1.1.x aims to be compatible with JRuby 1.6 as well as 1.7 (we do
14
- recommend 1.7), Generally, any container that supports Java Servlet >= 2.5
15
- (JavaEE 5) specification is supported.
14
+ JRuby-Rack 1.1.x aims to be compatible with JRuby >= 1.6.4 (we recommend 1.7.x),
15
+ Generally, any container that supports Java Servlet >= 2.5 (JEE 5) is supported.
16
16
 
17
17
  ## Getting Started
18
18
 
@@ -326,11 +326,12 @@ package and push the .jar every time a commit changes a source file).
326
326
  ## Support
327
327
 
328
328
  Please use [github][4] to file bugs, patches and/or pull requests.
329
- More information at the [wiki][5] or ask us at the #jruby IRC channel.
329
+ More information at the [wiki][5] or ask us at **#jruby**'s IRC channel.
330
330
 
331
- [0]: https://secure.travis-ci.org/jruby/jruby-rack.png?branch=master
332
- [1]: http://caldersphere.rubyforge.org/warbler
333
- [2]: http://repository.codehaus.org/org/jruby/rack/jruby-rack/
331
+ [1]: https://github.com/jruby/warbler#warbler--
332
+ [2]: https://oss.sonatype.org/content/repositories/releases/org/jruby/rack/jruby-rack/
334
333
  [3]: https://github.com/trinidad/trinidad
335
334
  [4]: https://github.com/jruby/jruby-rack/issues
336
335
  [5]: https://wiki.github.com/jruby/jruby-rack
336
+ [8]: http://badge.fury.io/rb/jruby-rack
337
+ [9]: https://secure.travis-ci.org/jruby/jruby-rack.png?branch=1.1-stable
@@ -1,7 +1,7 @@
1
1
 
2
2
  module JRubyJars
3
3
  def self.jruby_rack_jar_path
4
- File.expand_path("../jruby-rack-1.1.17.jar", __FILE__)
4
+ File.expand_path("../jruby-rack-1.1.18.jar", __FILE__)
5
5
  end
6
6
  require jruby_rack_jar_path if defined?(JRUBY_VERSION)
7
7
  end
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = '1.1.17'
10
+ VERSION = '1.1.18'
11
11
  end
12
12
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.17
4
+ version: 1.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sieger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-30 00:00:00.000000000 Z
11
+ date: 2015-01-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
14
14
  email:
@@ -20,7 +20,7 @@ files:
20
20
  - History.md
21
21
  - LICENSE.txt
22
22
  - README.md
23
- - lib/jruby-rack-1.1.17.jar
23
+ - lib/jruby-rack-1.1.18.jar
24
24
  - lib/jruby-rack.rb
25
25
  - lib/jruby/rack/version.rb
26
26
  homepage: http://jruby.org