jruby-rack 1.1.21 → 1.1.22

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: 42c7cc0d175790121e677fa3dadafa8aace1eaee
4
- data.tar.gz: a83b8565b8c6eb30d39d71e88ed1d58e4bfe13f7
3
+ metadata.gz: b2e23d3f7b4edb117ef52f46e19dc6d715ac9b2d
4
+ data.tar.gz: e2f0bf7e45f8d02e2f59ca620df40b6c3de75972
5
5
  SHA512:
6
- metadata.gz: f39a27e9ce0bf8966aa5bf4d7245e696b1401b44e98cb9b5b5213b9dbf060f9fd1e888b3e8fa7231915e018ee0529bfbd664df9347b2978b23db328919870a1b
7
- data.tar.gz: 20c77adbb39c8f0a9d3b8793a18923f57f2ff39934abb3a9563567095b2d461316b3cf1abcf7752225f70a181faa7261eced8ef7d18958562fb87de89ccb92dd
6
+ metadata.gz: 122497458678d930cd3d053ae27a00c9310f39571ffefa1fe272a896d381aaaa5cf7001f152e47f1395372efd520b663ff97a71e5ae69dc6c7f60ca7d32beecd
7
+ data.tar.gz: d58fd78f73519d6b73dcfd743b0047554c497e09f901fd0d5f8375125cd178da9f98ab3195ba86e1a97f97fc6beb1c80af3af7b52fea988245051ca063da945b
data/History.md CHANGED
@@ -1,9 +1,17 @@
1
+ ## 1.1.22
2
+
3
+ - compile using Java 6 source compat
4
+ - update (bundled) rack to 1.6.13
5
+ - avoid NativeException - not used on recent JRuby
6
+ - avoid Fixnum warning - assume recent JRuby
7
+ - Add error message to log when runtime error is handled (#213)
8
+
1
9
  ## 1.1.21 (17/09/17)
2
10
 
3
11
  - update (bundled) rack to 1.6.8
4
12
  - add Rack::Handler::Servlet::DefaultEnv#get_header (#212)
5
13
  missing methods to handle ActionController::Base#reset_session
6
- - can only safely stream natively on ActionDispatch <= 3.2 (#210)
14
+ - can only safely stream natively on ActionDispatch <= 3.2 (#210)
7
15
  (broken Rails streaming for Rails 4.x)
8
16
  - when handling OPTION calls ignore both 'Date' and 'Allow' headers (#205)
9
17
 
@@ -8,6 +8,6 @@
8
8
 
9
9
  module JRuby
10
10
  module Rack
11
- VERSION = '1.1.21'
11
+ VERSION = '1.1.22'
12
12
  end
13
13
  end
Binary file
data/lib/jruby-rack.rb CHANGED
@@ -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.21.jar", __FILE__)
4
+ File.expand_path("../jruby-rack-1.1.22.jar", __FILE__)
5
5
  end
6
6
  require jruby_rack_jar_path if defined?(JRUBY_VERSION)
7
7
  end
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.21
4
+ version: 1.1.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sieger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-17 00:00:00.000000000 Z
11
+ date: 2022-08-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
13
+ description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet
14
+ API to Rack. For JRuby only.
14
15
  email:
15
16
  - nick@nicksieger.com
16
17
  executables: []
@@ -20,7 +21,7 @@ files:
20
21
  - History.md
21
22
  - LICENSE.txt
22
23
  - README.md
23
- - lib/jruby-rack-1.1.21.jar
24
+ - lib/jruby-rack-1.1.22.jar
24
25
  - lib/jruby-rack.rb
25
26
  - lib/jruby/rack/version.rb
26
27
  homepage: http://jruby.org
@@ -43,7 +44,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
43
44
  version: '0'
44
45
  requirements: []
45
46
  rubyforge_project:
46
- rubygems_version: 2.6.12
47
+ rubygems_version: 2.6.14.1
47
48
  signing_key:
48
49
  specification_version: 4
49
50
  summary: Rack adapter for JRuby and Servlet Containers
Binary file