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

Release 0.4.0 #58

Merged
merged 3 commits into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.4.0

* Fix jwt dependency by @Jammjammjamm in
https://github.com/inferno-framework/smart-app-launch-test-kit/pull/52
* Check fhirContext by @emichaud998 in
https://github.com/inferno-framework/smart-app-launch-test-kit/pull/56
* Add Token introspection tests by @arscan in
https://github.com/inferno-framework/smart-app-launch-test-kit/pull/57

# 0.3.0

* Add support for asymmetric client auth to SMART v2.
Expand Down
32 changes: 14 additions & 18 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
smart_app_launch_test_kit (0.3.0)
smart_app_launch_test_kit (0.4.0)
inferno_core (>= 0.4.2)
jwt (~> 2.6)
tls_test_kit (~> 0.2.0)
Expand Down Expand Up @@ -36,8 +36,7 @@ GEM
irb (>= 1.3.6)
reline (>= 0.3.1)
diff-lcs (1.5.0)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
domain_name (0.6.20231109)
dotenv (2.8.1)
dry-auto_inject (0.9.0)
dry-container (>= 0.3.4)
Expand Down Expand Up @@ -145,7 +144,7 @@ GEM
i18n (1.14.1)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
inferno_core (0.4.20)
inferno_core (0.4.23)
activesupport (~> 6.1.7.5)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand Down Expand Up @@ -179,7 +178,7 @@ GEM
method_source (1.0.0)
mime-types (3.5.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2023.1003)
mime-types-data (3.2023.1205)
minitest (5.20.0)
multi_json (1.15.0)
multi_xml (0.6.0)
Expand All @@ -190,12 +189,12 @@ GEM
hansi (~> 0.2.0)
mustermann (= 1.1.2)
netrc (0.11.0)
nio4r (2.5.9)
nokogiri (1.15.4-arm64-darwin)
nio4r (2.7.0)
nokogiri (1.15.5-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.4-x86_64-darwin)
nokogiri (1.15.5-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.15.4-x86_64-linux)
nokogiri (1.15.5-x86_64-linux)
racc (~> 1.4)
oauth2 (1.4.11)
faraday (>= 0.17.3, < 3.0)
Expand All @@ -212,14 +211,14 @@ GEM
pry-byebug (3.10.1)
byebug (~> 11.0)
pry (>= 0.13, < 0.15)
public_suffix (5.0.3)
public_suffix (5.0.4)
puma (5.6.7)
nio4r (~> 2.0)
racc (1.7.1)
racc (1.7.3)
rack (2.2.8)
rack-test (1.1.0)
rack (>= 1.0, < 3)
rake (13.0.6)
rake (13.1.0)
redis (4.8.1)
reline (0.3.1)
io-console (~> 0.5)
Expand Down Expand Up @@ -249,9 +248,9 @@ GEM
connection_pool (>= 2.2.5, < 3)
rack (~> 2.0)
redis (>= 4.5.0, < 5)
sqlite3 (1.6.7-arm64-darwin)
sqlite3 (1.6.7-x86_64-darwin)
sqlite3 (1.6.7-x86_64-linux)
sqlite3 (1.6.9-arm64-darwin)
sqlite3 (1.6.9-x86_64-darwin)
sqlite3 (1.6.9-x86_64-linux)
strings (0.2.1)
strings-ansi (~> 0.2)
unicode-display_width (>= 1.5, < 3.0)
Expand All @@ -272,9 +271,6 @@ GEM
tty-screen (0.8.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.8.2)
unicode-display_width (2.5.0)
unicode_utils (1.4.0)
webmock (3.18.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/smart_app_launch/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SMARTAppLaunch
VERSION = '0.3.0'.freeze
VERSION = '0.4.0'.freeze
end
Loading