jruby-rack 1.1.20 → 1.1.21

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d438c0f4574f6acadee741826657109d9fd2863
4
- data.tar.gz: cc798501450350fb024f10b76617b1d7061445bd
3
+ metadata.gz: 42c7cc0d175790121e677fa3dadafa8aace1eaee
4
+ data.tar.gz: a83b8565b8c6eb30d39d71e88ed1d58e4bfe13f7
5
5
  SHA512:
6
- metadata.gz: 1aebb410f330e811d8aa1935653a086a262627e30773d1c8a1f9f9a15142d84edad4e0a701c8ec01dc9b816a542a8d1edbb46164067615304f67711e84abf334
7
- data.tar.gz: c9ed2c9f0739fc992b253eb966bde7f208a744e92055393deb7329f584430cf49f5ec2181d1e7798a8a8b1428214c8f15f97ef2044077a666298b771c5565cd3
6
+ metadata.gz: f39a27e9ce0bf8966aa5bf4d7245e696b1401b44e98cb9b5b5213b9dbf060f9fd1e888b3e8fa7231915e018ee0529bfbd664df9347b2978b23db328919870a1b
7
+ data.tar.gz: 20c77adbb39c8f0a9d3b8793a18923f57f2ff39934abb3a9563567095b2d461316b3cf1abcf7752225f70a181faa7261eced8ef7d18958562fb87de89ccb92dd
data/History.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 1.1.21 (17/09/17)
2
+
3
+ - update (bundled) rack to 1.6.8
4
+ - add Rack::Handler::Servlet::DefaultEnv#get_header (#212)
5
+ missing methods to handle ActionController::Base#reset_session
6
+ - can only safely stream natively on ActionDispatch <= 3.2 (#210)
7
+ (broken Rails streaming for Rails 4.x)
8
+ - when handling OPTION calls ignore both 'Date' and 'Allow' headers (#205)
9
+
1
10
  ## 1.1.20 (22/01/16)
2
11
 
3
12
  - pre-maturely avoid Ruby frozen string literals coming at us ... ''.dup meh!
@@ -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.20.jar", __FILE__)
4
+ File.expand_path("../jruby-rack-1.1.21.jar", __FILE__)
5
5
  end
6
6
  require jruby_rack_jar_path if defined?(JRUBY_VERSION)
7
7
  end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2012-2016 Karol Bucek, LTD.
2
+ # Copyright (c) 2012-2017 Karol Bucek, LTD.
3
3
  # Copyright (c) 2010-2012 Engine Yard, Inc.
4
4
  # Copyright (c) 2007-2009 Sun Microsystems, Inc.
5
5
  # This source code is available under the MIT license.
@@ -8,6 +8,6 @@
8
8
 
9
9
  module JRuby
10
10
  module Rack
11
- VERSION = '1.1.20'
11
+ VERSION = '1.1.21'
12
12
  end
13
13
  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.20
4
+ version: 1.1.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sieger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-22 00:00:00.000000000 Z
11
+ date: 2017-09-17 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.20.jar
23
+ - lib/jruby-rack-1.1.21.jar
24
24
  - lib/jruby-rack.rb
25
25
  - lib/jruby/rack/version.rb
26
26
  homepage: http://jruby.org
@@ -33,17 +33,17 @@ require_paths:
33
33
  - lib
34
34
  required_ruby_version: !ruby/object:Gem::Requirement
35
35
  requirements:
36
- - - '>='
36
+ - - ">="
37
37
  - !ruby/object:Gem::Version
38
38
  version: '0'
39
39
  required_rubygems_version: !ruby/object:Gem::Requirement
40
40
  requirements:
41
- - - '>='
41
+ - - ">="
42
42
  - !ruby/object:Gem::Version
43
43
  version: '0'
44
44
  requirements: []
45
45
  rubyforge_project:
46
- rubygems_version: 2.4.8
46
+ rubygems_version: 2.6.12
47
47
  signing_key:
48
48
  specification_version: 4
49
49
  summary: Rack adapter for JRuby and Servlet Containers