Skip to content

Commit caf8341

Browse files
Merge pull request #38 from CodingAnarchy/dependabot/bundler/rack-2.2.8.1
Bump rack from 2.2.7 to 2.2.8.1
2 parents bb4942e + 9b24c19 commit caf8341

File tree

7 files changed

+16
-19
lines changed

7 files changed

+16
-19
lines changed

.github/workflows/ruby-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
ruby: ['3.1', '3.0', '2.7']
18-
gemfile: ['rails52', 'rails6', 'rails61', 'rails7']
17+
ruby: ['3.3', '3.2', '3.1']
18+
gemfile: ['rails61', 'rails7', 'rails71']
1919

2020
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
2121
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
2222
steps:
2323
- uses: actions/checkout@v2
2424
- name: Set up Ruby ${{ matrix.ruby }}
25-
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
25+
uses: ruby/setup-ruby@v1
2626
with:
2727
ruby-version: ${{ matrix.ruby }}
2828
bundler-cache: true

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby 3.1.0
1+
ruby 3.3.0

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 0.7.0 (2024-02-28)
4+
5+
- Add Rails 7.1 support
6+
- Test against Ruby 3.2 and 3.3
7+
- Remove official support for Rails 5.2
8+
- Remove official support for Rails 6.0
9+
- Remove testing for Ruby 2.7 & 3.0
10+
311
## 0.6.0 (2022-02-24)
412

513
- Add Rails 7 support

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ GEM
6161
mini_portile2 (~> 2.8.0)
6262
racc (~> 1.4)
6363
racc (1.7.1)
64-
rack (2.2.7)
64+
rack (2.2.8.1)
6565
rack-test (2.1.0)
6666
rack (>= 1.3)
6767
rails-dom-testing (2.0.3)

gemfiles/rails6.gemfile

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
source "https://rubygems.org"
22

3-
gem "activesupport", "~> 5.2.0"
3+
gem "activesupport", "~> 7.1.0"
44
gem "json-jwt", "~> 1.11"
55
gem "rest-client", "~> 2.0"
66

77
gem "byebug"
88
gem "bundler", "~> 2.0"
99
gem "rake", "~> 12.0"
1010
gem "rspec-rails", "~> 3.0"
11-
gem "actionpack", "~> 5.2.0"
11+
gem "actionpack", "~> 7.1.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module CognitoTokenVerifier
2-
VERSION = "0.6.0"
2+
VERSION = "0.7.0"
33
end

0 commit comments

Comments
 (0)