Skip to content

Commit 0b10390

Browse files
author
Dennis Labordus
authored
Merge pull request #89 from com-pas/update-docker-image-3oct
Updated container images
2 parents ede8f03 + fb4aa50 commit 0b10390

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

RELEASE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@ For information about CoMPAS go to this [site](https://com-pas.github.io/).
1010

1111
## Release notes
1212

13+
### Release 0.14.0
14+
15+
Next release for testing the CoMPAS System with all components.
16+
- [OpenSCD CoMPAS Edition](https://github.com/com-pas/compas-open-scd) (Version 0.24.0.3):
17+
- Filter (on labels) when opening project;
18+
- [SCL Validator Service](https://github.com/com-pas/compas-scl-validator) (Version 0.4.4):
19+
- Added CoMPAS XSD to validated CoMPAS private elements;
20+
- Updated libraries to the latest versions;
21+
- [SCL Data Service](https://github.com/com-pas/compas-scl-data-service) (Version 0.11.1):
22+
- Improved performance PostgreSQL implementation regarding labels;
23+
- Updated libraries to the latest versions;
24+
1325
### Release 0.13.0
1426

1527
Next release for testing the CoMPAS System with all components.

compas/docker-compose-basex.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ services:
3939
scl-data-service:
4040
labels:
4141
compas: true
42-
image: "lfenergy/compas-scl-data-service:0.11.0-basex"
42+
image: "lfenergy/compas-scl-data-service:0.11.1-basex"
4343
ports:
4444
- "9090:8080"
4545
environment:
@@ -117,7 +117,7 @@ services:
117117
scl-validator:
118118
labels:
119119
compas: true
120-
image: "lfenergy/compas-scl-validator:0.4.3"
120+
image: "lfenergy/compas-scl-validator:0.4.4"
121121
ports:
122122
- "9093:8080"
123123
environment:
@@ -144,7 +144,7 @@ services:
144144
open-scd:
145145
labels:
146146
compas: true
147-
image: "lfenergy/compas-open-scd:v0.24.0.2"
147+
image: "lfenergy/compas-open-scd:v0.24.0.3"
148148
healthcheck:
149149
test: ["CMD", "curl", "-f", "http://localhost/"]
150150
interval: 30s

compas/docker-compose-postgresql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ services:
4646
scl-data-service:
4747
labels:
4848
compas: true
49-
image: "lfenergy/compas-scl-data-service:0.11.0-postgresql"
49+
image: "lfenergy/compas-scl-data-service:0.11.1-postgresql"
5050
ports:
5151
- "9090:8080"
5252
environment:
@@ -124,7 +124,7 @@ services:
124124
scl-validator:
125125
labels:
126126
compas: true
127-
image: "lfenergy/compas-scl-validator:0.4.3"
127+
image: "lfenergy/compas-scl-validator:0.4.4"
128128
ports:
129129
- "9093:8080"
130130
environment:
@@ -151,7 +151,7 @@ services:
151151
open-scd:
152152
labels:
153153
compas: true
154-
image: "lfenergy/compas-open-scd:v0.24.0.2"
154+
image: "lfenergy/compas-open-scd:v0.24.0.3"
155155
healthcheck:
156156
test: ["CMD", "curl", "-f", "http://localhost/"]
157157
interval: 30s

integration-testing/include/general-compas.robot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Resource ./general-openscd.robot
1010
*** Keywords ***
1111
Open from CoMPAS
1212
[Arguments] ${name} ${type} ${expectedVersion}
13-
Click ${dialog-selector} compas-open compas-scltype-list > mwc-list > mwc-list-item >> span:has-text("${type.upper()}")
14-
Click ${dialog-selector} compas-open compas-scl-list > mwc-list > mwc-list-item:has-text("${name}-${current-date}")
13+
Click mwc-dialog#compas-open-dlg > compas-open compas-scltype-list > mwc-list > mwc-list-item >> span:has-text("${type.upper()}")
14+
Click mwc-dialog#compas-open-dlg > compas-open compas-scl-list > filtered-list > mwc-list-item:has-text("${name}-${current-date}")
1515
Wait for dialog is closed
1616
Close Menu
1717
# check if the title (filename) changed to the new expected one.

integration-testing/include/general-openscd.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Select Tab
7373
Open local file
7474
[Arguments] ${name} ${type}
7575
${promise}= Promise To Upload File ${CURDIR}/../test-files/${name}.${type.lower()}
76-
Click ${dialog-selector} compas-open mwc-button[label="Open file..."] button
76+
Click mwc-dialog#compas-open-dlg > compas-open mwc-button[label="Open file..."] button
7777
${upload_result}= Wait For ${promise}
7878
Sleep 0.5s Wait until loading file starts.
7979
Wait for dialog is closed

0 commit comments

Comments
 (0)