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

Update JWT gem #10

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ executors:
docker:
- image: cimg/ruby:2.6
environment:
BUNDLE_VERSION: "~> 1.17"
BUNDLE_VERSION: "~> 2.1.4"

# yaml anchor filters
master_only: &master_only
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.3] - 2022-03-29
### Changed
- Updated JWT gem to be open-ended on its version

## [1.1.2] - 2020-02-24
### Changed
- Release on RubyGems using gem-publisher CircleCI Orb
21 changes: 11 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PATH
remote: .
specs:
oauth2c (1.1.2)
oauth2c (1.1.3)
http (~> 4)
jwt (~> 1.5)
jwt (>= 1.5)

GEM
remote: https://rubygems.org/
@@ -17,22 +17,22 @@ GEM
diff-lcs (1.3)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
ffi (1.12.2)
ffi (1.15.5)
ffi-compiler (1.0.1)
ffi (>= 1.0.0)
rake
hashdiff (1.0.0)
http (4.3.0)
http (4.4.1)
addressable (~> 2.3)
http-cookie (~> 1.0)
http-form_data (~> 2.2)
http-parser (~> 1.2.0)
http-cookie (1.0.3)
http-cookie (1.0.4)
domain_name (~> 0.5)
http-form_data (2.2.0)
http-parser (1.2.1)
http-form_data (2.3.0)
http-parser (1.2.3)
ffi-compiler (>= 1.0, < 2.0)
jwt (1.5.6)
jwt (2.3.0)
method_source (0.9.2)
pry (0.12.2)
coderay (~> 1.1.0)
@@ -61,14 +61,15 @@ GEM
rdoc (>= 5.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.6)
unf_ext (0.0.8.1)
webmock (3.8.2)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)

PLATFORMS
ruby
x86_64-linux

DEPENDENCIES
bundler
@@ -83,4 +84,4 @@ DEPENDENCIES
webmock

BUNDLED WITH
1.17.2
2.1.4
2 changes: 1 addition & 1 deletion lib/oauth2c/version.rb
Original file line number Diff line number Diff line change
@@ -13,5 +13,5 @@
# limitations under the License.

module OAuth2c
VERSION = '1.1.2'.freeze
VERSION = '1.1.3'.freeze
end
2 changes: 1 addition & 1 deletion oauth2c.gemspec
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_runtime_dependency "http", "~> 4"
spec.add_runtime_dependency "jwt", "~> 1.5"
spec.add_runtime_dependency "jwt", ">= 1.5"

spec.add_development_dependency "bundler"
spec.add_development_dependency "byebug"
Binary file removed vendor/cache/ffi-1.12.2.gem
Binary file not shown.
Binary file added vendor/cache/ffi-1.15.5.gem
Binary file not shown.
Binary file removed vendor/cache/http-4.3.0.gem
Binary file not shown.
Binary file added vendor/cache/http-4.4.1.gem
Binary file not shown.
Binary file removed vendor/cache/http-cookie-1.0.3.gem
Binary file not shown.
Binary file added vendor/cache/http-cookie-1.0.4.gem
Binary file not shown.
Binary file removed vendor/cache/http-form_data-2.2.0.gem
Binary file not shown.
Binary file added vendor/cache/http-form_data-2.3.0.gem
Binary file not shown.
Binary file removed vendor/cache/http-parser-1.2.1.gem
Binary file not shown.
Binary file added vendor/cache/http-parser-1.2.3.gem
Binary file not shown.
Binary file removed vendor/cache/jwt-1.5.6.gem
Binary file not shown.
Binary file added vendor/cache/jwt-2.3.0.gem
Binary file not shown.
Binary file removed vendor/cache/unf_ext-0.0.7.6.gem
Binary file not shown.
Binary file added vendor/cache/unf_ext-0.0.8.1.gem
Binary file not shown.