jruby-rack 1.1.19 → 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: 6633d18b12cd09a1057b8c669e4c5543748bb579
4
- data.tar.gz: 4690c67eaa1a73e00e7005df604ebfa1e88e1f3a
3
+ metadata.gz: b2e23d3f7b4edb117ef52f46e19dc6d715ac9b2d
4
+ data.tar.gz: e2f0bf7e45f8d02e2f59ca620df40b6c3de75972
5
5
  SHA512:
6
- metadata.gz: e0bbef2f73c8ddfff57d8cd12ff3afcb6131fe5f25ea45ef676e2ebedc1bf6fbb1a0c1ea8f4721613d8b04d10054310186be458becdb09d8cbae3319414a856d
7
- data.tar.gz: ce7a3bea2285e274ba10ec23dcd55d9f552e7e4a98d7f6ff578ff62e75911e4ecc1b0f35f2ce4be0f8f9ffecbcfa217131e47a9653af023dfa2f36042ae85f9c
6
+ metadata.gz: 122497458678d930cd3d053ae27a00c9310f39571ffefa1fe272a896d381aaaa5cf7001f152e47f1395372efd520b663ff97a71e5ae69dc6c7f60ca7d32beecd
7
+ data.tar.gz: d58fd78f73519d6b73dcfd743b0047554c497e09f901fd0d5f8375125cd178da9f98ab3195ba86e1a97f97fc6beb1c80af3af7b52fea988245051ca063da945b
data/History.md CHANGED
@@ -1,4 +1,31 @@
1
- ## 1.1.19 (30/06/15)
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
+
9
+ ## 1.1.21 (17/09/17)
10
+
11
+ - update (bundled) rack to 1.6.8
12
+ - add Rack::Handler::Servlet::DefaultEnv#get_header (#212)
13
+ missing methods to handle ActionController::Base#reset_session
14
+ - can only safely stream natively on ActionDispatch <= 3.2 (#210)
15
+ (broken Rails streaming for Rails 4.x)
16
+ - when handling OPTION calls ignore both 'Date' and 'Allow' headers (#205)
17
+
18
+ ## 1.1.20 (22/01/16)
19
+
20
+ - pre-maturely avoid Ruby frozen string literals coming at us ... ''.dup meh!
21
+ - allow to boot when RAILS_ROOT/public directory does not exist (closes #197)
22
+ - for better booter detection - export public path after working dir was changed
23
+ - `ActionController::Base` provides a method `servlet_response` to return the
24
+ `java.servlet_response` rack env (#201)
25
+ - adjust jruby home dir fallback (for default $LOAD_PATH) correctly on 9K and --2.0
26
+ - servlet env should behave on `fetch` and `[]` like a Hash (nil value can be set)
27
+
28
+ ## 1.1.19 (01/07/15)
2
29
 
3
30
  - update (bundled) rack to 1.5.5
4
31
  - servlet attrs with null/false values should not end up with an '' env value (#195)
data/LICENSE.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # The MIT License
3
3
  #
4
- # Copyright (c) 2012-2014 Karol Bucek, LTD
4
+ # Copyright (c) 2012-2016 Karol Bucek, LTD.
5
5
  # Copyright (c) 2010-2012 Engine Yard, Inc.
6
6
  # Copyright (c) 2007-2009 Sun Microsystems, Inc.
7
7
  #
@@ -1,4 +1,5 @@
1
1
  #--
2
+ # Copyright (c) 2012-2017 Karol Bucek, LTD.
2
3
  # Copyright (c) 2010-2012 Engine Yard, Inc.
3
4
  # Copyright (c) 2007-2009 Sun Microsystems, Inc.
4
5
  # This source code is available under the MIT license.
@@ -7,6 +8,6 @@
7
8
 
8
9
  module JRuby
9
10
  module Rack
10
- VERSION = '1.1.19'
11
+ VERSION = '1.1.22'
11
12
  end
12
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.19.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.19
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: 2015-07-01 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.19.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
@@ -33,17 +34,17 @@ require_paths:
33
34
  - lib
34
35
  required_ruby_version: !ruby/object:Gem::Requirement
35
36
  requirements:
36
- - - '>='
37
+ - - ">="
37
38
  - !ruby/object:Gem::Version
38
39
  version: '0'
39
40
  required_rubygems_version: !ruby/object:Gem::Requirement
40
41
  requirements:
41
- - - '>='
42
+ - - ">="
42
43
  - !ruby/object:Gem::Version
43
44
  version: '0'
44
45
  requirements: []
45
46
  rubyforge_project:
46
- rubygems_version: 2.4.5
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