Drop support for ruby 3.2 (#37476)

This commit is contained in:
Matt Jankowski 2026-03-25 09:18:34 -04:00 committed by GitHub
parent 664efcf4c3
commit 2112ea4d63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 3 additions and 6 deletions

View File

@ -124,7 +124,6 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
ruby-version: ruby-version:
- '3.2'
- '3.3' - '3.3'
- '.ruby-version' - '.ruby-version'
steps: steps:
@ -217,7 +216,6 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
ruby-version: ruby-version:
- '3.2'
- '3.3' - '3.3'
- '.ruby-version' - '.ruby-version'
@ -348,7 +346,6 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
ruby-version: ruby-version:
- '3.2'
- '3.3' - '3.3'
- '.ruby-version' - '.ruby-version'
search-image: search-image:

View File

@ -8,7 +8,7 @@ AllCops:
- lib/mastodon/migration_helpers.rb - lib/mastodon/migration_helpers.rb
ExtraDetails: true ExtraDetails: true
NewCops: enable NewCops: enable
TargetRubyVersion: 3.2 # Oldest supported ruby version TargetRubyVersion: 3.3 # Oldest supported ruby version
inherit_from: inherit_from:
- .rubocop/layout.yml - .rubocop/layout.yml

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true # frozen_string_literal: true
source 'https://rubygems.org' source 'https://rubygems.org'
ruby '>= 3.2.0', '< 3.5.0' ruby '>= 3.3.0', '< 3.5.0'
gem 'propshaft' gem 'propshaft'
gem 'puma', '~> 7.0' gem 'puma', '~> 7.0'

View File

@ -56,7 +56,7 @@ Mastodon is a **free, open-source social network server** based on [ActivityPub]
### Requirements ### Requirements
- **Ruby** 3.2+ - **Ruby** 3.3+
- **PostgreSQL** 14+ - **PostgreSQL** 14+
- **Redis** 7.0+ - **Redis** 7.0+
- **Node.js** 20+ - **Node.js** 20+