Skip to content

Commit

Permalink
Add support for Ruby 3.3
Browse files Browse the repository at this point in the history
Fixes #8056
  • Loading branch information
gbp committed Dec 18, 2023
1 parent c4844c7 commit da67765
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
- { ruby: '3.0', postgres: 13.5 }
- { ruby: '3.1', postgres: 13.5 }
- { ruby: '3.2', postgres: 13.5 }
- { ruby: '3.3', postgres: 13.5 }

services:
postgres:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ gem 'iso_country_codes', '~> 0.7.8'
gem 'mail', '~> 2.8.1'
gem 'maxmind-db', '~> 1.2.0'
gem 'mahoro', '~> 0.5'
gem 'nokogiri', '~> 1.15.5'
gem 'nokogiri', '1.16.0.rc1'
gem 'open4', '~> 1.3.0'
gem 'rack', '~> 2.2.8'
gem 'rack-utf8_sanitizer', '~> 1.9.1'
Expand Down
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -350,16 +350,16 @@ GEM
net-ssh-gateway (2.0.0)
net-ssh (>= 4.0.0)
nio4r (2.5.9)
nokogiri (1.15.5)
nokogiri (1.16.0.rc1)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.15.5-aarch64-linux)
nokogiri (1.16.0.rc1-aarch64-linux)
racc (~> 1.4)
nokogiri (1.15.5-arm64-darwin)
nokogiri (1.16.0.rc1-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.5-x86_64-darwin)
nokogiri (1.16.0.rc1-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.15.5-x86_64-linux)
nokogiri (1.16.0.rc1-x86_64-linux)
racc (~> 1.4)
oink (0.10.1)
activerecord
Expand Down Expand Up @@ -617,7 +617,7 @@ DEPENDENCIES
net-protocol (~> 0.1.3)
net-ssh (~> 7.2.0)
net-ssh-gateway (>= 1.1.0, < 3.0.0)
nokogiri (~> 1.15.5)
nokogiri (= 1.16.0.rc1)
oink (~> 0.10.1)
open4 (~> 1.3.0)
pg (~> 1.5.4)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Every Alaveteli commit is tested by GitHub Actions on the [following Ruby platfo
* ruby-3.0
* ruby-3.1
* 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.0.4), 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)
* Add link from incoming message to admin page for attachments (Gareth Rees)
* Add XSLX spreadsheet analyser to automatically detect hidden data (Helen
Cross, Graeme Porteous)
Expand Down

0 comments on commit da67765

Please sign in to comment.