Skip to content

Commit

Permalink
Merge pull request #38 from CodingAnarchy/dependabot/bundler/rack-2.2…
Browse files Browse the repository at this point in the history
….8.1

Bump rack from 2.2.7 to 2.2.8.1
  • Loading branch information
CodingAnarchy authored Feb 29, 2024
2 parents bb4942e + 9b24c19 commit caf8341
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 19 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ruby-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
strategy:
fail-fast: true
matrix:
ruby: ['3.1', '3.0', '2.7']
gemfile: ['rails52', 'rails6', 'rails61', 'rails7']
ruby: ['3.3', '3.2', '3.1']
gemfile: ['rails61', 'rails7', 'rails71']

env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.1.0
ruby 3.3.0
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 0.7.0 (2024-02-28)

- Add Rails 7.1 support
- Test against Ruby 3.2 and 3.3
- Remove official support for Rails 5.2
- Remove official support for Rails 6.0
- Remove testing for Ruby 2.7 & 3.0

## 0.6.0 (2022-02-24)

- Add Rails 7 support
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ GEM
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
racc (1.7.1)
rack (2.2.7)
rack (2.2.8.1)
rack-test (2.1.0)
rack (>= 1.3)
rails-dom-testing (2.0.3)
Expand Down
11 changes: 0 additions & 11 deletions gemfiles/rails6.gemfile

This file was deleted.

4 changes: 2 additions & 2 deletions gemfiles/rails52.gemfile → gemfiles/rails71.gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
source "https://rubygems.org"

gem "activesupport", "~> 5.2.0"
gem "activesupport", "~> 7.1.0"
gem "json-jwt", "~> 1.11"
gem "rest-client", "~> 2.0"

gem "byebug"
gem "bundler", "~> 2.0"
gem "rake", "~> 12.0"
gem "rspec-rails", "~> 3.0"
gem "actionpack", "~> 5.2.0"
gem "actionpack", "~> 7.1.0"
2 changes: 1 addition & 1 deletion lib/cognito_token_verifier/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module CognitoTokenVerifier
VERSION = "0.6.0"
VERSION = "0.7.0"
end

0 comments on commit caf8341

Please sign in to comment.