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

[#8056] Add support for Ruby 3.3 #8529

Merged
merged 2 commits into from
Jan 15, 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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
matrix:
include:
- { ruby: '3.2', postgres: 13.5 }
- { ruby: '3.3', postgres: 13.5 }

services:
postgres:
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ gem 'zip_tricks', '~> 5.6.0'

# Gems that are part of Ruby's standard library but need version constraints as
# they are required by other Gem dependencies
gem 'csv', '~> 3.3.2'
gem 'drb', '~> 2.2.1'
gem 'uri', '~> 1.0.2'

# Gems only used by the research export task
Expand Down
4 changes: 4 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ GEM
bigdecimal
rexml
crass (1.0.6)
csv (3.3.2)
dalli (3.2.8)
dante (0.2.0)
date (3.4.1)
Expand All @@ -190,6 +191,7 @@ GEM
digest-crc (0.6.5)
rake (>= 12.0.0, < 14.0.0)
docile (1.4.0)
drb (2.2.1)
erubi (1.13.1)
execjs (2.9.1)
factory_bot (6.5.0)
Expand Down Expand Up @@ -614,7 +616,9 @@ DEPENDENCIES
capistrano (~> 2.15.11)
capybara (~> 3.40.0)
charlock_holmes (~> 0.7.9)
csv (~> 3.3.2)
dalli (~> 3.2.8)
drb (~> 2.2.1)
excel_analyzer!
exception_notification!
factory_bot_rails (~> 6.4.4)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ see [the project website](http://alaveteli.org) for instructions on installing A
Every Alaveteli commit is tested by GitHub Actions on the [following Ruby platforms](https://github.com/mysociety/alaveteli/blob/develop/.github/workflows/ci.yml#L27-L29)

* ruby-3.2
* ruby-3.3

If you use a ruby version management tool (such as RVM or .rbenv) and want to use the default development version used by the Alaveteli team (currently 3.2.6), you can create a `.ruby-version` symlink with a target of `.ruby-version.example` to switch to that automatically in the project directory.

Expand Down
1 change: 1 addition & 0 deletions doc/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Highlighted Features

* Add support for Ruby 3.3 (Graeme Porteous)
* Update Rails application framework defaults (Graeme Porteous)
* Drop support for Ruby 3.1 (Graeme Porteous)

Expand Down
Loading