jruby-rack 1.3.0 → 2.0.0
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 +4 -4
- data/CHANGELOG.md +6 -2
- data/README.md +9 -7
- data/lib/jruby/rack/version.rb +1 -1
- data/lib/{jruby-rack-1.3.0.jar → jruby-rack-2.0.0.jar} +0 -0
- data/lib/jruby-rack.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 128ad4a9ac4dafc4462d26122ef11fc05719c08a11b8c89d3c075ab1a1c81654
|
|
4
|
+
data.tar.gz: 10499c46a1b321505ff7734b1afaa843a45b67a32897f9c0bd08be84805095d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 767d49b2208954736f3f91fb92df9a75c9da81fe522d2fad18c997762330771cf944f19ab6ad5350f62e31777d869f29068c124b43b58727416e1c806be640a1
|
|
7
|
+
data.tar.gz: de1e507e776c5adbef120a9c28a175c0fb3a45b525a9a77a5481193cec04b542e49e96ec208fcfb1e3d0d3a4c0569df74b098505129fe17f856d22a9e13b3b69
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
##
|
|
1
|
+
## 2.0.0 (UNRELEASED)
|
|
2
|
+
|
|
3
|
+
- Support Jakarta Servlet API 5.0 → 6.1 (Jakarta EE 9 → 11)
|
|
4
|
+
|
|
5
|
+
## 1.3.0 (UNRELEASED)
|
|
2
6
|
|
|
3
7
|
- Officially support Javax Servlet API 4.0 (JEE 8)
|
|
4
|
-
- Refactor logging for more sane defaults
|
|
8
|
+
- Refactor logging for more sane defaults and improved performance
|
|
5
9
|
- Remove long-deprecated configuration and API functionality
|
|
6
10
|
|
|
7
11
|
For most users this should be a minor upgrade; as long as you do not depend on functionality deprecated within
|
data/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
[](https://rubygems.org/gems/jruby-rack)
|
|
4
4
|
[](https://central.sonatype.com/artifact/org.jruby.rack/jruby-rack)
|
|
5
5
|
[](https://github.com/jruby/jruby-rack/actions/workflows/maven.yml?query=branch%3Amaster) (master)
|
|
6
|
+
[](https://github.com/jruby/jruby-rack/actions/workflows/maven.yml?query=branch%3A1.3-stable) (1.3.x)
|
|
6
7
|
[](https://github.com/jruby/jruby-rack/actions/workflows/maven.yml?query=branch%3A1.2-stable) (1.2.x)
|
|
7
8
|
|
|
8
9
|
JRuby-Rack is a lightweight adapter for the Java Servlet environment that allows
|
|
@@ -13,12 +14,13 @@ For more information on Rack, visit http://rack.github.io/.
|
|
|
13
14
|
|
|
14
15
|
## Compatibility
|
|
15
16
|
|
|
16
|
-
| JRuby-Rack Series
|
|
17
|
-
|
|
18
|
-
|
|
|
19
|
-
| [**1.
|
|
20
|
-
| [**1.
|
|
21
|
-
| [**1.
|
|
17
|
+
| JRuby-Rack Series | Status | Rack | JRuby | Java | Rails | Servlet API (min → mostly supported) | Notes |
|
|
18
|
+
|------------------------------------------------------------------------------------------|---------------|-----------|-------------|------|-----------|--------------------------------------|-----------------------------------------------------------|
|
|
19
|
+
| **2.0 (_master_, _unreleased_)** | Maintained | 2.2 | 10.0 → 10.1 | 21+ | 7.2 → 8.0 | 5.0 → 6.1 (Jakarta EE 9 → 11) | ❌ Servlet < 5.0 containers will not work |
|
|
20
|
+
| [**1.3**](https://github.com/jruby/jruby-rack/tree/1.3-stable) (_planned_, _unreleased_) | Maintained | 2.2 | 10.0 → 10.1 | 21+ | 7.2 → 8.0 | 4.0 (Java EE 8) | ✅ _Unofficial_: Rails 6.1 → 7.1 untested, but likely OK. |
|
|
21
|
+
| [**1.2**](https://github.com/jruby/jruby-rack/tree/1.2-stable) | EOL @ 2026-09 | 2.2 | 9.3 → 10.1 | 8+ | 5.0 → 8.0 | 3.0 → 4.0 (Java EE 6 → 7) | |
|
|
22
|
+
| [**1.1**](https://github.com/jruby/jruby-rack/tree/1.1-stable) | EOL @ 2024-05 | 1.x → 2.2 | 1.6 → 9.4 | 6+ | 2.1 → 5.2 | 2.5 → 4.0 (Java EE 5 → 7) | |
|
|
23
|
+
| [**1.0**](https://github.com/jruby/jruby-rack/tree/1.0.10) | EOL @ 2011-11 | 0.9 → 1.x | 1.1 → 1.9 | 5+ | 2.1 → 3.x | 2.5 (Java EE 5) | |
|
|
22
24
|
|
|
23
25
|
## Getting Started
|
|
24
26
|
|
|
@@ -274,7 +276,7 @@ or available on the application's gem path.
|
|
|
274
276
|
## Logging
|
|
275
277
|
|
|
276
278
|
JRuby-Rack sets up a delegate logger for Rails that sends logging output to
|
|
277
|
-
`
|
|
279
|
+
`jakarta.servlet.ServletContext#log` by default. If you wish to use a different
|
|
278
280
|
logging system, configure `jruby.rack.logging` as follows:
|
|
279
281
|
|
|
280
282
|
- `servlet_context` (default): Sends log messages to the servlet context.
|
data/lib/jruby/rack/version.rb
CHANGED
|
Binary file
|
data/lib/jruby-rack.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby-rack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Sieger
|
|
@@ -36,7 +36,7 @@ files:
|
|
|
36
36
|
- CHANGELOG.md
|
|
37
37
|
- LICENSE.txt
|
|
38
38
|
- README.md
|
|
39
|
-
- lib/jruby-rack-
|
|
39
|
+
- lib/jruby-rack-2.0.0.jar
|
|
40
40
|
- lib/jruby-rack.rb
|
|
41
41
|
- lib/jruby/rack/version.rb
|
|
42
42
|
homepage: http://jruby.org
|