Docs for release 0.7
This commit is contained in:
parent
818177f70f
commit
8f02bd734e
|
@ -13,6 +13,12 @@
|
||||||
tags will no longer accept duplicate tags, but that tag order will still be
|
tags will no longer accept duplicate tags, but that tag order will still be
|
||||||
preserved. Thanks to Bill de Beaubien for reporting!
|
preserved. Thanks to Bill de Beaubien for reporting!
|
||||||
</action>
|
</action>
|
||||||
|
<action type="fix" issue="33">
|
||||||
|
Server was incorrectly including contained resources being returned as both contained resources, and as
|
||||||
|
top-level resources in the returned bundle for search operations.
|
||||||
|
Thanks to Bill de Beaubien for reporting! This also fixes Issue #20, thanks to
|
||||||
|
lephty for reporting!
|
||||||
|
</action>
|
||||||
<action type="add" dev="suranga">
|
<action type="add" dev="suranga">
|
||||||
Documentation fixes
|
Documentation fixes
|
||||||
</action>
|
</action>
|
||||||
|
@ -106,12 +112,6 @@
|
||||||
Documentation on contained resources contained a typo and did not actually produce contained resources. Thanks
|
Documentation on contained resources contained a typo and did not actually produce contained resources. Thanks
|
||||||
to David Hay of Orion Health for reporting!
|
to David Hay of Orion Health for reporting!
|
||||||
</action>
|
</action>
|
||||||
<action type="fix" issue="33">
|
|
||||||
Server was incorrectly including contained resources being returned as both contained resources, and as
|
|
||||||
top-level resources in the returned bundle for search operations.
|
|
||||||
Thanks to Bill de Beaubien for reporting! This also fixes Issue #20, thanks to
|
|
||||||
lephty for reporting!
|
|
||||||
</action>
|
|
||||||
<action type="add" issue="31" dev="preston">
|
<action type="add" issue="31" dev="preston">
|
||||||
Add a
|
Add a
|
||||||
<![CDATA[<a href="https://www.vagrantup.com/">Vagrant</a>]]>
|
<![CDATA[<a href="https://www.vagrantup.com/">Vagrant</a>]]>
|
||||||
|
|
|
@ -85,6 +85,36 @@ System.setProperty("javax.xml.stream.XMLEventFactory", "com.ctc.wstx.stax.WstxEv
|
||||||
|
|
||||||
</subsection>
|
</subsection>
|
||||||
|
|
||||||
|
<subsection name="Phloc-Schematron">
|
||||||
|
|
||||||
|
<p>
|
||||||
|
If you are using the
|
||||||
|
<a href="./doc_validation.html">Schematron Validatioon</a>
|
||||||
|
module, you will also need to include the Phloc library on your
|
||||||
|
classpath.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If you are using Maven, this library is not added by default (it is
|
||||||
|
marked as an optional dependency) since not all applications need Schematron
|
||||||
|
support. As a result you will need to manually add the following
|
||||||
|
dependencies to your project POM.xml
|
||||||
|
</p>
|
||||||
|
<source><![CDATA[<dependency>
|
||||||
|
<groupId>com.phloc</groupId>
|
||||||
|
<artifactId>phloc-schematron</artifactId>
|
||||||
|
<version>${phloc_schematron_version}</version>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.phloc</groupId>
|
||||||
|
<artifactId>phloc-commons</artifactId>
|
||||||
|
<version>${phloc_commons_version}</version>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>]]></source>
|
||||||
|
|
||||||
|
</subsection>
|
||||||
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -39,6 +39,20 @@
|
||||||
|
|
||||||
<section name="Announcements">
|
<section name="Announcements">
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<b>Oct 22, 2014 - HAPI FHIR 0.7 Released</b> - A new build has been uploaded,
|
||||||
|
containing a number of new features and bug fixes. See the changelog
|
||||||
|
for a complete list of what has changed. Of particular note, the way
|
||||||
|
that contained resources are automatically serialized has been adjusted. This was
|
||||||
|
technically a bugfix, as the previous version was often repeating encoded
|
||||||
|
resources as top-level resources in returned bundles, but it is possible that
|
||||||
|
implementations have been relying on this b
|
||||||
|
the TagList
|
||||||
|
class has been switched from a List to a Set based on discussion
|
||||||
|
<br/>
|
||||||
|
- <a href="mailto:jamesagnew@users.sourceforge.net">James Agnew</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<b>Sep 8, 2014 - HAPI FHIR 0.6 Released</b> - A new build has been uploaded,
|
<b>Sep 8, 2014 - HAPI FHIR 0.6 Released</b> - A new build has been uploaded,
|
||||||
containing a number of new features and bug fixes. See the changelog
|
containing a number of new features and bug fixes. See the changelog
|
||||||
|
|
Loading…
Reference in New Issue