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

Release v1.6 (Q4 2024) #46

Merged
merged 23 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e1fede4
Increase version number
rlreamy Oct 10, 2024
8ea929a
Update build-gradle-project.yml
rlreamy Oct 10, 2024
153f9c1
Merge pull request #39 from KPMP/KPMP-5500_ReleaseActivities
zwright Oct 14, 2024
67f3733
KPMP-5365: replace tissueType
HaneenT Nov 1, 2024
f5f652d
Merge pull request #40 from KPMP/KPMP-5365_replace_tissue_type
zwright Nov 4, 2024
d7b60e7
add clinical information with endpoint
Dert1129 Nov 4, 2024
b6012b1
fix method names and add capitalization logic for weirdly capitalized…
Dert1129 Nov 4, 2024
edd7bfa
remove unused imports
Dert1129 Nov 4, 2024
412dad1
Merge branch 'develop' into KPMP-5569_add-clinical-data-to-ES-index
Dert1129 Nov 4, 2024
886bc22
fix camelCase
Dert1129 Nov 4, 2024
5f6a7db
fix logic for clinical file and add tests for new methods
Dert1129 Nov 5, 2024
cfbb8b2
Move types to be together
Dert1129 Nov 5, 2024
3ee637b
rename variable
Dert1129 Nov 5, 2024
cb0c2dc
Merge pull request #41 from KPMP/KPMP-5569_add-clinical-data-to-ES-index
zwright Nov 5, 2024
d5924b4
chnage ethnicity to rae
Dert1129 Nov 15, 2024
b5542c4
Merge pull request #42 from KPMP/KPMP-5569_fix-json-label
HaneenT Nov 15, 2024
28ae3e2
KPMP-5700: Setting the clinical props so we do not have value overlap
rlreamy Dec 3, 2024
5246a56
Merge pull request #43 from KPMP/KPMP-5700_UniquifyFilters
Dert1129 Dec 3, 2024
5140e39
KPMP-5700: Account for blanks
rlreamy Dec 4, 2024
7c7d49f
KPMP-5700: Fix the links (add spaces)
rlreamy Dec 4, 2024
859f61f
Merge pull request #44 from KPMP/KPMP-5700_UniquifyFilters
zwright Dec 4, 2024
17d0bc2
Update changelog.md
rlreamy Dec 11, 2024
32e0858
Merge pull request #45 from KPMP/KPMP-5644_UpdateChangelog
zwright Dec 11, 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
2 changes: 1 addition & 1 deletion .github/workflows/build-gradle-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
build-gradle-project:
env:
IMAGE_TAG: 1.5
IMAGE_TAG: 1.6
runs-on: ubuntu-latest
steps:
- name: Get branch names
Expand Down
1 change: 1 addition & 0 deletions .java-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
21.0.4
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group='kingstonduo'
version='1.5'
version='1.6'


apply plugin: 'java'
Expand All @@ -22,7 +22,9 @@ apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'


test{
useJUnitPlatform()
}

repositories {
mavenCentral()
Expand All @@ -36,6 +38,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'com.mysql:mysql-connector-j:8.3.0'
implementation 'org.apache.commons:commons-text:1.12.0'

implementation 'com.graphql-java:graphql-spring-boot-starter:5.0.2'
implementation 'com.graphql-java:graphiql-spring-boot-starter:5.0.2'
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
## Release 1.6

Brief summary of what's in this release:
- uniquifying the clinical data filters by adding a few characters so filtering works correctly in app
- updated code to get clinical data from new table
- changed tissueType to enrollmentCategory


### Breaking changes

Expand Down
Loading
Loading