Skip to content

Commit 00e92b1

Browse files
ajhodgsonCamJN
authored andcommitted
Upgrade to Ruby 3.3.5
[skip ci]
1 parent 453e752 commit 00e92b1

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## 3.0.8 (release date: TBD)
2+
* Upgraded to Ruby 3.3.5
23

34
## 3.0.7 (release date: 2024-07-30)
45
* Upgraded to Ruby 3.3.4

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ Basics (learn more at [baseimage-docker](http://phusion.github.io/baseimage-dock
9494

9595
Language support:
9696

97-
* Ruby 3.1.6, 3.2.5, 3.3.4 and JRuby 9.3.15.0 and 9.4.8.0.
97+
* Ruby 3.1.6, 3.2.5, 3.3.5 and JRuby 9.3.15.0 and 9.4.8.0.
9898
* RVM is used to manage Ruby versions. [Why RVM?](#why_rvm)
99-
* 3.3.4 is configured as the default.
99+
* 3.3.5 is configured as the default.
100100
* JRuby is installed from source, but we register an APT entry for it.
101101
* JRuby uses OpenJDK 17.
102102
* Python 2.7 or 3.10, or any version provided by the Deadsnakes PPA (currently 3.7, 3.8, 3.9, 3.11, and 3.12; see https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa).
@@ -451,8 +451,8 @@ The default Ruby (what the `/usr/bin/ruby` command executes) is the latest Ruby
451451
RUN bash -lc 'rvm --default use ruby-3.1.6'
452452
# Ruby 3.2.5
453453
RUN bash -lc 'rvm --default use ruby-3.2.5'
454-
# Ruby 3.3.4
455-
RUN bash -lc 'rvm --default use ruby-3.3.4'
454+
# Ruby 3.3.5
455+
RUN bash -lc 'rvm --default use ruby-3.3.5'
456456
# JRuby 9.3.15.0
457457
RUN bash -lc 'rvm --default use jruby-9.3.15.0'
458458
# JRuby 9.4.8.0
@@ -471,16 +471,16 @@ $ rvm-exec 3.1.6 ruby -v
471471
Using /usr/local/rvm/gems/ruby-3.1.6
472472
ruby 3.1.6p260 (2024-05-29 revision a777087be6) [x86_64-linux]
473473

474-
$ rvm-exec 3.3.4 ruby -v
475-
Using /usr/local/rvm/gems/ruby-3.3.4
476-
ruby 3.3.4 (2024-07-09 revision be1089c8ec) [x86_64-linux]
474+
$ rvm-exec 3.3.5 ruby -v
475+
Using /usr/local/rvm/gems/ruby-3.3.5
476+
ruby 3.3.5 (2024-09-03 revision ef084cc8f4) [x86_64-linux]
477477
```
478478

479479
More examples, but with Bundler instead:
480480

481481
```bash
482-
# This runs 'bundle install' using Ruby 3.3.4
483-
rvm-exec 3.3.4 bundle install
482+
# This runs 'bundle install' using Ruby 3.3.5
483+
rvm-exec 3.3.5 bundle install
484484
```
485485

486486
<a name="default_ruby_wrapper_scripts"></a>

image/nginx-passenger.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ header "Installing Phusion Passenger..."
99
## Install it through RVM, not APT, so that the -customizable variant cannot end up
1010
## having Ruby installed from both APT and RVM.
1111
if [[ ! -e /usr/bin/ruby ]]; then
12-
RVM_ID="ruby-3.3.4"
12+
RVM_ID="ruby-3.3.5"
1313

1414
run mkdir -p "/build_cache/${ARCH}"
1515
if [[ -e "/build_cache/${ARCH}/${RVM_ID}.tar.bz2" ]]; then
File renamed without changes.

0 commit comments

Comments
 (0)