diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a111d48..8ba35dc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.8.1 +* FI-3508 Retrieve primitive value from navigation result by @yunwwang in + https://github.com/inferno-framework/us-core-test-kit/pull/194 +* FI-3042 Don't Include OperationOutcomes when Checking Granular Scope Search + Results by @360dgries in + https://github.com/inferno-framework/us-core-test-kit/pull/195 +* FI-3039 Add Support for Separately Returned Granular Scopes by @360dgries in + https://github.com/inferno-framework/us-core-test-kit/pull/196 + # 0.8.0 * FI-2792 Add US Core Test Suite for US Core IG v7.0.0 * FI-2959 Add code system check to MustSupport test on requiredBinding slice diff --git a/Gemfile.lock b/Gemfile.lock index 63ddb007..3104d09e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - us_core_test_kit (0.8.0) + us_core_test_kit (0.8.1) inferno_core (>= 0.4.37) smart_app_launch_test_kit (>= 0.4.0) tls_test_kit (~> 0.2.0) @@ -82,7 +82,7 @@ GEM faraday-httpclient (1.0.1) faraday-multipart (1.0.4) multipart-post (~> 2) - faraday-net_http (1.0.1) + faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) faraday-rack (1.0.0) @@ -132,7 +132,7 @@ GEM hansi (0.2.1) hashdiff (1.1.0) http-accept (1.7.0) - http-cookie (1.0.6) + http-cookie (1.0.7) domain_name (~> 0.5) httpclient (2.8.3) i18n (1.14.5) @@ -179,7 +179,7 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0702) + mime-types-data (3.2024.0903) mini_portile2 (2.8.7) minitest (5.24.1) multi_json (1.15.0) @@ -193,14 +193,14 @@ GEM mustermann (= 1.1.2) netrc (0.11.0) nio4r (2.7.3) - nokogiri (1.16.6) + nokogiri (1.16.7) mini_portile2 (~> 2.8.2) racc (~> 1.4) - nokogiri (1.16.6-arm64-darwin) + nokogiri (1.16.7-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.6-x86_64-darwin) + nokogiri (1.16.7-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.6-x86_64-linux) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) @@ -222,7 +222,7 @@ GEM public_suffix (6.0.0) puma (5.6.8) nio4r (~> 2.0) - racc (1.8.0) + racc (1.8.1) rack (2.2.9) rake (13.2.1) rdoc (6.7.0) @@ -259,7 +259,7 @@ GEM connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.19.0) - smart_app_launch_test_kit (0.4.2) + smart_app_launch_test_kit (0.4.3) inferno_core (>= 0.4.2) json-jwt (~> 1.15.3) jwt (~> 2.6) diff --git a/lib/us_core_test_kit/version.rb b/lib/us_core_test_kit/version.rb index f6ce02fe..6fd9bcc6 100644 --- a/lib/us_core_test_kit/version.rb +++ b/lib/us_core_test_kit/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module USCoreTestKit - VERSION = '0.8.0' + VERSION = '0.8.1' end