Skip to content

Commit ad3b9ff

Browse files
Release 0.5.1 (#38)
* bump version and last_updated * lockfile * move lib/ipa_test_kit/igs to data/igs * re-add ig tgz * debugging * mv igs into lib/ipa_test_kit/ and hook up generator with it * add data/igs/*.tgz to .gitignore * undo igs readme changes
1 parent ae443e9 commit ad3b9ff

6 files changed

Lines changed: 17 additions & 14 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/data/*.db
2+
/data/igs/*.tgz
23
/data/redis/**/*.rdb
34
/data/redis/**/*.aof
45
/data/redis/**/*.manifest

Gemfile.lock

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ipa_test_kit (0.5.0)
4+
ipa_test_kit (0.5.1)
55
inferno_core (>= 0.6.2)
66
smart_app_launch_test_kit (~> 0.5.0)
77
tls_test_kit (~> 0.3.0)
@@ -134,10 +134,11 @@ GEM
134134
http-accept (1.7.0)
135135
http-cookie (1.0.8)
136136
domain_name (~> 0.5)
137-
httpclient (2.8.3)
137+
httpclient (2.9.0)
138+
mutex_m
138139
i18n (1.14.7)
139140
concurrent-ruby (~> 1.0)
140-
inferno_core (0.6.2)
141+
inferno_core (0.6.5)
141142
activesupport (~> 6.1.7.5)
142143
base62-rb (= 0.3.1)
143144
blueprinter (= 0.25.2)
@@ -178,12 +179,12 @@ GEM
178179
base64
179180
kramdown (2.5.1)
180181
rexml (>= 3.3.9)
181-
logger (1.6.5)
182+
logger (1.6.6)
182183
method_source (1.1.0)
183184
mime-types (3.6.0)
184185
logger
185186
mime-types-data (~> 3.2015)
186-
mime-types-data (3.2025.0204)
187+
mime-types-data (3.2025.0304)
187188
minitest (5.25.4)
188189
multi_json (1.15.0)
189190
multi_xml (0.7.1)
@@ -194,13 +195,14 @@ GEM
194195
mustermann-contrib (1.1.2)
195196
hansi (~> 0.2.0)
196197
mustermann (= 1.1.2)
198+
mutex_m (0.3.0)
197199
netrc (0.11.0)
198200
nio4r (2.7.4)
199-
nokogiri (1.18.2-arm64-darwin)
201+
nokogiri (1.18.3-arm64-darwin)
200202
racc (~> 1.4)
201-
nokogiri (1.18.2-x86_64-darwin)
203+
nokogiri (1.18.3-x86_64-darwin)
202204
racc (~> 1.4)
203-
nokogiri (1.18.2-x86_64-linux-gnu)
205+
nokogiri (1.18.3-x86_64-linux-gnu)
204206
racc (~> 1.4)
205207
oauth2 (1.4.11)
206208
faraday (>= 0.17.3, < 3.0)
@@ -229,7 +231,7 @@ GEM
229231
rake (13.2.1)
230232
rdoc (6.7.0)
231233
psych (>= 4.0.0)
232-
redis-client (0.23.2)
234+
redis-client (0.24.0)
233235
connection_pool
234236
reline (0.5.9)
235237
io-console (~> 0.5)
@@ -260,7 +262,7 @@ GEM
260262
connection_pool (>= 2.3.0)
261263
rack (>= 2.2.4)
262264
redis-client (>= 0.19.0)
263-
smart_app_launch_test_kit (0.5.0)
265+
smart_app_launch_test_kit (0.5.1)
264266
inferno_core (>= 0.6.2)
265267
json-jwt (~> 1.15.3)
266268
jwt (~> 2.6)

data/igs/.keep

Whitespace-only changes.

docker-compose.background.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
# Negative values mean sessions never expire, 0 means sessions immediately expire
88
SESSION_CACHE_DURATION: -1
99
volumes:
10-
- ./lib/ipa_test_kit/igs:/app/igs
10+
- ./data/igs:/app/igs
1111
# To let the service share your local FHIR package cache,
1212
# uncomment the below line
1313
# - ~/.fhir:/home/ktor/.fhir

lib/ipa_test_kit/igs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ If your IG, or the specific version of the IG you want to test against, is not p
1818
```
1919

2020
## 3. Inferno Validator UI
21-
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.
21+
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.

lib/ipa_test_kit/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module IpaTestKit
2-
VERSION = '0.5.0'.freeze
3-
LAST_UPDATED = '2025-02-10'.freeze
2+
VERSION = '0.5.1'.freeze
3+
LAST_UPDATED = '2025-03-10'.freeze
44
end

0 commit comments

Comments
 (0)