Released: 2016-12-20
Bump the version of a few dependencies to the latest versions (dependent HAPI modules listed in brackets):
|
||
#525 |
When parsing invalid enum values in STU3, report errors through the parserErrorHandler, not by throwing an exception. Thanks to Michael Lawley for the pull request! |
|
#516 |
When parsing DSTU3 resources with enumerated types that contain invalid values, the parser will now invoke the parserErrorHandler. For example, when parsing |
|
#520 |
DSTU3 context now pulls the FHIR version from the actual model classes. Thanks to Michael Lawley for the pull request! |
|
Enhancements to the tinder-plugin's generic template features of the generate-multi-files and generate-single-file Maven goals as well as the Ant hapi-tinder task.
|
||
#510 |
Add a docker configuration to the hapi-fhir-jpaservr-example module. Thanks to Gijsbert van den Brink for the pull request! |
|
#507 |
Add utility constructors to MoneyDt. Thanks to James Ren for the contribution! |
|
ErrorHandler is now called (resulting in a warning by default, but can also be an exception) when arsing JSON if the resource ID is not a JSON string, or an object is found where an array is expected (e.g. repeating field). Thanks to Jenni Syed of Cerner for providing a test case! |
||
#504 |
Custom resource types which extend Binary must not have declared extensions since this is invalid in FHIR (and HAPI would just ignore them anyhow). Thanks to Thomas S Berg for reporting! |
|
Add ability to JPA server for disabling stale search expiry. This is useful if you are deploying the server to a cluster. |
||
Standard HAPI zip/tar distributions did not include the project sources and JavaDoc JARs. Thanks to Keith Boone for pointing this out! |
||
Declared extensions with multiple type() options listed in the @Child annotation caused a crash on startup. Now this is supported. |
||
STU3 XHTML parser for narrative choked if the narrative contained an |
||
As the eBay CORS interceptor project has gone dormant, we have introduced a new HAPI server interceptor which can be used to implement CORS support instead of using the previously recommended Servlet Filter. All server examples as well as the CLI have been switched to use this new interceptor. See the CORS Documentation for more information. |
||
#518 |
Allow client to gracefully handle running in DSTU3 mode but with a structures JAR that does not contain a CapabilityStatement resource. Thanks to Michael Lawley for the pull request! |
|
Fix issue in AuthorizationIntetceptor where transactions are blocked even when they should not be |
||
HAPI FHIR CLI failed to delete a file when uploading example resources while running under Windows. |
||
#521 |
Server should reject update if the resource body does not contain an ID, or the ID does not match the request URL. Thanks to Jim Steel for reporting! |
|
#500 |
Web Testing UI's next and previous buttons for paging through paged results did not work after the migration to using Thymeleaf 3. Thanks to GitHub user @gsureshkumar for reporting! |
|
#523 |
Fix ordering of validator property handling when an element has a name that is similar to a shorter name[x] style name. Thanks to CarthageKing for the pull request! |
|
Fix regression in HAPI FHIR 2.1 JPA server where some search parameters on metadata resources did not appear (e.g. "StructureDefinition.url"). Thanks to David Hay for reporting! |
||
#528 |
AuthorizationInterceptor was failing to allow read requests to pass when a rule authorized those resources by compartment. Thanks to GitHub user @mattiuusitalo for reporting and supplying a test case! |
|
Correct a typo in client |
||
Fix Web Testing UI to be able to handle STU3 servers which return CapabilityStatement instead of the previously used "Conformance" resource |
||
CLI example uploader couldn't find STU3 examples after CI server was moved to build.fhir.org |
||
Fix issue in JPA subscription module that prevented purging stale subscriptions when many were present on Postgres |
||
#532 |
Server interceptor methods were being called twice unnecessarily by the JPA server, and the DaoConfig interceptor registration framework was not actually useful. Thanks to GitHub user @mattiuusitalo for reporting! |
|
#503 |
AuthorizationInterceptor on JPA server did not correctly apply rules on deleting resources in a specific compartment because the resource metadata was stripped by the JPA server before the interceptor could see it. Thanks to Eeva Turkka for reporting! |
|
#519 |
JPA server exported CapabilityStatement includes double entries for the _id parameter and uses the wrong type (string instead of token). Thanks to Robert Lichtenberger for reporting! |
|
Server AuthorizationInterceptor always rejects history operation at the type level even if rules should allow it. |
||
JPA server terminology service was not correctly validating or expanding codes in SNOMED CT or LOINC code systems. Thanks to David Hay for reporting! |
||
#539 |
Attempting to search for an invalid resource type (e.g. GET base/FooResource) should return an HTTP 404 and not a 400, per the HTTP spec. Thanks to GitHub user @CarthageKing for the pull request! |
|
#544 |
When parsing a Bundle containing placeholder fullUrls and references (e.g. "urn:uuid:0000-0000") the resource reference targets did not get populated with the given resources. Note that as a part of this change, |
|
#538 |
When parsing a quantity parameter on the server with a value and units but no system (e.g. |
|
#533 |
Correct a typo in the JPA ValueSet ResourceProvider which prevented successful operation under Spring 4.3. Thanks to Robbert van Waveren for the pull request! |
|
#495 |
RestfulServer with no explicitly set FhirContext fails to detect the presents of DSTU3 structures. Thanks to GitHub user @vijayt27 for reporting! |
|
#547 |
CapturingInterceptor did not buffer the response meaning that in many circumstances it did not actually capture the response. Thanks to Jenny Syed of Cerner for the pull request and contribution! |
|
#480 |
Make the parser configurable so that when parsing an invalid empty value (e.g. |
|
#276 |
Fix issue when serializing resources that have contained resources which are referred to from multiple places. Sometimes when serializing these resources the contained resource section would contain duplicates. Thanks to Hugo Soares and Stefan Evinance for reporting and providing a test case! |
|
Fix a crash in JPA server when searching using an _include if _include targets are external references (and therefore can't be loaded by the server). Thanks to Hannes Ulrich for reporting! |
||
Deprecate the method |
Released: 2016-11-11
STU3 structure definitions have been updated to the STU3 latest definitions (1.7.0 - SVN 10129). In particular, this version supports the new CapabilityStatement resource which replaces the previous Conformance resource (in order to reduce upgrade pain, both resource types are included in this version of HAPI) |
||
Bump the version of a few dependencies to the latest versions (dependent HAPI modules listed in brackets):
|
||
#440 |
Remove Maven dependency on Saxon library, as it is not actually used. Thanks to Lem Edmondson for the suggestion! |
|
STU clients now use an Accept header which indicates support for both the old MimeTypes (e.g. |
||
Add a new method to the server interceptor framework which will be called after all other processing is complete (useful for performance tracking). The server LoggingInterceptor has been switched to using this method which means that log lines will be created when processing is finished, instead of when it started. |
||
Client, Server, and JPA server now support experimental support for HTTP PATCH using the XML Patch and JSON Patch syntax as explored during the September 2016 Baltimore Connectathon. See this wiki page for a description of the syntax. |
||
Fluent client can now return types other than Parameters when invoking operations. |
||
Add a new method to ReferenceClientParam which allows you to pass in a number of IDs by a collection of Strings. Thanks to Thomas Andersen for the pul request! |
||
#469 |
Add a new JSON library abstraction layer to the JSON parser. This contribution shouldn't have any end-user impact but does make it easier to use the JSON parser to generate custom structures for other purposes, and should allow us to support RDF more easily at some point. Thanks to Bill Denton for the pull request and the contribution! |
|
#455 |
DSTU1 Bundle encoder did not include the Bundle entry author in the generated bundle. Thanks to Hannes Venter for the pull request and contribution! |
|
Android library now uses OkHttp client by default instead of Apache HttpClient. This should lead to much simpler support for Android in the future. |
||
AuthorizationInterceptor is now a bit more aggressive at blocking read operations, stopping them on the way in if there is no way they will be accepted to the resource check on the way out. In addition it can now be configured to allow/deny operation invocations at the instance level on any instance of a given type |
||
Remove an unneccesary database flush from JPA persistence operations |
||
#470 |
Add method to fluent client to allow OR search across several profiles. Thanks to Thomas Andersen for the pull request! |
|
Both client and server now use the new STU3 mime types by default if running in STU3 mode (in other words, using an STU3 FhirContext). |
||
Conditional URLs in JPA server (e.g. for delete or update) did not support the |
||
#444 |
Times before 1970 with fractional milliseconds were parsed incorrectly. Thanks to GitHub user @CarthageKing for reporting! |
|
#448 |
Prevent crash in parser when parsing resource with multiple profile declarations when default type for profile is used. Thanks to Filip Domazet for the pull request! |
|
#445 |
STU3 servers were adding the old MimeType strings to the |
|
#446 |
When performing an update using the client on a resource that contains other resources (e.g. Bundle update), all child resources in the parent bundle were incorrectly given the ID of the parent. Thanks to Filip Domazet for reporting! |
|
JPA server now sends correct |
||
Server history operation did not populate the Bundle.entry.request.url field, which is required in order for the bundle to pass validation. Thanks to Richard Ettema for spotting this! |
||
Fix a fairly significant issue in JPA Server when using the |
||
STU3 clients were not sending the new mimetype values in the |
||
JAX-RS server was not able to handle the new mime types defined in STU3 |
||
JPA server did not handle custom types when being called programatically (I.e. not through HTTP interface). Thanks to Anthony Mei for pointing this out! |
||
CLI was not correctly able to upload DSTU2 examples to any server |
||
STU3 validator has been upgrated to include fixes made since the 1.6.0 ballot |
||
Prevent JPA server from creating a bunch of FhirContext objects for versions of FHIR that aren't actually being used |
||
#443 |
XhtmlNode.equalsDeep() contained a bug which caused resources containing a narrative to always return |
|
#441 |
JPA server did not correctly process searches for chained parameters where the chain passed across a field that was a choice between a reference and a non-reference type (e.g. |
|
#414 |
Handle parsing an extension without a URL more gracefully. In HAPI FHIR 2.0 this caused a NullPointerException to be thrown. Now it will trigger a warning, or throw a DataFormatException if the StrictErrorHandler is configured on the parser. |
|
Calling a HAPI server URL with a chain on a parameter that shouldn't accept chains (e.g. |
||
#411 |
Fix #411 - Searching by |
|
JPA server shouldn't report a totalCount in Bundle of "-1" when there are no results |
||
#454 |
JPA server was not correctly normalizing strings with non-latin characters (e.g. Chinese chars). Thanks to GitHub user @YinAqu for reporting and providing some great analysis of the issue! |
|
#327 |
When encoding a resource in JSON where the resource has an extension with a value where the value is a reference to a contained resource, the reference value (e.g. "#1") did not get serialized. Thanks to GitHub user @fw060 for reporting! |
|
#464 |
ResponseHighlighterInterceptor now pretty-prints responses by default unless the user has explicitly requested a non-pretty-printed response (ie. using |
|
Remove unused field (myIsContained) from ResourceTable in JPA server. |
||
#472 |
STU3 servers were incorrectly returning the |
|
Correct several documentation issues. Thanks to Vadim Peretokin for the pull requests! |
||
In server, when returning a list of resources, the server sometimes failed to add |
||
Fix regression in web testing UI where "prev" and "next" buttons don't work when showing a result bundle |
||
JPA server should not attempt to resolve built-in FHIR StructureDefinitions from the database (this causes a significant performance hit when validating) |
||
BanUnsupportedHttpMethodsInterceptor was erroring out when a client attempts HTTP HEAD requests |
Released: 2016-08-30
STU3 structure definitions have been updated to the STU3 ballot candidate versions (1.6.0 - SVN 9663) |
||
#403 |
It is not possible to configure both the parser and the context to preserve versions in resource references (default behaviour is to strip versions from references). Thanks to GitHub user @cknaap for the suggestion! |
|
#406 |
Allow servers to specify the authentication realm of their choosing when throwing an AuthenticationException. Thanks to GitHub user @allanbrohansen for the suggestion! |
|
#416 |
Add a new client implementation which uses the OkHttp library as the HTTP client implementation (instead of Apache HttpClient). This is particularly useful for Android (where HttpClient is a pain) but could also be useful in other places too. Thanks to Matt Clarke of Orion Health for the contribution! |
|
Both client and server now support the new Content Types decided in FHIR #10199 . |
||
hapi-fhir-cli upload-terminology command now has an argument "-b FOO" that lets you add an authorization header in the form |
||
Inprove handling of _text and _content searches in JPA server to do better matching on partial strings |
||
Servers in STU3 mode will now ignore any ID or VersionID found in the resource body provided by the client when processing FHIR |
||
Add new methods to |
||
Add two new methods to the parser error handler that let users trap invalid contained resources with no ID, as well as references to contained resource that do not exist. |
||
Improve performance when parsing resources containing contained resources by eliminating a step where references were woven twice |
||
Bump the version of a few dependencies to the latest versions (dependent HAPI modules listed in brackets):
|
||
HAPI root pom shouldn't include animal-sniffer plugin, since that causes any projects which extend this to be held to Java 6 compliance. |
||
#150 |
Fluent client should ignore parameter values which are null instead of including them as |
|
A new server interceptor "BanUnsupprtedHttpMethodsInterceptor" has been added which causes the server to return an HTTP 405 if an unsupported HTTP verb is received from the client |
||
JSON parsing in HAPI FHIR has been switched from using JSR353 (javax.json) to using Google Gson. For this reason we are bumping the major release number to 2.0. Theoretically this should not affect projects in any major way, but Gson does have subtle differences. Two differences which popped up a fair bit in our own testing:
"resourceType":"Patient" is now encoded as "resourceType": "Patient" (this broke a number of our unit tests with hardcoded resource definitions)
|
||
#404 |
Fix an issue where resource IDs were not correctly set when using DSTU2 HL7org structures with the JAX-RS module. Thanks to Carlo Mion for the pull request! |
|
hapi-fhir-testpage-overlay project contained an unneccesary dependency on hapi-fhir-jpaserver-base module, which resulted in projects using the overlay having a large number of unnneded JARs included |
||
#409 |
|
|
#401 |
JPA server's |
|
JPA server now returns HTTP 200 instead of HTTP 404 for conditional deletes which did not find any matches, per FHIR-I decision. |
||
Client that declares explicitly that it is searching/reading/etc for a custom type did not automatically parse into that type. |
||
Fix a regression when parsing resources that have contained resources, where the reference in the outer resource which links to the contained resource sometimes did does not get populated with the actual target resource instance. Thanks to Neal Acharya for reporting! |
||
#423 |
Parser failed to successfully encode a custom resource if it contained custom fields that also used custom types. Thanks to GitHub user @sjanic for reporting! |
|
When encoding a resource with a reference to another resource that has a placeholder ID (e.g. urn:uuid:foo), the urn prefix was incorrectly stripped from the reference. |
||
Servers for STU3 (or newer) will no longer include a |
||
#428 |
Fix NullPointerException when encoding an extension containing CodeableConcept with log level set to TRACE. Thanks to Bill Denton for the report! |
|
#426 |
Parser failed to parse resources containing an extension with a value type of "id". Thanks to Raphael Mäder for reporting! |
|
When committing a transaction in JPA server where the transaction contained placeholder IDs for references between bundles, the placeholder IDs were not substituted with viewing resources using the _history operation |
||
Fix issue in DSTU1 Bundle parsing where unexpected elements in the bundle resulted in a failure to parse. |
||
DSTU2 QuestionnaireResponse validator failed with an exception if the QuestionnaireResponse contained certain groups with no content |
||
When using |
||
JPA server should now automatically detect if Hibernate Search (Lucene) is configured to be disabled and will not attempt to use it. This prevents a crash for some operations. |
Released: 2016-07-07
Bump the version of a few dependencies to the latest versions (dependent HAPI modules listed in brackets):
|
||
#352 |
When performing a REST Client create or update with |
|
#354 |
DSTU3 structures now have |
|
JPA server has now been refactored to use the new FluentPath search parameter definitions for DSTU3 resources. |
||
RequestValidatingInterceptor and ResponseValidatingInterceptor both have new method |
||
LoggingInterceptor on server has a new parameter |
||
#355 |
JAX-RS server module now supports DSTU3 resources (previously it only supported DSTU2). Thanks to Phillip Warner for implementing this, and providing a pull request! |
|
JPA server now supports composite search parameters where the type of the composite parameter is a quantity (e.g. Observation:component-code-component-value-quantity) |
||
Add a new option to the CLI run-server command called |
||
When updating a resource via an update operation on the server, if the ID of the resource is not present in the resource body but is present on the URL, this will now be treated as a warning instead of as a failure in order to be a bit more tolerant of errors. If the ID is present in the body but does not agree with the ID in the URL this remains an error. |
||
#363 |
JPA server can now be configured to allow external references (i.e. references that point to resources on other servers). See JPA Documentation for information on how to use this. Thanks to Naminder Soorma for the suggestion! |
|
#367 |
Sébastien Rivière contributed an excellent pull request which adds a number of enhancements to JAX-RS module:
|
|
Update DSTU2 InstanceValidator to latest version from upstream |
||
Improve error messages when the $validate operation is called but no resource is actually supplied to validate |
||
Deprecate fluent client search operations without an explicit declaration of the bundle type being used. This also means that in a client |
||
ResponseHighlightingInterceptor has been modified based on consensus on Zulip with Grahame that requests that have a parameter of |
||
Server now supports the _at parameter (including multiple repetitions) for history operation |
||
AuthorizationInterceptor can now allow or deny requests to extended operations (e.g. $everything) |
||
#346 |
Server now respects the parameter |
|
JPA server now allows "forced IDs" (ids containing non-numeric, client assigned IDs) to use the same logical ID part on different resource types. E.g. A server may now have both Patient/foo and Observation/foo on the same server. |
||
Performance has been improved for the initial FhirContext object creation by avoiding a lot of unnecessary reflection. HAPI FHIR 1.5 had a regression compared to previous releases and this has been corrected, but other improvements have been made so that this release is faster than previous releases too.
|
||
#350 |
When serializing/encoding custom types which replace exsting choice fields by fixing the choice to a single type, the parser would forget that the field was a choice and would use the wrong name (e.g. "abatement" instead of "abatementDateType"). Thanks to Yaroslav Kovbas for reporting and providing a unit test! |
|
JPA server transactions sometimes created an incorrect resource reference if a resource being saved contained references that had a display value but not an actual reference. Thanks to David Hay for reporting! |
||
#356 |
Generated conformance statements for DSTU3 servers did not properly reference their OperationDefinitions. Thanks to Phillip Warner for implementing this, and providing a pull request! |
|
#359 |
Properly handle null arrays when parsing JSON resources. Thanks to Subhro for fixing this and providing a pull request! |
|
STU3 validator failed to validate codes where the code was a child code within the code system that contained it (i.e. not a top level code). Thanks to Jon Zammit for reporting! |
||
#361 |
Restore the setType method in the DSTU1 Bundle class, as it was accidentally commented out. Thanks to GitHub user @Virdulys for the pull request! |
|
CLI tool cache feature (-c) for upload-example task sometimes failed to write cache file and exited with an exception. |
||
Fix error message in web testing UI when loading pages in a search result for STU3 endpoints. |
||
When encoding JSON resource, the parser will now always ensure that XHTML narrative content has an XHTML namespace declaration on the first DIV tag. This was preventing validation for some resources using the official validator rules. |
||
Server failed to invoke operations when the name was escaped (%24execute instead of $execute). Thanks to Michael Lawley for reporting! |
||
JPA server transactions containing a bundle that has multiple entries trying to delete the same resource caused a 500 internal error |
||
JPA module failed to index search parameters that mapped to a Timing datatype, e.g. CarePlan:activitydate |
||
#345 |
ResponseValidatingInterceptor threw an InternalErrorException (HTTP 500) for operations that do not return any content (e.g. delete). Thanks to Mohammad Jafari for reporting! |
|
Server / JPA server date range search params (e.g. Encounter:date) now treat a single date with no comparator (or the eq comparator) as requiring that the value be completely contained by the range specified. Thanks to Chris Moesel for the suggestion. |
||
In server, if a parameter was annotated with the @Count annotation, the count would not appear in the self/prev/next links and would not actually be applied to the search results by the server. Thanks to Jim Steele for letting us know! |
||
Conditional update on server failed to process if the conditional URL did not have any search parameters that did not start with an underscore. E.g. "Patient?_id=1" failed even though this is a valid conditional reference. |
||
#366 |
When posting a resource to a server that contains an invalid value in a boolean field (e.g. Patient with an active value of "1") the server should return an HTTP 400, not an HTTP 500. Thanks to Jim Steel for reporting! |
|
#364 |
Enable parsers to parse and serialize custom resources that contain custom datatypes. An example has been added which shows how to do this in the docs. |
|
JSON parser was incorrectly encoding resource language attribute in JSON as an array instead of a string. Thanks to David Hay for reporting! |
||
#342 |
REST server now throws an HTTP 400 instead of an HTTP 500 if an operation which takes a FHIR resource in the request body (e.g. create, update) contains invalid content that the parser is unable to parse. Thanks to Jim Steel for the suggestion! |
|
#369 |
FhirTerser.cloneInto method failed to clone correctly if the source had any extensions. Thanks to GitHub user @Virdulys for submitting and providing a test case! |
|
Web Testing UI was not able to correctly post an STU3 transaction |
||
DateTime parser incorrectly parsed times where more than 3 digits of precision were provided on the seconds after the decimal point |
||
#374 |
Create and Update operations in server did not include ETag or Last-Modified headers even though the spec says they should. Thanks to Jim Steel for reporting! |
|
#371 |
Update STU3 client and server to use the new sort parameter style (param1,-param2,param). Thanks to GitHub user @euz1e4r for reporting! |
|
QuantityClientParam#withUnit(String) put the unit into the system part of the parameter value |
||
Fluent client searches with date parameters were not correctly using new prefix style (e.g. gt) instead of old one (e.g. >) |
||
#370 |
Some built-in v3 code systems for STU3 resources were missing certain codes, which caused false failures when validating resources. Thanks to GitHub user @Xoude for reporting! |
|
#365 |
Some methods on DSTU2 model structures have JavaDocs that incorrectly claim that the method will not return null when in fact it can. Thanks to Rick Riemer for reporting! |
|
#267 |
Operation definitions (e.g. for $everything operation) in the generated server conformance statement should not include the $ prefix in the operation name or code. Thanks to Dion McMurtrie for reporting! |
|
#378 |
Server generated OperationDefinition resources did not validate due to some missing elements (kind, status, etc.). Thanks to Michael Lawley for reporting! |
|
#379 |
Operations that are defined on multiple resource provider types with the same name (e.g. "$everything") are now automatically exposed by the server as separate OperationDefinition resources per resource type. Thanks to Michael Lawley for reporting! |
|
#380 |
OperationDefinition resources generated automatically by the server for operations that are defined within resource/plain providers incorrectly stated that the maximum cardinality was "*" for non-collection types with no explicit maximum stated, which is not the behaviour that the JavaDoc on the @OperationParam annotation describes. Thanks to Michael Lawley for reporting! |
|
Server parameters annotated with |
||
DecimalType used BigDecimal constructor instead of valueOf method to create a BigDecimal from a double, resulting in weird floating point conversions. Thanks to Craig McClendon for reporting! |
||
#394 |
Remove the depdendency on a method from commons-lang3 3.3 which was causing issues on some Android phones which come with an older version of this library bundled. Thanks to Paolo Perliti for reporting! |
|
Parser is now better able to handle encoding fields which have been populated with a class that extends the expected class |
||
When declaring a child with |
||
Fix STU3 JPA resource providers to allow validate operation at instance level |
||
Improve performance when parsing large bundles by fixing a loop over all of the entries inthe bundle to stitch together cross-references, which was happening once per entry instead of once overall. Thanks to Erick on the HAPI FHIR Google Group for noticing that this was an issue! |
||
Remove some clases that were deprecated over a year ago and have suitable replacements:
|
||
Remove the Remittance resource from DSTU2 structures, as it is not a real resource and was causing issues with interoperability with the .NET client. |
||
DSTU2+ servers no longer return the Category header, as this has been removed from the FHIR specification (and tags are now available in the resource body so the header was duplication/wasted bandwidth) |
||
JSON parser no longer allows the resource ID to be specified in an element called "_id" (the correct one is "id"). Previously _id was allowed because some early FHIR examples used that form, but this was never actually valid so it is now being removed. |
Released: 2016-04-20
Bump the version of a few dependencies to the latest versions (dependent HAPI modules listed in brackets):
|
||
The RequestDetails and ActionRequestDetails objects which are passed to server interceptor methods and may also be used as server provider method arguments now has a new method |
||
Support comments when parsing and encoding both JSON and XML. Comments are retrieved and added to the newly created methods IBase#getFormatCommentsPre() and IBase#getFormatCommentsPost() |
||
#304 |
Improve error message if incorrect type is placed in a list field in the data model. Java uses generics to prevent this at compile time, but if someone is in an environment without generics this helps improve the error message at runtime. Thanks to Hugo Soares for suggesting. |
|
Per discussion on the FHIR implementer chat, the JPA server no longer includes _revinclude matches in the Bundle.total count, or the page size limit. |
||
JPA server now persists search results to the database in a new table where they can be temporaily preserved. This makes the JPA server much more scalable, since it no longer needs to store large lists of pages in memory between search invocations. |
||
JPA servers' resource version history mechanism has been adjusted so that the history table keeps a record of all versions including the current version. This has the very helpful side effect that history no longer needs to be paged into memory as a complete set. Previously history had a hard limit of only being able to page the most recent 20000 entries. Now it has no limit. |
||
#293 |
Added options to the CLI upload-examples command which allow it to cache the downloaded content file, or use an arbitrary one. Thanks to Adam Carbone for the pull request! |
|
JPA server applies _lastUpdated filter inline with other searches wherever possible instead of applying this filter as a second query against the results of the first query. This should improve performance when searching against large datasets. |
||
Parsers have new method |
||
JPA server database design has been adjusted so that different tables use different sequences to generate their indexes, resulting in more sequential resource IDs being assigned by the server |
||
DSTU2 resources now have a |
||
#315 |
Add a new method to FhirContext called |
|
#321 |
Set up the tinder plugin to work as an ant task as well as a Maven plugin, and to use external sources. Thanks to Bill Denton for the pull request! |
|
Introduce a JAX-RS client provider which can be used instead of the default Apache HTTP Client provider to provide low level HTTP services to HAPI's REST client. See JAX-RS & Alternate HTTP Client Providers for more information. |
||
Operations methods defined using |
||
#317 |
Operation methods defined using |
|
Add databases indexes to JPA module search index tables for the RES_ID column on each. This should help performance when searching over large datasets. Thanks to Emmanuel Duviviers for the suggestion! |
||
JPA server number and quantity search params now follow the rules for the use of precision in search terms outlined in the search page of the FHIR specification. For example, previously a 1% tolerance was applied for all searches (10% for approximate search). Now, a tolerance which respects the precision of the search term is used (but still 10% for approximate search). |
||
JPA server now supports searching for |
||
Improve CLI error message if the tool can't bind to the requested port. Thanks to Claude Nanjo for the suggestion! |
||
RestfulServer now manually parses URL parameters instead of relying on the container's parsed parameters. This is useful because many Java servlet containers (e.g. Tomcat, Glassfish) default to ISO-8859-1 encoding for URLs insetad of the UTF-8 encoding specified by FHIR. |
||
ResponseHighlightingInterceptor now doesn't highlight if the request has an Origin header, since this probably denotes an AJAX request. |
||
JPA server now supports :above and :below qualifiers on URI search params |
||
Add optional support (disabled by default for now) to JPA server to support inline references containing search URLs. These URLs will be resolved when a resource is being created/updated and replaced with the single matching resource. This is being used as a part of the May 2016 Connectathon for a testing scenario. |
||
The server no longer adds a |
||
#339 |
Security Fix: XML parser was vulnerable to XXE (XML External Entity) processing, which could result in local files on disk being disclosed. See this page for more information. Thanks to Jim Steel for reporting! |
|
In the client, the create/update operations on a Binary resource (which use the raw binary's content type as opposed to the FHIR content type) were not including any request headers (Content-Type, User-Agent, etc.) Thanks to Peter Van Houte of Agfa Healthcare for reporting! |
||
Handling of Binary resources containing embedded FHIR resources for create/update/etc operations has been corrected per the FHIR rules outlined at Binary Resource in both the client and server. |
||
#297 |
When |
|
#298 |
Request to server at |
|
#302 |
Fix a server exception when trying to automatically add the profile tag to a resource which already has one or more profiles set. Thanks to Magnus Vinther for reporting! |
|
#296 |
QuantityParam parameters being used in the RESTful server were ignoring the |
|
#299 |
Annotation client failed with an exception if the response contained extensions on fields in the resonse Bundle (e.g. Bundle.entry.search). Thanks to GitHub user am202 for reporting! |
|
#274 |
Primitive elements with no value but an extension were sometimes not encoded correctly in XML, and sometimes not parsed correctly in JSON. Thanks to Bill de Beaubien for reporting! |
|
#280 |
The Web Testing UI has long had an issue where if you click on a button which navigates to a new page (e.g. search, read, etc) and then click the back button to return to the original page, the button you clicked remains disabled and can't be clicked again (on Firefox and Safari). This is now fixed. Unfortunately the fix means that the buttom will no longer show a "loading" spinner, but there doesn't seem to be another way of fixing this. Thanks to Mark Scrimshire for reporting! |
|
Extensions found while parsing an object that doesn't support extensions are now reported using the IParserErrorHandler framework in the same way that other similar errors are handled. This allows the parser to be more lenient when needed. |
||
#308 |
Prevent an unneeded warning when parsing a resource containing a declared extension. Thanks to Matt Blanchette for reporting! |
|
Web Tester UI did not invoke VRead even if a version ID was specified. Thanks to Poseidon for reporting! |
||
JPA server returned the wrong Bundle.type value (COLLECTION, should be SEARCHSET) for $everything operation responses. Thanks to Sonali Somase for reporting! |
||
#305 |
REST and JPA server should reject update requests where the resource body does not contain an ID, or contains an ID which does not match the URL. Previously these were accepted (the URL ID was trusted) which is incorrect according to the FHIR specification. Thanks to GitHub user ametke for reporting! |
|
When fields of type BoundCodeDt (e.g. Patient.gender) are serialized and deserialized using Java's native object serialization, the enum binder was not serialized too. This meant that values for the field in the deserialized object could not be modified. Thanks to Thomas Andersen for reporting! |
||
#313 |
REST Server responded to HTTP OPTIONS requests with any URI as being a request for the server's Conformance statement. This is incorrect, as only a request for |
|
REST annotation style client was not able to handle extended operations ($foo) where the response from the server was a raw resource instead of a Parameters resource. Thanks to Andrew Michael Martin for reporting! |
||
Server now correctly serves up Binary resources using their native content type (instead of as a FHIR resource) if the request contains an accept header containing "application/xml" as some browsers do. |
||
#315 |
Parsing/Encoding a custom resource type which extends a base type sometimes caused the FhirContext to treat all future parses of the same resource as using the custom type even when this was not wanted. |
|
REST search parameters with a prefix/comparator had not been updated to use the DSTU2 style prefixes (gt2011-01-10) instead of the DSTU1 style prefixes (>2011-01-01). The client has been updated so that it uses the new prefixes if the client has a DSTU2+ context. The server has been updated so that it now supports both styles. |
||
JPA server now allows searching by token parameter using a system only and no code, giving a search for any tokens which match the given token with any code. Previously the expected behaviour for this search was not clear in the spec and HAPI had different behaviour from the other reference servers. |
||
#312 |
Parser failed with a NPE while encoding resources if the resource contained a null extension. Thanks to steve1medix for reporting! |
|
#320 |
In generated model classes (DSTU1/2) don't use BoundCodeDt and BoundCodeableConceptDt for coded fields which use example bindings. Thanks to GitHub user Ricq for reporting! |
|
DateTimeType should fail to parse 1974-12-25+10:00 as this is not a valid time in FHIR. Thanks to Grahame Grieve for reporting! |
||
When parsing a Bundle resource, if the Bundle.entry.request.url contains a UUID but the resource body has no ID, the Resource.id will be populated with the ID from the Bundle.entry.request.url. This is helpful when round tripping Bundles containing UUIDs. |
||
When parsing a DSTU3 bundle, references between resources did not have the actual resource instance populated into the reference if the IDs matched as they did in DSTU1/2. |
||
#326 |
Contained resource references on DSTU3 resources were not serialized correctly when using the Json Parser. Thanks to GitHub user @fw060 for reporting and supplying a patch which corrects the issue! |
|
#325 |
DSTU3 model classes equalsShallow and equalsDeep both did not work correctly if a field was null in one object, but contained an empty object in the other (e.g. a StringType with no actual value in it). These two should be considered equal, since they would produce the exact same wire format. |
|
Extensions containing resource references did not get encoded correctly some of the time. Thanks to Poseidon for reporting! |
||
Parsers (both XML and JSON) encoded the first few elements of DSTU3 structures in the wrong order: Extensions were placed before any other content, which is incorrect (several elements come first: meta, text, etc.) |
||
In server implementations, the Bundle.entry.fullUrl was not getting correctly populated on Hl7OrgDstu2 servers. Thanks to Christian Ohr for reporting! |
||
#335 |
Ensure that element IDs within resources (i.e. IDs on elements other than the resource itself) get serialized and parsed correctly. Previously, these didn't get serialized in a bunch of circumstances. Thanks to Vadim Peretokin for reporting and providing test cases! |
|
Server param of |
||
Remove invalid resource type "Documentation" from DSTU2 structures. |
||
#291 |
Fix a failure starting the REST server if a method returns an untyped List, which among other things prevented resource provider added to the server as CDI beans in a JBoss enviroment. Thanks to GitHub user fw060 (Fei) for reporting and figuring out exactly why this wasn't working! |
|
JPA server did not respect target types for search parameters. E.g. Appointment:patient has a path of "Appointment.participant.actor" and a target type of "Patient". The search path was being correctly handled, but the target type was being ignored. |
Released: 2016-02-04
Bump the version of a few dependencies to the latest versions (dependent HAPI modules listed in brackets):
|
||
#265 |
Add a constraint that the Maven build will only run in JDK 8+. HAPI remains committed to supporting JDK 6+ in the compiled library, but these days it can only be built using JDK 8. Thanks to joelsch for the PR! |
|
#240 |
Support target parameter type in _include / _revinclude values, e.g. _include=Patient:careProvider:Organization. Thanks to Joe Portner for reporting! |
|
Use ResponseHighlighterInterceptor in the hapi-fhir-jpaserver-example project to provide nice syntax highlighting. Thanks to Rob Hausam for noting that this wasn't there. |
||
Introduce custom @CoverageIgnore annotation to hapi-fhir-base in order to remove dependency on cobertura during build and in runtime. |
||
JsonParser has been changed so that when serializing numbers it will use plain format (0.001) instead of scientific format (1e-3). The latter is valid JSON, and the parser will still correctly parse either format (all clients should be prepared to) but this change makes serialized resources appear more consistent between XML and JSON. As a result of this change, trailing zeros will now be preserved when serializing as well. |
||
#278 |
Add DSTU3 example to hapi-fhir-jpaserver-example. Thanks to Karl Davis for the Pull Request! |
|
RestfulServer#setUseBrowserFriendlyContentTypes has been deprecated and its functionality removed. The intention of this feature was that if it detected a request coming in from a browser, it would serve up JSON/XML using content types that caused the browsers to pretty print. But each browser has different rules for when to pretty print, and after we wrote that feature both Chrome and FF changed their rules to break it anyhow. ResponseHighlightingInterceptor provides a better implementation of this functionality and should be used instead. |
||
Add two new server interceptors: RequestValidatingInterceptor and ResponseValidatingInterceptor which can be used to validate incoming requests or outgoing responses using the standard FHIR validation tools. See the Server Validation Page for examples of how to use these interceptors. These intereptors have both been enabled on the public test page. |
||
#288 |
Add new methods to RestfulClientFactory allowing you to configure the size of the client pool used by Apache HttpClient. Thanks to Matt Blanchette for the pull request! |
|
Add support for new modifier types on Token search params in Server and annotation client. |
||
#289 |
Allow server to correctly figure out it's own address even if the container provides a Servlet Context Path which does not include the root. Thanks to Petro Mykhaylyshyn for the pull request! |
|
#251 |
Introduce a JAX-RS version of the REST server, which can be used to deploy the same resource provider implementations which work on the existing REST server into a JAX-RS (e.g. Jersey) environment. Thanks to Peter Van Houte from Agfa for the amazing work! |
|
CLI now supports writing to file:// URL for 'upload-examples' command |
||
GZipped content is now supported for client-to-server uploads (create, update, transaction, etc.). The server will not automatically detect compressed incoming content and decompress it (this can be disabled using a RestfulServer configuration setting). A new client interceptor has been added which compresses outgoing content from the client. |
||
Add a new method to the generic/fluent client for searching: |
||
Profile validator has been configured to allow extensions even if they aren't explicitly declared in the profile. |
||
Remove a dependency on a Java 1.7 class (ReflectiveOperationException) in several spots in the codebase. This dependency was accidentally introduced in 1.3, and animal-sniffer-plugin failed to detect it (sigh). |
||
When serializing a value[x] field, if the value type was a profiled type (e.g. markdown is a profile of string) HAPI 1.3 would use the base type in the element name, e.g. valueString instead of valueMarkdown. After discussion with Grahame, this appears to be incorrect behaviour so it has been fixed. |
||
Server-generated conformance statements incorrectly used /Profile/ instead of /StructureDefinition/ in URL links to structures. |
||
#283 |
Remove dependency on Servlet-API 3.0+ by using methods available in 2.5 where possible. Note that we continue to use Servlet-API 3.0+ features in some parts of the JPA API, so running in an old serlvet container should be tested well before use. Thanks to Bill Denton for reporting! |
|
#286 |
Server conformance statement should include search parameter chains if the chains are explicitly defined via @Search(whitelist={....}). Thanks to lcamilo15 for reporting! |
|
Remove afterPropertiesSet() call in Java config for JPA server's EntityManagerFactory. This doesn't need to be called manually, the the manual call led to a warning about the EntityManager being created twice. |
||
#259 |
Make IBoundCodeableConcept and IValueSetEnumBinder serializable, fixing an issue when trying to serialize model classes containing bound codes. Thanks to Nick Peterson for the Pull Request! |
|
JPA server transaction attempted to validate resources twice each, with one of these times being before anything had been committed to the database. This meant that if a transaction contained both a Questionnaire and a QuestionnaireResponse, it would fail because the QuestionnaireResponse validator wouldn't be able to find the questionnaire. This is now corrected. |
||
Narrative generator framework has removed the ability to generate resource titles. This functionality was only useful for DSTU1 implementations and wasn't compatible with coming changes to that API. |