Skip to content

Commit

Permalink
Merge branch 'master' into rubocop-challenge/20240219233128
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieujobin authored May 29, 2024
2 parents 4e6dd7b + 942313b commit 52062d7
Show file tree
Hide file tree
Showing 32 changed files with 2,326 additions and 2,013 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ jobs:
fail-fast: false
matrix:
rails: ["7.1", "7.0", "6.1", "6.0"]
ruby: ["3.3.0", "3.2.2", "3.1.4", "3.0.6", "2.7.8"]
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7"]
include:
- rails: "7.1"
ruby: "3.4.0-preview1"
- rails: "5.2"
ruby: "2.7.8"
- rails: "5.1"
Expand All @@ -19,11 +21,10 @@ jobs:
ruby: "2.6.10"

env:
RUBY_VERSION: ${{ matrix.ruby }}
RAILS_VERSION: ${{ matrix.rails }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/rubocop-challenger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ jobs:
create-pr:
name: Create Pull Request
runs-on: ubuntu-latest
env:
RUBY_VERSION: 3.2.3
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
RUBY_VERSION: 3.2.3
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
===========

## [v1.4.0](https://github.com/Apipie/apipie-rails/tree/v1.4.0) (2024-05-30)
[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v1.3.0...v1.4.0)
* Add Ruby 3.3.0 to CI build matrix (#906) Masato Nakamura
* Fix rubocop CI (#910) (Masato Nakamura)
* Add metadata for rubygems.org and use https URLs (#909) (Masato Nakamura)
* Bump GHA actions/checkout to be on node20 by default (#911) (Masato Nakamura)
* Convert readme to markdown (#920) (Panos Dalitsouris)
* Fix typos, Found via `codespell` (#921) (Kian-Meng Ang)
* Bump ruby versions on test jobs (#927) (Masato Nakamura)
* Support for Ruby 3.4.0-preview1 (#929) (Masato Nakamura)
* Add "blank allowed" message to api doc (#926) (Peko)
* Custom headers responses (#924) (Panos Dalitsouris)

## [v1.3.0](https://github.com/Apipie/apipie-rails/tree/v1.3.0) (2023-12-19)
[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v1.2.3...v1.3.0)
* rubocop fixes ([#897](https://github.com/Apipie/apipie-rails/pull/897)) (Mathieu Jobin)
Expand Down
5 changes: 2 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ source 'https://rubygems.org'
gemspec path: '.'

# use ENV vars, with default value as fallback for local setup
ruby(ENV['RUBY_VERSION'] || '3.2.2')
gem 'actionpack', "~> #{ENV['RAILS_VERSION'] || '7.0'}.0"
gem 'activesupport', "~> #{ENV['RAILS_VERSION'] || '7.0'}.0"
gem 'actionpack', "~> #{ENV['RAILS_VERSION'] || '7.1'}.0"
gem 'activesupport', "~> #{ENV['RAILS_VERSION'] || '7.1'}.0"

gem 'mime-types' # , '~> 3.0'
gem 'rails-controller-testing'
Expand Down
Loading

0 comments on commit 52062d7

Please sign in to comment.