Skip to content

Commit

Permalink
Release 2.6.0 (#833)
Browse files Browse the repository at this point in the history
* printing removed

* release 2.6.0 prepared
  • Loading branch information
sheenaze authored Feb 22, 2024
1 parent c3a1f39 commit d9ebf9b
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,13 @@ export class ShareUserDataComponent implements OnInit, OnChanges{

public manageDataInGroup(groupId: number, dataId: string, action: string): void{
this.userDatasetService.manageDataInManagementGroup(groupId, dataId, action).subscribe(data => {
console.log(data);
this.openShareDataWindow.emit(false)
// this.shareDataModalWindow = false;
})
}

public removeGroup(): void{
console.log('I am trying to remove this group')
// console.log('I am trying to remove this group')
}

}
1 change: 0 additions & 1 deletion UI/src/app/pages/validate/validate.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,6 @@ export class ValidateComponent implements OnInit, AfterViewInit {
}

public checkIsmnPoints(evt): void {
console.log(evt)
this.noIsmnPoints.next(evt)
}

Expand Down
9 changes: 5 additions & 4 deletions docker/compose/prod/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
restart: always

web:
image: "awst/qa4sm:2.5.0"
image: "awst/qa4sm:2.6.0"
restart: always
environment:
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
Expand All @@ -31,6 +31,7 @@ services:
QA4SM_DB_USER: "${QA4SM_DB_USER}"
QA4SM_DB_PASSWORD: "${QA4SM_DB_PASSWORD}"
QA4SM_DB_HOST: "${QA4SM_DB_HOST}"
QA4SM_DATA_FOLDER: "${QA4SM_DATA_FOLDER}"

volumes:
- type: bind
Expand All @@ -50,16 +51,16 @@ services:
target: /var/lib/qa4sm-web-val/valentina/data/user_data

proxy:
image: "awst/qa4sm-proxy:2.5.0"
image: "awst/qa4sm-proxy:2.6.0"
restart: always
ports:
- "8080:80"
ui:
image: "awst/qa4sm-ui:2.5.0"
image: "awst/qa4sm-ui:2.6.0"
restart: always

worker-1:
image: "awst/qa4sm-worker:2.5.0"
image: "awst/qa4sm-worker:2.6.0"
restart: always
environment:
QA4SM_DB_HOST: "${QA4SM_DB_HOST}"
Expand Down
6 changes: 3 additions & 3 deletions docker/compose/test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ services:
- type: bind
source: "${QA4SM_WORKSPACE}webapp/user_data"
target: /var/lib/qa4sm-web-val/valentina/data/user_data
- type: bind
source: "${QA4SM_USERMANUAL_FOLDER}"
target: /var/lib/qa4sm-web-val/valentina/docs

proxy:
image: "awst/qa4sm-proxy:latest"
Expand Down Expand Up @@ -81,6 +78,9 @@ services:
- type: bind
source: "${QA4SM_WORKSPACE}webapp/user_data"
target: /var/lib/qa4sm-web-val/valentina/data/user_data
- type: bind
source: "${QA4SM_USERMANUAL_FOLDER}"
target: /var/lib/qa4sm-web-val/valentina/docs
deploy:
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion environment/qa4sm_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ dependencies:
- gldas==0.7.0
- h5netcdf==1.1.0
- h5py==3.8.0
- git+https://github.com/TUW-GEO/ismn.git@master
- ismn==1.4.0
- joblib==1.2.0
- kombu==5.2.4
- llvmlite==0.40.0
Expand Down
10 changes: 10 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
QA4SM v2.6.0 - Release notes 2024-02-21
=======================================================
# Updates
1. Layout for small screens updated
2. Ismn package version updated

# New Features
1. ISMN stations presented on the map for better overview
2. Possibility to archive and unarchive multiple datasets added

QA4SM v2.5.0 - Release notes 2024-01-08
=======================================================
# Updates
Expand Down
3 changes: 1 addition & 2 deletions valentina/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
APP_VERSION = '2.5.0'

APP_VERSION = '2.6.0'

0 comments on commit d9ebf9b

Please sign in to comment.