Skip to content

Create release for 3.3.9 #3596

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _data/downloads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ preview:
stable:

- 3.4.5
- 3.3.8
- 3.3.9
- 3.2.8

# optional
Expand Down
24 changes: 24 additions & 0 deletions _data/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,30 @@

# 3.3 series

- version: 3.3.9
date: '2025-07-24'
post: "/en/news/2025/07/24/ruby-3-3-9-released/"
url:
gz: https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.9.tar.gz
xz: https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.9.tar.xz
zip: https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.9.zip
size:
gz: 22217076
xz: 16436904
zip: 27649882
sha1:
gz: 26c37cff59c72a9249fa5fd3d9a301f320315ea1
xz: b303b2dbcb46ce97c24e40ac0e3f5148058a2299
zip: eff79d7ee7f23bf0d5c68a81b3f006878037fcd5
sha256:
gz: d1991690a4e17233ec6b3c7844c1e1245c0adce3e00d713551d0458467b727b1
xz: 2b24a2180a2f7f63c099851a1d01e6928cf56d515d136a91bd2075423a7a76bb
zip: 110546854051d5142eba38e9f212ac69a7862835634174a641f88796fefcf987
sha512:
gz: 3a8215e42dcaa9d28a74afbf371e88c7393ace54a606f96d3027edf23a41953ba53360d2dcd74a38008a4ec9ca18af3acf44686253d819891c0c613c29327254
xz: 52be800daf9e983dd7539f6961ee6d4e863c8f4eefdce4fb1091fdfe05339531832dd88d2a8b6f5cdcd790f9d5aefa3bc08574fcb2bab399200d20fa0ad1db18
zip: 67a6e0bdce21b237d8db62a8351fb544dc8cf15a1afcb111d0589b0384f6b977a3f779042ef49eb170256ac168e0477b8b56f343ab381422e788850c1d171382

- version: 3.3.8
date: 2025-04-09
post: "/en/news/2025/04/09/ruby-3-3-8-released/"
Expand Down
51 changes: 51 additions & 0 deletions en/news/_posts/2025-07-24-ruby-3-3-9-released.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
layout: news_post
title: "Ruby 3.3.9 Released"
author: nagachika
translator:
date: 2025-07-24 11:00:00 +0000
lang: en
---

Ruby 3.3.9 has been released.

This release includes the following security fix of default gems:

* [CVE-2025-24294: Possible Denial of Service in resolv gem](https://www.ruby-lang.org/en/news/2025/07/08/dos-resolv-cve-2025-24294/)

and the following fixes for build issues:

* GCC 15.1
* Visual Studio 2022 Version 17.14

Please see the [GitHub releases](https://github.com/ruby/ruby/releases/tag/v3_3_9) for further details.

## Download

{% assign release = site.data.releases | where: "version", "3.3.9" | first %}

* <{{ release.url.gz }}>

SIZE: {{ release.size.gz }}
SHA1: {{ release.sha1.gz }}
SHA256: {{ release.sha256.gz }}
SHA512: {{ release.sha512.gz }}

* <{{ release.url.xz }}>

SIZE: {{ release.size.xz }}
SHA1: {{ release.sha1.xz }}
SHA256: {{ release.sha256.xz }}
SHA512: {{ release.sha512.xz }}

* <{{ release.url.zip }}>

SIZE: {{ release.size.zip }}
SHA1: {{ release.sha1.zip }}
SHA256: {{ release.sha256.zip }}
SHA512: {{ release.sha512.zip }}

## Release Comment

Many committers, developers, and users who provided bug reports helped us make this release.
Thanks for their contributions.
Loading