Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/data/*.db
/data/igs/*.tgz
/data/redis/**/*.rdb
/data/redis/**/*.aof
/data/redis/**/*.manifest
Expand Down
22 changes: 12 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ipa_test_kit (0.5.0)
ipa_test_kit (0.5.1)
inferno_core (>= 0.6.2)
smart_app_launch_test_kit (~> 0.5.0)
tls_test_kit (~> 0.3.0)
Expand Down Expand Up @@ -134,10 +134,11 @@ GEM
http-accept (1.7.0)
http-cookie (1.0.8)
domain_name (~> 0.5)
httpclient (2.8.3)
httpclient (2.9.0)
mutex_m
i18n (1.14.7)
concurrent-ruby (~> 1.0)
inferno_core (0.6.2)
inferno_core (0.6.5)
activesupport (~> 6.1.7.5)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand Down Expand Up @@ -178,12 +179,12 @@ GEM
base64
kramdown (2.5.1)
rexml (>= 3.3.9)
logger (1.6.5)
logger (1.6.6)
method_source (1.1.0)
mime-types (3.6.0)
logger
mime-types-data (~> 3.2015)
mime-types-data (3.2025.0204)
mime-types-data (3.2025.0304)
minitest (5.25.4)
multi_json (1.15.0)
multi_xml (0.7.1)
Expand All @@ -194,13 +195,14 @@ GEM
mustermann-contrib (1.1.2)
hansi (~> 0.2.0)
mustermann (= 1.1.2)
mutex_m (0.3.0)
netrc (0.11.0)
nio4r (2.7.4)
nokogiri (1.18.2-arm64-darwin)
nokogiri (1.18.3-arm64-darwin)
racc (~> 1.4)
nokogiri (1.18.2-x86_64-darwin)
nokogiri (1.18.3-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.18.2-x86_64-linux-gnu)
nokogiri (1.18.3-x86_64-linux-gnu)
racc (~> 1.4)
oauth2 (1.4.11)
faraday (>= 0.17.3, < 3.0)
Expand Down Expand Up @@ -229,7 +231,7 @@ GEM
rake (13.2.1)
rdoc (6.7.0)
psych (>= 4.0.0)
redis-client (0.23.2)
redis-client (0.24.0)
connection_pool
reline (0.5.9)
io-console (~> 0.5)
Expand Down Expand Up @@ -260,7 +262,7 @@ GEM
connection_pool (>= 2.3.0)
rack (>= 2.2.4)
redis-client (>= 0.19.0)
smart_app_launch_test_kit (0.5.0)
smart_app_launch_test_kit (0.5.1)
inferno_core (>= 0.6.2)
json-jwt (~> 1.15.3)
jwt (~> 2.6)
Expand Down
Empty file added data/igs/.keep
Empty file.
2 changes: 1 addition & 1 deletion docker-compose.background.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
# Negative values mean sessions never expire, 0 means sessions immediately expire
SESSION_CACHE_DURATION: -1
volumes:
- ./lib/ipa_test_kit/igs:/app/igs
- ./data/igs:/app/igs
# To let the service share your local FHIR package cache,
# uncomment the below line
# - ~/.fhir:/home/ktor/.fhir
Expand Down
2 changes: 1 addition & 1 deletion lib/ipa_test_kit/igs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ If your IG, or the specific version of the IG you want to test against, is not p
```

## 3. Inferno Validator UI
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know why this is being removed. You should just update the commented out ig volume line for the old validator service as well.

The Inferno Validator UI is configured to auto-load any IGs present in the igs folder and include them in all validations. The Inferno Validator UI is currently disabled by default, so this is only relevant if you choose to re-enable it. In general, the Inferno team is currently leaving IGs in this folder even if not otherwise necessary to make it easy to re-enable the validator UI.
The Inferno Validator UI is configured to auto-load any IGs present in the igs folder and include them in all validations. The Inferno Validator UI is currently disabled by default, so this is only relevant if you choose to re-enable it. In general, the Inferno team is currently leaving IGs in this folder even if not otherwise necessary to make it easy to re-enable the validator UI.
4 changes: 2 additions & 2 deletions lib/ipa_test_kit/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module IpaTestKit
VERSION = '0.5.0'.freeze
LAST_UPDATED = '2025-02-10'.freeze
VERSION = '0.5.1'.freeze
LAST_UPDATED = '2025-03-10'.freeze
end