<olle>
I have a simple question: The README says "you can use jre7 and up" - is that still true? I'm troubleshooting a build on Travis for someone, and the JRuby matrix seems not to have any JDK version 7 in it.
<olle>
Is that because "unsupported by JRuby", "unsupported by Travis" or "other"?
<olle>
(amended with note that the test passes on 9.0.5.0)
<lopex>
smells JI
<olle>
ain't no party like an interop party
<olle>
OK, another test failure question: In a 9.2.0.0 stacktrace, is the following snippet JRuby code outputting? "Failure/Error: Unable to find java.net.SocksSocketImpl.remainingMillis(java/net/SocksSocketImpl.java to read failed line"
<olle>
headius: Apologies for unclarity, glad you found out.
<GitHub110>
[jruby] jeremyevans opened issue #5189: JRuby 9.2.0.0 warns about BigDecimal.new even in non-verbose mode https://git.io/vhIjy
drbobbeaty has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<GitHub132>
[jruby] jeremyevans opened issue #5190: JRuby 9.2.0.0 string deduplication via String#-@ does not work the same as CRuby https://git.io/vhLvg
<lopex>
release bug flood
<GitHub5>
[jruby] headius closed issue #5189: JRuby 9.2.0.0 warns about BigDecimal.new even in non-verbose mode https://git.io/vhIjy
<GitHub60>
jruby/master 98abdb4 Charles Oliver Nutter: Only warn about BigDecimal.new in verbose mode. Fixes #5189
<GitHub114>
[jruby] jeremyevans opened issue #5191: 9.2.0.0 Regression in DateTime.parse for BC dates https://git.io/vhLU9
ahorek has joined #jruby
ahorek has quit [Client Quit]
colinsurprenant has quit [Quit: colinsurprenant]
hoodow has quit [Quit: hoodow]
<lopex>
enebo, headius: that -@ might some tainting remnant difference ?
<lopex>
since accidental taint might affect frozen
<lopex>
and there's quite a few remnant in the coed ?
drbobbeaty has joined #jruby
<jeremyevans>
If I have existing code that rescues NativeException, what's the best way to handle that in a manner that works on JRuby 1.7-9.2 without a deprecation warning?
<jeremyevans>
I could just not rescue NativeException on 9.2, but will that cause any issues? In cases that previously raised NativeException, what Exception class is now raised?
colinsurprenant has joined #jruby
colinsurprenant has quit [Client Quit]
<lopex>
jeremyevans: what's the native exception origin actually ?
<lopex>
jeremyevans: there's one in pg driver too
<jeremyevans>
lopex: Not sure. Sequel theoretically supports any JDBC driver, could any of those raise NativeException in 9.2?