From a9ee7d7272f9fb44c52611525294fa7f0dc5b42a Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Thu, 5 Jan 2023 12:07:00 -0500 Subject: [PATCH] Release 0.2.1 (#40) * bump version * update changelog --- CHANGELOG.md | 9 +++++++++ Gemfile.lock | 31 ++++++++++++++++--------------- lib/smart_app_launch/version.rb | 2 +- 3 files changed, 26 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e48bad8..1b18975 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.2.1 + +* Update to support new development workflow. See [the template + repository](https://github.com/inferno-framework/inferno-template#development-with-ruby) + for details. +* Fix a bug in token refresh test where the original refresh token was not + included in the smart credentials output when the refresh response did not + contain a new refresh token. + # 0.2.0 * Update to use new version of inferno_core with ruby 3. diff --git a/Gemfile.lock b/Gemfile.lock index b969e7e..8c1501e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - smart_app_launch_test_kit (0.2.0) + smart_app_launch_test_kit (0.2.1) inferno_core (>= 0.4.2) jwt (~> 2.2) tls_test_kit (~> 0.2.0) @@ -64,7 +64,8 @@ GEM dry-core (~> 0.5, >= 0.5) dry-inflector (~> 0.1, >= 0.1.2) dry-struct (~> 1.0) - dry-transformer (0.1.1) + dry-transformer (1.0.1) + zeitwerk (~> 2.6) dry-types (1.5.1) concurrent-ruby (~> 1.0) dry-container (~> 0.3) @@ -128,13 +129,13 @@ GEM dry-configurable (~> 0.13, >= 0.13.0) hanami-utils (~> 2.0.beta) rack (~> 2.0) - hanami-router (2.0.0.beta2) + hanami-router (2.0.0) mustermann (~> 1.0) mustermann-contrib (~> 1.0) rack (~> 2.0) - hanami-utils (2.0.0.beta1) + hanami-utils (2.0.0) concurrent-ruby (~> 1.0) - dry-transformer (~> 0.1) + dry-transformer (~> 1.0, < 2) hansi (0.2.1) hashdiff (1.0.1) http-accept (1.7.0) @@ -143,7 +144,7 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) ice_nine (0.11.2) - inferno_core (0.4.2) + inferno_core (0.4.6) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) @@ -156,7 +157,7 @@ GEM fhir_client (>= 5.0.3) fhir_models (>= 4.2.2) hanami-controller (= 2.0.0.beta1) - hanami-router (= 2.0.0.beta2) + hanami-router (= 2.0.0) oj (= 3.11.0) pry pry-byebug @@ -169,7 +170,7 @@ GEM io-console (0.5.11) irb (1.4.2) reline (>= 0.3.0) - jwt (2.5.0) + jwt (2.6.0) method_source (1.0.0) mime-types (3.4.1) mime-types-data (~> 3.2015) @@ -185,11 +186,11 @@ GEM mustermann (= 1.1.2) netrc (0.11.0) nio4r (2.5.8) - nokogiri (1.13.9-arm64-darwin) + nokogiri (1.13.10-arm64-darwin) racc (~> 1.4) - nokogiri (1.13.9-x86_64-darwin) + nokogiri (1.13.10-x86_64-darwin) racc (~> 1.4) - nokogiri (1.13.9-x86_64-linux) + nokogiri (1.13.10-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) @@ -207,7 +208,7 @@ GEM public_suffix (5.0.0) puma (5.6.5) nio4r (~> 2.0) - racc (1.6.0) + racc (1.6.2) rack (2.2.4) rack-test (1.1.0) rack (>= 1.0, < 3) @@ -240,9 +241,9 @@ GEM connection_pool (>= 2.2.5, < 3) rack (~> 2.0) redis (>= 4.5.0, < 5) - sqlite3 (1.5.3-arm64-darwin) - sqlite3 (1.5.3-x86_64-darwin) - sqlite3 (1.5.3-x86_64-linux) + sqlite3 (1.5.4-arm64-darwin) + sqlite3 (1.5.4-x86_64-darwin) + sqlite3 (1.5.4-x86_64-linux) thor (1.2.1) tilt (2.0.11) tls_test_kit (0.2.0) diff --git a/lib/smart_app_launch/version.rb b/lib/smart_app_launch/version.rb index d387340..cb7b5ce 100644 --- a/lib/smart_app_launch/version.rb +++ b/lib/smart_app_launch/version.rb @@ -1,3 +1,3 @@ module SMARTAppLaunch - VERSION = '0.2.0'.freeze + VERSION = '0.2.1'.freeze end