Skip to content

Commit

Permalink
Merge commit '5ff2c97257280bf23fe27ad0f048508b251c0972' into 20240724…
Browse files Browse the repository at this point in the history
…-shipit-v0.39.0
  • Loading branch information
mfilipe committed Jul 24, 2024
2 parents 2cdb200 + 5ff2c97 commit 883a7ba
Show file tree
Hide file tree
Showing 41 changed files with 267 additions and 133 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.7
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true
- name: rubocop
run: |
Expand All @@ -25,7 +24,7 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- '2.7'
- '3.0'

services:
db:
Expand Down Expand Up @@ -68,7 +67,7 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- '2.7'
- '3.0'

services:
db:
Expand Down Expand Up @@ -107,10 +106,10 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'

services:
redis:
Expand Down Expand Up @@ -140,8 +139,6 @@ jobs:
- uses: actions/checkout@v1
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Run setup script
run: |
git config --global user.email "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
Exclude:
- tmp/*
- bin/*
Expand Down
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0.3
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Unreleased

# 0.39.0

* Minimum Ruby version is now Ruby 3.0
* Upgraded to Rails 7.1.1
* Upgraded Octokit to 5.6.1 (#1327)
* Migrate from legacy Rails secrets to credentials (#1326)
* Rails secrets were [deprecated in Rails 7.1](https://github.com/rails/rails/pull/48472)
* [Guide on credentials](https://guides.rubyonrails.org/security.html#custom-credentials)
* For deployments, `allow_concurrency` defaults to the same value as `force`. If wanted, it can be set separately by passing the intended value for `allow_concurrency` to `build_deploy` method

# 0.38.0

Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ source 'https://rubygems.org'
gemspec

gem 'sqlite3'
gem 'ejson-rails', require: 'ejson/rails/skip_secrets'

group :ci do
gem 'mysql2'
Expand Down
Loading

0 comments on commit 883a7ba

Please sign in to comment.