jruby-rack 1.2.6 → 1.2.7
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 +7 -0
- data/README.md +18 -11
- data/lib/jruby/rack/version.rb +1 -1
- data/lib/jruby-rack-1.2.7.jar +0 -0
- data/lib/jruby-rack.rb +1 -1
- metadata +4 -4
- data/lib/jruby-rack-1.2.6.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24de58d357962944b8e2dd77cf34c3af33e5e5f93a68ebf4f75c86666795a9a1
|
|
4
|
+
data.tar.gz: 3e19c76e147b46be50552f6df538588e023ea1fb2556c964633c16320493e84b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78c1c3a405e8858a390963ab7311a81ce31e3265936949b4900cd5d91b35f6b11f79b214ed46a7ce0951f9ae4f0492bfeef2379e1dedd48077038e943c70c2ba
|
|
7
|
+
data.tar.gz: e0462a4181218c7cbec0ffbb9d4dae3d0bf0fc0de80b8e971fa991056c281976afaa33a6ec873583d582b585a7dcfce8a7c79f2095d2cb445cf5598c13dbac8a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 1.2.7 (UNRELEASED)
|
|
2
|
+
|
|
3
|
+
- Ensure compatibility with JRuby 10.0 and 10.1 (#419, #423)
|
|
4
|
+
- Ensure compatibility with Rails 8.0 (#419)
|
|
5
|
+
- Fix ability to include and forward to JSPs under Rails (#370)
|
|
6
|
+
- Update (bundled) rack to 2.2.23 (#417)
|
|
7
|
+
|
|
1
8
|
## 1.2.6
|
|
2
9
|
|
|
3
10
|
- Add missing block-only signature for debug logging
|
data/README.md
CHANGED
|
@@ -13,11 +13,11 @@ For more information on Rack, visit http://rack.github.io/.
|
|
|
13
13
|
|
|
14
14
|
## Compatibility
|
|
15
15
|
|
|
16
|
-
| JRuby-Rack Series
|
|
17
|
-
|
|
18
|
-
| [1.2](https://github.com/jruby/jruby-rack/tree/1.2-stable) | Maintained
|
|
19
|
-
| [1.1](https://github.com/jruby/jruby-rack/tree/1.1-stable) | EOL
|
|
20
|
-
| 1.0
|
|
16
|
+
| JRuby-Rack Series | Status | Rack | JRuby | Java | Rails | Target Servlet API | Notes |
|
|
17
|
+
|----------------------------------------------------------------|---------------|-----------|------------|------|-----------|--------------------|----------------------------------------------------------------|
|
|
18
|
+
| [**1.2**](https://github.com/jruby/jruby-rack/tree/1.2-stable) | Maintained | 2.2 | 9.3 → 10.1 | 8+ | 5.0 → 8.0 | 3.0 (Java EE 6) | ✅ _Unofficial_: Servlet 3.1 → 4.0 also OK with most containers |
|
|
19
|
+
| [**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 (Java EE 5) | ✅ _Unofficial_: Servlet 3.0 → 4.0 also OK with most containers |
|
|
20
|
+
| [**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) | |
|
|
21
21
|
|
|
22
22
|
## Getting Started
|
|
23
23
|
|
|
@@ -125,7 +125,7 @@ can embed it directly in the `web.xml` as follows (using Sinatra as an example):
|
|
|
125
125
|
</context-param>
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
-
Be sure to escape angle-brackets for XML
|
|
128
|
+
Be sure to escape angle-brackets for XML!
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
## Servlet Filter
|
|
@@ -209,8 +209,6 @@ as context init parameters in web.xml or as VM-wide system properties.
|
|
|
209
209
|
sub-path of the main servlet context root.
|
|
210
210
|
- `gem.path`: Relative path to the bundled gem repository. Defaults to
|
|
211
211
|
`/WEB-INF/gems`.
|
|
212
|
-
- `jruby.compat.version`: Set to "1.8" or "1.9" to make JRuby run a specific
|
|
213
|
-
version of Ruby (same as the --1.8 / --1.9 command line flags).
|
|
214
212
|
- `jruby.min.runtimes`: For non-threadsafe Rails applications using a runtime
|
|
215
213
|
pool, specify an integer minimum number of runtimes to hold in the pool.
|
|
216
214
|
- `jruby.max.runtimes`: For non-threadsafe Rails applications, an integer
|
|
@@ -319,6 +317,9 @@ logging system, configure `jruby.rack.logging` as follows:
|
|
|
319
317
|
For those loggers that require a specific named logger, set it with the
|
|
320
318
|
`jruby.rack.logging.name` option, by default "jruby.rack" name will be used.
|
|
321
319
|
|
|
320
|
+
## Examples
|
|
321
|
+
|
|
322
|
+
Some example demo applications are available at [./examples](./examples).
|
|
322
323
|
|
|
323
324
|
## Building
|
|
324
325
|
|
|
@@ -352,11 +353,17 @@ package and push the .jar every time a commit changes a source file).
|
|
|
352
353
|
|
|
353
354
|
## Releasing
|
|
354
355
|
|
|
356
|
+
Releasing must be done by users authorized to push to the `org.jruby` group ID on https://central.sonatype.org and to push the `jruby-rack` gem to https://rubygems.org.
|
|
357
|
+
|
|
355
358
|
* Make sure auth is configured for "central" repository ID in your `.m2/settings.xml`
|
|
356
|
-
* Update the
|
|
357
|
-
*
|
|
358
|
-
* `./mvnw
|
|
359
|
+
* Update the versions in `pom.xml` and `src/main/ruby/jruby/rack/version.rb` to the release version
|
|
360
|
+
* Commit the version update locally
|
|
361
|
+
* Run `./mvnw deploy -Prelease` to build, sign, and push all artifacts to Maven Central staging
|
|
362
|
+
* Confirm the release completes publishing at `https://central.sonatype.org`
|
|
359
363
|
* `rake clean gem SKIP_SPECS=true` and push the gem
|
|
364
|
+
* Tag the release version in git
|
|
365
|
+
* Update the versions again to the next dev version (`-SNAPSHOT` for the Maven artifact in `pom.xml` and `.SNAPSHOT` for the gem in `version.rb`)
|
|
366
|
+
* Push all commits and tags to GitHub
|
|
360
367
|
|
|
361
368
|
## Adding testing for new Rails versions
|
|
362
369
|
|
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: 1.2.
|
|
4
|
+
version: 1.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Sieger
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
- JRuby contributors
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2026-05-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet
|
|
15
15
|
API to Rack. For JRuby only.
|
|
@@ -22,7 +22,7 @@ files:
|
|
|
22
22
|
- CHANGELOG.md
|
|
23
23
|
- LICENSE.txt
|
|
24
24
|
- README.md
|
|
25
|
-
- lib/jruby-rack-1.2.
|
|
25
|
+
- lib/jruby-rack-1.2.7.jar
|
|
26
26
|
- lib/jruby-rack.rb
|
|
27
27
|
- lib/jruby/rack/version.rb
|
|
28
28
|
homepage: http://jruby.org
|
|
@@ -43,7 +43,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
43
43
|
- !ruby/object:Gem::Version
|
|
44
44
|
version: '0'
|
|
45
45
|
requirements: []
|
|
46
|
-
rubygems_version:
|
|
46
|
+
rubygems_version: 4.0.3
|
|
47
47
|
specification_version: 4
|
|
48
48
|
summary: Rack adapter for JRuby and Servlet Containers
|
|
49
49
|
test_files: []
|
data/lib/jruby-rack-1.2.6.jar
DELETED
|
Binary file
|