Skip to content
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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
## [Unreleased]


## [v293] - 2025-02-15

- Ruby 3.4.2 is now available (https://github.com/heroku/heroku-buildpack-ruby/pull/1548)

## [v292] - 2025-02-10

- Ruby 3.2.7 is now available (https://github.com/heroku/heroku-buildpack-ruby/pull/1545)

## [v291] - 2025-01-30

- JRuby 9.4.11.0 is now available (https://github.com/heroku/heroku-buildpack-ruby/pull/1542)
Expand Down Expand Up @@ -1628,7 +1636,9 @@ Bugfixes:
* Change gem detection to use lockfile parser
* use `$RACK_ENV` when thin is detected for rack apps

[unreleased]: https://github.com/heroku/heroku-buildpack-ruby/compare/v291...main
[unreleased]: https://github.com/heroku/heroku-buildpack-ruby/compare/v293...main
[v293]: https://github.com/heroku/heroku-buildpack-ruby/compare/v292...v293
[v292]: https://github.com/heroku/heroku-buildpack-ruby/compare/v291...v292
[v291]: https://github.com/heroku/heroku-buildpack-ruby/compare/v290...v291
[v290]: https://github.com/heroku/heroku-buildpack-ruby/compare/v289...v290
[v289]: https://github.com/heroku/heroku-buildpack-ruby/compare/v288...v289
Expand Down
9 changes: 9 additions & 0 deletions changelogs/v292/ruby-3.2.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Ruby version 3.2.7 is now available

[Ruby v3.2.7](/articles/ruby-support#ruby-versions) is now available on Heroku. To run your app using this version of Ruby, add the following `ruby` directive to your Gemfile:

```ruby
ruby "3.2.7"
```

For more information on [Ruby 3.2.7, you can view the release announcement](https://www.ruby-lang.org/en/news/).
9 changes: 9 additions & 0 deletions changelogs/v293/ruby-3.4.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Ruby version 3.4.2 is now available

[Ruby v3.4.2](/articles/ruby-support#ruby-versions) is now available on Heroku. To run your app using this version of Ruby, add the following `ruby` directive to your Gemfile:

```ruby
ruby "3.4.2"
```

For more information on [Ruby 3.4.2, you can view the release announcement](https://www.ruby-lang.org/en/news/).
2 changes: 1 addition & 1 deletion lib/language_pack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module LanguagePack
class LanguagePack::Base
BUILDPACK_VERSION = "v291"
BUILDPACK_VERSION = "v293"
end
end