jruby-rack
jruby-rack copied to clipboard
Rack for JRuby and Java appservers
Bumps [rack](https://github.com/rack/rack) from 1.2.1 to 2.2.14. Release notes Sourced from rack's releases. v2.2.8.1 What's Changed Fixed ReDoS in Accept header parsing [CVE-2024-26146] Fixed ReDoS in Content Type header parsing [CVE-2024-25126]...
Suggested way to make logger work more like rails logged does in puma.
Updated a few files with changes required for upgrade to Jakarta EE 9+. The jar is getting generated but test cases are not getting executed, will work on that. Please...
My middleware is basically ``` def call(env) engine_mount_path = Foo::Engine.routes.find_script_name({}) env_path_info = env['PATH_INFO'] under_engine_mount_path = env_path_info.start_with?(engine_mount_path) under_and_status = under_engine_mount_path && env['PATH_INFO'].end_with?('/status') under_and_status ? Rails.logger.silence { @app.call(env) } : @app.call(env) end...
As noted in #289 , currently jruby-rack only supports Rack 2.2.x because of some major changes made to rack and splitting out rack-session with 3.0. At some point soon we'll...
Highly WIP/experimental right now as currently involves a rewrite/re-"port-from-rack" of the parameter parsing algorithm, and needs further discussion since this library diverges from Rack in some respects already, and we'll...
There are some straggler rails version-specific tests/code that are not currently running. Some may have been accidentally omitted from running on newer rails versions; others may have been logic specific...
currently I am facing issue while using warble gem. I am using Jruby based rails application. I am able to access direct file path code in server URL which breaking...