Skip to content

Commit 213cdc1

Browse files
committed
Update for 9.3.9.0 release
1 parent db5771b commit 213cdc1

File tree

5 files changed

+117
-24
lines changed

5 files changed

+117
-24
lines changed

_config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ markdown: kramdown
77
permalink: date
88
# JRuby-specific info here; goes into the "site" jekyll variable
99
release:
10-
url: /2022/09/13/jruby-9-3-8-0.html
11-
version: 9.3.8.0
12-
tar: https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.tar.gz
13-
zip: https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.zip
14-
exe: https://s3.amazonaws.com/jruby.org/downloads/9.3.8.0/jruby_windows_9_3_8_0.exe
15-
exe64: https://s3.amazonaws.com/jruby.org/downloads/9.3.8.0/jruby_windows_x64_9_3_8_0.exe
16-
gem: https://rubygems.org/gems/jruby-jars/versions/9.3.8.0
10+
url: /2022/10/24/jruby-9-3-9-0.html
11+
version: 9.3.9.0
12+
tar: https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz
13+
zip: https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip
14+
exe: https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_9_3_9_0.exe
15+
exe64: https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_x64_9_3_9_0.exe
16+
gem: https://rubygems.org/gems/jruby-jars/versions/9.3.9.0
1717
urls:
1818
maven: https://repo1.maven.org/maven2/org/jruby
1919
s3: https://s3.amazonaws.com/jruby.org/downloads
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
layout: post
3+
title: JRuby 9.3.8.0 Released
4+
---
5+
6+
The JRuby community is pleased to announce the release of JRuby 9.3.8.0
7+
8+
* Homepage: [https://www.jruby.org/](https://www.jruby.org/)
9+
* Download: [https://www.jruby.org/download](https://www.jruby.org/download)
10+
11+
JRuby 9.3.x is compatible with Ruby 2.6.x and stays in sync with C Ruby. As always there is a mix of miscellaneous fixes so be sure to read the issue list below.
12+
13+
Thanks to our contributors this cycle for helping to improve stability and compatibility of JRuby 9.3: [@chadlwilson], [@coheigea]
14+
15+
Standard Library
16+
----------------
17+
18+
* rdoc has been updated to 6.3.3 to fix all known CVEs. ([#7396], [#7404])
19+
* rexml has been updated to 3.2.5 to fix all known CVEs. ([#7395], [#7405])
20+
* jruby-openssl has been updated to 0.14.0 to fix weak HMAC key hashing in bouncycastle, which itself is updated to 1.71. ([#7335], [#7385], [#7399])
21+
* psych has been updated to 3.3.4 to fix CVE-2022-38752 in the SnakeYAML library, which itself is updated to 1.33. ([#7386], [#7388], [#7400])
22+
* rubygems has been updated to 3.2.33 and bundler updated to 2.2.33 to address CVE-2021-43809. ([#7397], [#7401])
23+
24+
### Github Issues resolved for 9.3.9.0
25+
26+
- [#5588 - OpenSSL::PKey::RSA.new without password results in terminal input failure](https://github.com/jruby/jruby/issues/5588)
27+
- [#7335 - Upgrade jruby-openssl to 0.14.0](https://github.com/jruby/jruby/issues/7335)
28+
- [#7367 - StringIO ignores external encoding on Windows](https://github.com/jruby/jruby/issues/7367)
29+
- [#7380 - [Tiny issue] swing2.rb example at https://github.com/jruby/jruby/blob/master/samples/swing2.rb has a warning, "swing.rb:4: warning: import is deprecated; use java_import"](https://github.com/jruby/jruby/issues/7380)
30+
- [#7385 - Updating jruby-openssl to 0.14.0](https://github.com/jruby/jruby/pull/7385)
31+
- [#7386 - Update SnakeYaml to 1.32+ due to CVE-2022-38752](https://github.com/jruby/jruby/issues/7386)
32+
- [#7388 - Update to Psych 3.3.4](https://github.com/jruby/jruby/pull/7388)
33+
- [#7395 - Update embedded rexml in jruby-complete](https://github.com/jruby/jruby/issues/7395)
34+
- [#7396 - Update rdoc in jruby-complete](https://github.com/jruby/jruby/issues/7396)
35+
- [#7397 - Update bundler in jruby-complete](https://github.com/jruby/jruby/issues/7397)
36+
- [#7399 - Update bouncycastle in jruby-complete](https://github.com/jruby/jruby/issues/7399)
37+
- [#7400 - Update snakeyaml in jruby-complete](https://github.com/jruby/jruby/issues/7400)
38+
- [#7401 - [deps] update Bundler/Rubygems to latest patch](https://github.com/jruby/jruby/pull/7401)
39+
- [#7404 - Update rdoc to 6.3.3 to fix known CVEs](https://github.com/jruby/jruby/pull/7404)
40+
- [#7405 - Update rexml to 3.2.5 to fix known CVEs](https://github.com/jruby/jruby/pull/7405)
41+
- [#7406 - Time.at with fractional seconds and :in doubles timezone offset](https://github.com/jruby/jruby/issues/7406)
42+
- [#7407 - Better match CRuby zone negotiation](https://github.com/jruby/jruby/pull/7407)
43+
- [#7416 - Regexp new none option](https://github.com/jruby/jruby/pull/7416)
44+
45+
46+
[@chadlwilson]: https://github.com/chadlwilson
47+
[@coheigea]: https://github.com/coheigea
48+
[#7396]: https://github.com/jruby/jruby/issues/7396
49+
[#7404]: https://github.com/jruby/jruby/issues/7404
50+
[#7395]: https://github.com/jruby/jruby/issues/7395
51+
[#7405]: https://github.com/jruby/jruby/issues/7405
52+
[#7335]: https://github.com/jruby/jruby/issues/7335
53+
[#7385]: https://github.com/jruby/jruby/issues/7385
54+
[#7399]: https://github.com/jruby/jruby/issues/7399
55+
[#7386]: https://github.com/jruby/jruby/issues/7386
56+
[#7388]: https://github.com/jruby/jruby/issues/7388
57+
[#7400]: https://github.com/jruby/jruby/issues/7400
58+
[#7397]: https://github.com/jruby/jruby/issues/7397
59+
[#7401]: https://github.com/jruby/jruby/issues/7401

download.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@
44
---
55
<h1 id='jruby_downloads'>JRuby Downloads</h1>
66

7-
<h2 id='current_release_jruby'>Current Release: JRuby 9.3.8.0</h2>
7+
<h2 id='current_release_jruby'>Current Release: JRuby 9.3.9.0</h2>
88

9-
<p>JRuby 9.3.8.0 is our point release of our Ruby 2.6.x support. Please check out our <a href='/2022/09/13/jruby-9-3-8-0'>release notes</a> for more information.</p>
9+
<p>JRuby 9.3.9.0 is our point release of our Ruby 2.6.x support. Please check out our <a href='/2022/10/24/jruby-9-3-9-0'>release notes</a> for more information.</p>
1010

1111
<p class="trackDownloads">
12-
<a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.tar.gz'>JRuby 9.3.8.0 Binary .tar.gz</a>
13-
(<a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.tar.gz.sha256'>sha256</a>)<br />
14-
<a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.zip'>JRuby 9.3.8.0 Binary .zip</a>
15-
(<a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-bin.zip.sha256'>sha256</a> )<br />
16-
<a href='{{ site.urls.s3 }}/9.3.8.0/jruby_windows_9_3_8_0.exe'>JRuby 9.3.8.0 Windows Executable</a>
17-
(<a href='{{ site.urls.s3 }}/9.3.8.0/jruby_windows_9_3_8_0.exe.md5'>md5</a>, <a href='{{ site.urls.s3 }}/9.3.8.0/jruby_windows_9_3_8_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.s3 }}/9.3.8.0/jruby_windows_9_3_8_0.exe.sha256'>sha256</a>)<br />
18-
<a href='{{ site.urls.s3 }}/9.3.8.0/jruby_windows_x64_9_3_8_0.exe'>JRuby 9.3.8.0 Windows Executable (x64)</a>
19-
(<a href='{{ site.urls.s3 }}/9.3.8.0/jruby_windows_x64_9_3_8_0.exe.md5'>md5</a>, <a href='{{ site.urls.s3 }}/9.3.8.0/jruby_windows_x64_9_3_8_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.s3 }}/9.3.8.0/jruby_windows_x64_9_3_8_0.exe.sha256'>sha256</a>)<br />
12+
<a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz'>JRuby 9.3.9.0 Binary .tar.gz</a>
13+
(<a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz.sha256'>sha256</a>)<br />
14+
<a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip'>JRuby 9.3.9.0 Binary .zip</a>
15+
(<a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip.sha256'>sha256</a> )<br />
16+
<a href='{{ site.urls.s3 }}/9.3.9.0/jruby_windows_9_3_9_0.exe'>JRuby 9.3.9.0 Windows Executable</a>
17+
(<a href='{{ site.urls.s3 }}/9.3.9.0/jruby_windows_9_3_9_0.exe.md5'>md5</a>, <a href='{{ site.urls.s3 }}/9.3.9.0/jruby_windows_9_3_9_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.s3 }}/9.3.9.0/jruby_windows_9_3_9_0.exe.sha256'>sha256</a>)<br />
18+
<a href='{{ site.urls.s3 }}/9.3.9.0/jruby_windows_x64_9_3_9_0.exe'>JRuby 9.3.9.0 Windows Executable (x64)</a>
19+
(<a href='{{ site.urls.s3 }}/9.3.9.0/jruby_windows_x64_9_3_9_0.exe.md5'>md5</a>, <a href='{{ site.urls.s3 }}/9.3.9.0/jruby_windows_x64_9_3_9_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.s3 }}/9.3.9.0/jruby_windows_x64_9_3_9_0.exe.sha256'>sha256</a>)<br />
2020
<!-- we do not push source tarballs to maven yet
21-
<a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-src.tar.gz'>JRuby 9.3.8.0 Source .tar.gz</a>
22-
(<a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-src.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-src.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-src.tar.gz.sha256'>sha256</a>)<br />
21+
<a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.tar.gz'>JRuby 9.3.9.0 Source .tar.gz</a>
22+
(<a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.tar.gz.sha256'>sha256</a>)<br />
2323
-->
24-
<a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-src.zip'>JRuby 9.3.8.0 Source .zip</a>
25-
(<a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-src.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-src.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.8.0/jruby-dist-9.3.8.0-src.zip.sha256'>sha256</a>)<br />
26-
<a href='{{ site.urls.maven }}/jruby-complete/9.3.8.0/jruby-complete-9.3.8.0.jar'>JRuby 9.3.8.0 Complete .jar</a>
27-
(<a href='{{ site.urls.maven }}/jruby-complete/9.3.8.0/jruby-complete-9.3.8.0.jar.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-complete/9.3.8.0/jruby-complete-9.3.8.0.jar.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-complete/9.3.8.0/jruby-complete-9.3.8.0.jar.sha256'>sha256</a>)<br />
28-
<a href='{{ site.release.gem }}'>JRuby-jars 9.3.8.0 .gem</a><br />
24+
<a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.zip'>JRuby 9.3.9.0 Source .zip</a>
25+
(<a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.zip.sha256'>sha256</a>)<br />
26+
<a href='{{ site.urls.maven }}/jruby-complete/9.3.9.0/jruby-complete-9.3.9.0.jar'>JRuby 9.3.9.0 Complete .jar</a>
27+
(<a href='{{ site.urls.maven }}/jruby-complete/9.3.9.0/jruby-complete-9.3.9.0.jar.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-complete/9.3.9.0/jruby-complete-9.3.9.0.jar.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-complete/9.3.9.0/jruby-complete-9.3.9.0.jar.sha256'>sha256</a>)<br />
28+
<a href='{{ site.release.gem }}'>JRuby-jars 9.3.9.0 .gem</a><br />
2929
</p>
3030

3131
<p>JRuby 9.2.21.0 is our point release of our Ruby 2.5.x support. Please check out our <a href='/2022/06/27/jruby-9-2-21-0'>release notes</a> for more information.</p>

files/downloads/9.3.9.0/index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: main
3+
title: Files/downloads/9.3.9.0
4+
---
5+
<h1>Files/downloads/9.3.9.0</h1>
6+
<p class="trackDownloads">
7+
<a href='/files/downloads/index.html'>..</a><br/>
8+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz'>jruby-bin-9.3.9.0.tar.gz</a><br/>
9+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz.md5'>jruby-bin-9.3.9.0.tar.gz.md5</a><br/>
10+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz.sha1'>jruby-bin-9.3.9.0.tar.gz.sha1</a><br/>
11+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.tar.gz.sha256'>jruby-bin-9.3.9.0.tar.gz.sha256</a><br/>
12+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip'>jruby-bin-9.3.9.0.zip</a><br/>
13+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip.md5'>jruby-bin-9.3.9.0.zip.md5</a><br/>
14+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip.sha1'>jruby-bin-9.3.9.0.zip.sha1</a><br/>
15+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-bin.zip.sha256'>jruby-bin-9.3.9.0.zip.sha256</a><br/>
16+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.3.9.0/jruby-complete-9.3.9.0.jar'>jruby-complete-9.3.9.0.jar</a><br/>
17+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.3.9.0/jruby-complete-9.3.9.0.jar.md5'>jruby-complete-9.3.9.0.jar.md5</a><br/>
18+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.3.9.0/jruby-complete-9.3.9.0.jar.sha1'>jruby-complete-9.3.9.0.jar.sha1</a><br/>
19+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.3.9.0/jruby-complete-9.3.9.0.jar.sha256'>jruby-complete-9.3.9.0.jar.sha256</a><br/>
20+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.zip'>jruby-src-9.3.9.0.zip</a><br/>
21+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.zip.md5'>jruby-src-9.3.9.0.zip.md5</a><br/>
22+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.zip.sha1'>jruby-src-9.3.9.0.zip.sha1</a><br/>
23+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.9.0/jruby-dist-9.3.9.0-src.zip.sha256'>jruby-src-9.3.9.0.zip.sha256</a><br/>
24+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_9_3_9_0.exe'>jruby_windows_9_3_9_0.exe</a><br/>
25+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_9_3_9_0.exe.md5'>jruby_windows_9_3_9_0.exe.md5</a><br/>
26+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_9_3_9_0.exe.sha1'>jruby_windows_9_3_9_0.exe.sha1</a><br/>
27+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_9_3_9_0.exe.sha256'>jruby_windows_9_3_9_0.exe.sha256</a><br/>
28+
29+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_x64_9_3_9_0.exe'>jruby_windows_x64_9_3_9_0.exe</a><br/>
30+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_x64_9_3_9_0.exe.md5'>jruby_windows_x64_9_3_9_0.exe.md5</a><br/>
31+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_x64_9_3_9_0.exe.sha1'>jruby_windows_x64_9_3_9_0.exe.sha1</a><br/>
32+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.3.9.0/jruby_windows_x64_9_3_9_0.exe.sha256'>jruby_windows_x64_9_3_9_0.exe.sha256</a><br/>
33+
</p>

files/downloads/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,6 @@ <h1>Files/downloads</h1>
139139
<a href='/files/downloads/9.3.6.0/index.html'>9.3.6.0</a><br/>
140140
<a href='/files/downloads/9.3.7.0/index.html'>9.3.7.0</a><br/>
141141
<a href='/files/downloads/9.3.8.0/index.html'>9.3.8.0</a><br/>
142+
<a href='/files/downloads/9.3.9.0/index.html'>9.3.9.0</a><br/>
142143
<a href='https://s3.amazonaws.com/jruby.org/downloads/index.txt'>index.txt</a><br/>
143144
</p>

0 commit comments

Comments
 (0)