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

7 0 0 mb #5678

Merged
merged 25 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a2a0a8a
pom bump to 7.0.0 (#5615)
longma1 Jan 22, 2024
b982abb
Check index existence on raw SQL creation (#5624)
tadgh Jan 24, 2024
47867fc
5621 deadlock on caffeine cache when creating a resource with conditi…
epeartree Jan 24, 2024
4b1ac77
Searching with more than one chained Bundle SearchParameter returns i…
nathandoef Jan 24, 2024
ba28ff9
Avoiding Exception being thrown on @EventListener invocation (#5628)
epeartree Jan 25, 2024
1441a90
simple fix (#5630)
longma1 Jan 25, 2024
224e569
Incorrect version of auto versioned reference for conditional update …
volodymyr-korzh Jan 26, 2024
d3876c5
Oracle: Ensure migrated database still takes large resource text upd…
lukedegruchy Jan 26, 2024
c7fd015
Fix expansion for `ValueSet` with no concepts based on CodeSystem `ur…
Jan 29, 2024
5004907
$expunge operation ignoring ExpungeThreadCount setting in certain cas…
volodymyr-korzh Jan 30, 2024
94e932c
Fix Measure group id null pointer exception (#5620)
JPercival Jan 30, 2024
16aa9fc
Rule evaluation: Allow Bundles with PATCH Parameters (#5641)
lukedegruchy Jan 30, 2024
5ed30f3
Prevent batch2 job execution to stop for empty chunk when last job st…
jmarchionatto Jan 30, 2024
59f7d4a
Index review fixes (#5649)
michaelabuckley Jan 31, 2024
ec1b8fe
Fix conditional creates without leading '?' (#5646)
lukedegruchy Jan 31, 2024
0537ab5
Searching for Bundles with read all Bundles permission returns 403 (#…
nathandoef Feb 2, 2024
0f3c744
Fix NullPointerException when performing a system bulk export in the …
Feb 2, 2024
14a489c
Serializing changes for sensitive data (#5655)
tadgh Feb 3, 2024
d63d3ca
Rel 7 0 CVE (#5663)
tadgh Feb 4, 2024
ace3fcc
Descendent fix (#5669)
tadgh Feb 5, 2024
b395039
mergeback rel_7_0 to master
Feb 6, 2024
4832a5c
fix conflict mistake
Feb 6, 2024
27ffdfd
removed test assert that is no longer true:
Feb 7, 2024
f1026f2
version bumpb to 7.1.1
Feb 7, 2024
70a66a7
fix version Enum test
Feb 7, 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
Rel 7 0 CVE (#5663)
* Bump json-path

* Pin parrson

* Bump elastic

* Bump spring version

* Exclude JDBC
  • Loading branch information
tadgh committed Feb 4, 2024
commit d63d3cab46d7e961f8a2a8f958881124d6284dff
7 changes: 7 additions & 0 deletions hapi-fhir-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.convertors</artifactId>
<version>${fhir_core_version}</version>
<exclusions>
<!-- Exclude JDBC since it appears entirely unused, and has a CVE -->
<exclusion>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Server -->
Expand Down
11 changes: 8 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@
<swagger_version>2.2.19</swagger_version>
<slf4j_version>2.0.9</slf4j_version>
<log4j_to_slf4j_version>2.19.0</log4j_to_slf4j_version>
<spring_version>6.1.1</spring_version>
<spring_version>6.1.3</spring_version>
<spring_data_bom_version>2023.1.0</spring_data_bom_version>
<spring_batch_version>4.3.3</spring_batch_version>
<spring_boot_version>3.2.0</spring_boot_version>
Expand All @@ -989,7 +989,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<ebay_cors_filter_version>1.0.1</ebay_cors_filter_version>
<elastic_apm_version>1.44.0</elastic_apm_version>
<elasticsearch_version>8.11.1</elasticsearch_version>
<elasticsearch_version>8.12.0</elasticsearch_version>
<ucum_version>1.0.8</ucum_version>

<!-- CQL Support -->
Expand Down Expand Up @@ -1082,7 +1082,7 @@
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.8.0</version>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
Expand Down Expand Up @@ -1358,6 +1358,11 @@
<artifactId>elasticsearch-java</artifactId>
<version>${elasticsearch_version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.parsson</groupId>
<artifactId>parsson</artifactId>
<version>1.0.5</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
Expand Down
Loading