Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug/compatibility with rails 7.1 #769

Merged
merged 10 commits into from
Dec 17, 2023
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ jobs:
# and secondarily because jobs are performed concurrently.
gha-job-authlogic-lint:
name: Lint
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Setup ruby
uses: actions/setup-ruby@v1
uses: ruby/setup-ruby@v1
with:
# Set to `TargetRubyVersion` in `.rubocopy.yml`
ruby-version: 2.6
- name: Bundle
run: |
gem install bundler
gem install bundler -v 2.4.22
bundle install --jobs 4 --retry 3
- name: Lint
run: bundle exec rubocop

# The test job is a matrix of ruby/rails versions.
gha-job-authlogic-test:
name: Ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}.rb
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
services:
gha-service-authlogic-mysql:
env:
Expand Down Expand Up @@ -73,12 +73,12 @@ jobs:
- name: Checkout source
uses: actions/checkout@v2
- name: Setup ruby
uses: actions/setup-ruby@v1
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Bundle
run: |
gem install bundler
gem install bundler -v 2.4.22
bundle install --jobs 4 --retry 3
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.rb
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed
- [#767](https://github.com/binarylogic/authlogic/pull/767) - Adds support for Rails 7.1

## 6.4.3 (2023-12-13)

* Breaking Changes
* None
* Added
* None
* Fixed
* [#769](https://github.com/binarylogic/authlogic/issues/769) - Fixed GH workflow

## 6.4.2 (2021-12-21)

- Breaking Changes
Expand Down
Loading