|
| 1 | +--- |
| 2 | +layout: news_post |
| 3 | +title: "Ruby 3.3.4 Released" |
| 4 | +author: "k0kubun" |
| 5 | +translator: |
| 6 | +date: 2024-07-12 00:30:00 +0000 |
| 7 | +lang: en |
| 8 | +--- |
| 9 | + |
| 10 | +Ruby 3.3.4 has been released. |
| 11 | + |
| 12 | +This release fixes a regression in Ruby 3.3.3 that dependencies are missing in the gemspec |
| 13 | +of some bundled gems: `net-pop`, `net-ftp`, `net-imap`, and `prime` |
| 14 | +[[Bug #20581]](https://bugs.ruby-lang.org/issues/20581). |
| 15 | +The fix allows Bundler to successfully install those gems on platforms like Heroku. |
| 16 | +If your `bundle install` runs correctly now, you may not have this issue. |
| 17 | + |
| 18 | +Other changes are mostly minor bug fixes. |
| 19 | +Please see the [GitHub releases](https://github.com/ruby/ruby/releases/tag/v3_3_4) for further details. |
| 20 | + |
| 21 | +## Release Schedule |
| 22 | + |
| 23 | +Going forward, we intend to release the latest stable Ruby version (currently Ruby 3.3) every 2 months after a `.1` release. |
| 24 | +For Ruby 3.3, 3.3.5 is supposed to be released on Sep 3rd, 3.3.6 on Nov 5th, and 3.3.7 on Jan 7th. |
| 25 | + |
| 26 | +If there's any change that affects a considerable amount of people, e.g. Ruby 3.3.3 users on Heroku for this release, |
| 27 | +we may release a new version earlier than expected. |
| 28 | + |
| 29 | +## Download |
| 30 | + |
| 31 | +{% assign release = site.data.releases | where: "version", "3.3.4" | first %} |
| 32 | + |
| 33 | +* <{{ release.url.gz }}> |
| 34 | + |
| 35 | + SIZE: {{ release.size.gz }} |
| 36 | + SHA1: {{ release.sha1.gz }} |
| 37 | + SHA256: {{ release.sha256.gz }} |
| 38 | + SHA512: {{ release.sha512.gz }} |
| 39 | + |
| 40 | +* <{{ release.url.xz }}> |
| 41 | + |
| 42 | + SIZE: {{ release.size.xz }} |
| 43 | + SHA1: {{ release.sha1.xz }} |
| 44 | + SHA256: {{ release.sha256.xz }} |
| 45 | + SHA512: {{ release.sha512.xz }} |
| 46 | + |
| 47 | +* <{{ release.url.zip }}> |
| 48 | + |
| 49 | + SIZE: {{ release.size.zip }} |
| 50 | + SHA1: {{ release.sha1.zip }} |
| 51 | + SHA256: {{ release.sha256.zip }} |
| 52 | + SHA512: {{ release.sha512.zip }} |
| 53 | + |
| 54 | +## Release Comment |
| 55 | + |
| 56 | +Many committers, developers, and users who provided bug reports helped us make this release. |
| 57 | +Thanks for their contributions. |
0 commit comments