Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
0ba2e04
Allow cached search with consent active when safe (#5387)
michaelabuckley Oct 21, 2023
edb01a8
Change package installation behaviour such that it updates the existi…
Oct 21, 2023
52bdc26
Transaction with conditional update fails if SearchNarrowingIntercept…
volodymyr-korzh Oct 23, 2023
a40adab
Reverse Chaining searches returns an error when invoked with paramete…
TynerGjs Oct 25, 2023
69780a3
Br 20231019 add cr settings for cds hooks (#5394)
barhodes Oct 25, 2023
cf3cf25
Upgrade notes for the forced-id change (#5400)
michaelabuckley Oct 25, 2023
757ef72
Clean stale search results more aggressively. (#5396)
michaelabuckley Oct 26, 2023
97fc5ca
bump version of clinical reasoning (#5406)
Capt-Mac Oct 27, 2023
1c5fe61
Transaction fails if SearchNarrowingInterceptor is registered and Par…
volodymyr-korzh Oct 27, 2023
7131be7
removed unused alias from SQL query of mdm-clear (#5416)
TynerGjs Oct 31, 2023
4e295a5
Issue 5418 support Boolean class return type in BaseInterceptorServic…
jmarchionatto Nov 1, 2023
64cc704
If AutoInflateBinaries is enabled, binaries are created on the disk o…
volodymyr-korzh Nov 1, 2023
475b148
Revert "Issue 5418 support Boolean class return type in BaseIntercept…
tadgh Nov 1, 2023
f62e903
Use new FHIR_ID column for sorting (#5405)
michaelabuckley Nov 2, 2023
6b8f8a4
Bump core to 6.1.2.2 (#5425)
dotasek Nov 2, 2023
33ca4e9
Make sure to return always a value for Boolean class return type. (#5…
jmarchionatto Nov 2, 2023
2ef2924
Add non-standard __pid SP for breaking ties cheaply during sorts. (#5…
michaelabuckley Nov 3, 2023
917f69c
Review changes for new _pid SP. (#5430)
michaelabuckley Nov 3, 2023
5318b24
Fix VersionCanonicalizer conversion from R5 into DSTU2 for Capability…
Nov 5, 2023
55ce4c4
CVEs for 6.10.0 (#5433)
tadgh Nov 5, 2023
7a25bfe
5412 post bundle on partition incorrect response.link shown (#5413)
LalithE Nov 6, 2023
0831e0f
Resolve We don't have guaranteed subscription delivery if a resource …
TynerGjs Nov 6, 2023
3062fad
Fix for failing IT test in jpaserver-starter (#5435)
TynerGjs Nov 7, 2023
42bf858
wip
tadgh Nov 7, 2023
a1a16e4
Merge branch 'rel_6_10' into rel_6_10_mb
tadgh Nov 8, 2023
fbea746
Bump jackson databind
tadgh Nov 9, 2023
b6b1302
Pin Version
tadgh Nov 16, 2023
83dfe88
Ignored duplicate classes
tadgh Nov 16, 2023
fd77907
Updating version to: 6.10.1 post release.
markiantorno Nov 17, 2023
f75b279
Fix pom
tadgh Nov 17, 2023
3322e22
Skip remorte nexus
tadgh Nov 17, 2023
f678747
make release faster
tadgh Nov 17, 2023
5c949df
Updating version to: 6.10.1 post release.
markiantorno Nov 17, 2023
a1d5ccb
Merge branch 'master' into rel_6_10_mb
tadgh Nov 21, 2023
dda3b55
Merge branch 'rel_6_10' into rel_6_10_mb
tadgh Nov 21, 2023
144ce57
remove skiptests
tadgh Nov 21, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public enum VersionEnum {
V6_9_0,

V6_10_0,

V6_10_1,
V6_11_0,

V7_0_0;
Expand Down
8 changes: 8 additions & 0 deletions hapi-fhir-jpaserver-uhnfhirtest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,14 @@
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skipRemoteStaging>true</skipRemoteStaging>
<skipLocalStaging>true</skipLocalStaging>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -950,8 +950,8 @@
<hibernate_validator_version>6.1.5.Final</hibernate_validator_version>
<httpcore_version>4.4.13</httpcore_version>
<httpclient_version>4.5.13</httpclient_version>
<jackson_version>2.15.2</jackson_version>
<jackson_databind_version>2.15.2</jackson_databind_version>
<jackson_version>2.15.3</jackson_version>
<jackson_databind_version>2.15.3</jackson_databind_version>
<maven_assembly_plugin_version>3.3.0</maven_assembly_plugin_version>
<maven_license_plugin_version>1.8</maven_license_plugin_version>
<okhttp_version>4.10.0</okhttp_version>
Expand Down
8 changes: 8 additions & 0 deletions tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,14 @@
<finalName>hapi-fhir-jaxrsserver-example</finalName>
<!-- This is to run the integration tests -->
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skipRemoteStaging>true</skipRemoteStaging>
<skipLocalStaging>true</skipLocalStaging>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
Expand Down