Skip to content
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

v261 #1399

Merged
merged 4 commits into from
Nov 2, 2023
Merged

v261 #1399

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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## Main (unreleased)

- Exclude development-only files from the packaged buildpack
schneems marked this conversation as resolved.
Show resolved Hide resolved
## v261 (2023/11/02)

- JRuby 9.4.5.0 is now available
- JRuby 9.3.13.0 is now available
- Default Node.js version now 20.9.0

## v260 (2023/10/23)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ For more information about using Ruby and buildpacks on Heroku, see these Dev Ce

- [Heroku Ruby Support](https://devcenter.heroku.com/articles/ruby-support)
- [Getting Started with Ruby on Heroku](https://devcenter.heroku.com/articles/getting-started-with-ruby)
- [Getting Started with Rails 4 on Heroku](https://devcenter.heroku.com/articles/getting-started-with-rails4)
- [Getting Started with Rails 7 on Heroku](https://devcenter.heroku.com/articles/getting-started-with-rails7)
- [Buildpacks](https://devcenter.heroku.com/articles/buildpacks)
- [Buildpack API](https://devcenter.heroku.com/articles/buildpack-api)

Expand Down
10 changes: 10 additions & 0 deletions changelogs/v261/jruby_9.3.13.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## JRuby version 9.3.13.0 is now available

[JRuby v9.3.13.0](/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 "2.6.8", engine: "jruby", engine_version: "9.3.13.0"
```

The JRuby release notes can be found on the [JRuby website](https://www.jruby.org/news).
Empty file.
8 changes: 8 additions & 0 deletions changelogs/v261/node_20_9_0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Ruby apps now default to Node version 20.9.0

Applications using the `heroku/ruby` buildpack that do not already have `node` installed by another buildpack (such as the `heroku/nodejs`
buildpack) will now receive:

- Node.js version 20.9.0 (was previously 16.18.1)

These versions and instructions on how to specify a specific version of these binaries can be found on the [installed binaries section of the Heroku Ruby Support page](https://devcenter.heroku.com/articles/ruby-support#installed-binaries).
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 = "v260"
BUILDPACK_VERSION = "v261"
end
end