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

Presets and pre-loaded ValidationEngines #184

Merged
merged 26 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8864d86
WIP pre-load base validation engines 1
dotasek Jan 26, 2024
bc7e4af
WIP preset selection 2
dotasek Jan 26, 2024
d572834
Start test cases
dotasek Jan 31, 2024
59b3016
Allow language setting for baseEngine use
dotasek Jan 31, 2024
60561fe
Bump core
dotasek Jan 31, 2024
65dc57f
Merge from master
dotasek Feb 1, 2024
c937d6e
Update samples for direct testing against
dotasek Feb 1, 2024
2af5989
More test cases
dotasek Mar 6, 2024
2186951
Merge branch 'master' into do-20240126-baseengine
dotasek May 8, 2024
8293374
Merge branch 'master' into do-20240126-baseengine
dotasek May 8, 2024
5c1eddc
Engines + config enhancements
dotasek May 29, 2024
64217d0
Wow. Don't overwrite the preset contents when selecting a preset.
dotasek May 30, 2024
f22c262
WIP use guava to manage cache size
dotasek Jun 25, 2024
b80a12a
WIP use guava to manage cache size 2
dotasek Jun 25, 2024
86a2237
WIP Fix explicit query tests
dotasek Jun 28, 2024
88eb322
Configure Guava cache size at instantiation + tests
dotasek Jul 2, 2024
47091c6
Restore old duration setting for cache + explicitly indicate adapter
dotasek Jul 2, 2024
e05f756
Fix test
dotasek Jul 2, 2024
49777b7
Add test cases for presets + fix incorrect presets + fix preset profiles
dotasek Jul 3, 2024
735ca7d
More tests for to verify session cache behaviour + cleanup unused code
dotasek Jul 3, 2024
a86e544
Update for API changes
dotasek Jul 4, 2024
7d250d8
Update tests, move reload threshold to env variable, fix locale
dotasek Jul 16, 2024
81073b6
Merge branch 'master' into do-20240126-baseengine
dotasek Jul 16, 2024
027dd1e
Bump core version, adjust issue counts for smoke tests
dotasek Aug 12, 2024
2e680c1
Prep for release
dotasek Aug 13, 2024
65c78cd
Clean up
dotasek Aug 13, 2024
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
Prev Previous commit
Next Next commit
Update for API changes
  • Loading branch information
dotasek committed Jul 4, 2024
commit a86e54441d157efa1a3007ec86eb04b5317d6227
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ kotlin.code.style=official
kotlin.js.generate.executable.default=false

# versions
fhirCoreVersion=6.3.14-SNAPSHOT
fhirCoreVersion=6.3.15-SNAPSHOT

junitVersion=5.7.1
mockk_version=1.10.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ class GuavaSessionCacheAdapter(cacheSize : Long, cacheDuration: Long) : SessionC
return cache.asMap().keys
}

override fun cleanUp() {
cache.cleanUp()
}

/**
* Session ids generated internally are UUID [String].
* @return A new [String] session id.
Expand Down