Charles Oliver Nutter
Charles Oliver Nutter
In jruby/jruby#8146 we saw that DelegateClass can be broken by JRuby extensions that do not explicitly set their initialize methods to Visibility.PRIVATE. This is an error-prone requirement as detailed in...
There are a few regressions that snuck in from recent optimization work (#8170 #8172 #8176 #8177 #8180). This PR will fix them.
This came from #7588. BNEInstr had a number of different paths to create, but it turns out all of them fall into these categories: * Comparison with true or false...
### Discussed in https://github.com/jruby/jruby/discussions/8187 Originally posted by **mrckzgl** April 3, 2024 Hey, we want to access the enums in this class: https://tinkerpop.apache.org/javadocs/current/core/org/apache/tinkerpop/gremlin/structure/VertexProperty.Cardinality.html from within JRuby. Before an upgrade of the...
These methods were not deprecated before JRuby 10, so they were left in place for one additional "major" release. This deletes them. They are very low risk of causing compile...
There are a number of IO types in JRuby that don't come from the standard set of channels on the JDK. Primary example of this is UNIXSocket/Server, which are provided...
We discovered a bug in http-cookie while investigating jruby/jruby#5910. In `AbstractStore`, (and also in `AbstractSaver` I believe) you have code like this: ```ruby ... class
This PR will fix #42 and include a test based on the code provided there by @djoooooe. The test was mistakenly added to master some time ago, and just removed,...
The jcodings test are rather slim and do not cover enough test cases or lines of code. Meanwhile, the JRuby-based encoding tests inherited from CRuby are quite extensive, and find...
From http://jira.codehaus.org/browse/JRUBY-7092 Following script produces different results on JRuby versus MRI: ``` ruby require 'openssl' puts "RUBY_ENGINE #{RUBY_ENGINE}" puts "RUBY_VERSION #{RUBY_VERSION}" cert_content =