From db1c438462217d97eacb12b0c73a3f6b57a3d4a7 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Mon, 18 Dec 2023 11:38:39 +0000 Subject: [PATCH] Add support for Ruby 3.3 Fixes #8056 --- .github/workflows/ci.yml | 1 + README.md | 1 + doc/CHANGES.md | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15df62e015..af89a55938 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/README.md b/README.md index 455a6b5088..6fe5603601 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/doc/CHANGES.md b/doc/CHANGES.md index 8a2ea16f9c..ec3516ee22 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -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)