Skip to content

Commit 1577186

Browse files
committed
update history and version
1 parent a44cb16 commit 1577186

File tree

14 files changed

+38
-32
lines changed

14 files changed

+38
-32
lines changed

History.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
3.0.8 10/12/2024
2+
================
3+
* FIX #20: Ordering of admin instance sessions by most recent
4+
* FIX #19: Reduce the remote desktop idle timer to 14s preventing the guacamole timeout error from being reported
5+
* FIX #18: Use full entity inner classes for simplified models to ensure that foreign key constraints are created
6+
17
3.0.7 08/12/2024
28
================
39
* Increase instance server port check timeout default to 5s (from 2s)

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>eu.ill.visa</groupId>
77
<artifactId>api</artifactId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99

1010
<modules>
1111
<module>visa-core</module>

visa-app/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -32,27 +32,27 @@
3232
<dependency>
3333
<groupId>eu.ill.visa</groupId>
3434
<artifactId>visa-web-rest</artifactId>
35-
<version>3.0.7</version>
35+
<version>3.0.8</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>eu.ill.visa</groupId>
3939
<artifactId>visa-web-graphql</artifactId>
40-
<version>3.0.7</version>
40+
<version>3.0.8</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>eu.ill.visa</groupId>
4444
<artifactId>visa-web-gateway</artifactId>
45-
<version>3.0.7</version>
45+
<version>3.0.8</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>eu.ill.visa</groupId>
4949
<artifactId>visa-remote-desktop</artifactId>
50-
<version>3.0.7</version>
50+
<version>3.0.8</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>eu.ill.visa</groupId>
5454
<artifactId>visa-scheduler</artifactId>
55-
<version>3.0.7</version>
55+
<version>3.0.8</version>
5656
</dependency>
5757
</dependencies>
5858

visa-business/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -22,17 +22,17 @@
2222
<dependency>
2323
<groupId>eu.ill.visa</groupId>
2424
<artifactId>visa-persistence</artifactId>
25-
<version>3.0.7</version>
25+
<version>3.0.8</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>eu.ill.visa</groupId>
2929
<artifactId>visa-cloud</artifactId>
30-
<version>3.0.7</version>
30+
<version>3.0.8</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>eu.ill.visa</groupId>
3434
<artifactId>visa-message-broker</artifactId>
35-
<version>3.0.7</version>
35+
<version>3.0.8</version>
3636
</dependency>
3737

3838
<dependency>

visa-cloud/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

visa-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

visa-message-broker/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>eu.ill.visa</groupId>
2020
<artifactId>visa-core</artifactId>
21-
<version>3.0.7</version>
21+
<version>3.0.8</version>
2222
</dependency>
2323

2424
<dependency>

visa-persistence/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>eu.ill.visa</groupId>
1919
<artifactId>visa-core</artifactId>
20-
<version>3.0.7</version>
20+
<version>3.0.8</version>
2121
</dependency>
2222
</dependencies>
2323

visa-remote-desktop/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>eu.ill.visa</groupId>
2222
<artifactId>visa-business</artifactId>
23-
<version>3.0.7</version>
23+
<version>3.0.8</version>
2424
</dependency>
2525

2626
<dependency>

visa-scheduler/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>eu.ill.visa</groupId>
1717
<artifactId>visa-business</artifactId>
18-
<version>3.0.7</version>
18+
<version>3.0.8</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.quarkus</groupId>

visa-security/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>visa-security</artifactId>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>eu.ill.visa</groupId>
1919
<artifactId>visa-business</artifactId>
20-
<version>3.0.7</version>
20+
<version>3.0.8</version>
2121
</dependency>
2222

2323
<dependency>

visa-web-gateway/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -18,12 +18,12 @@
1818
<dependency>
1919
<groupId>eu.ill.visa</groupId>
2020
<artifactId>visa-business</artifactId>
21-
<version>3.0.7</version>
21+
<version>3.0.8</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>eu.ill.visa</groupId>
2525
<artifactId>visa-message-broker</artifactId>
26-
<version>3.0.7</version>
26+
<version>3.0.8</version>
2727
</dependency>
2828
</dependencies>
2929

visa-web-graphql/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -18,12 +18,12 @@
1818
<dependency>
1919
<groupId>eu.ill.visa</groupId>
2020
<artifactId>visa-business</artifactId>
21-
<version>3.0.7</version>
21+
<version>3.0.8</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>eu.ill.visa</groupId>
2525
<artifactId>visa-security</artifactId>
26-
<version>3.0.7</version>
26+
<version>3.0.8</version>
2727
</dependency>
2828

2929
<dependency>

visa-web-rest/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api</artifactId>
77
<groupId>eu.ill.visa</groupId>
8-
<version>3.0.7</version>
8+
<version>3.0.8</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -18,12 +18,12 @@
1818
<dependency>
1919
<groupId>eu.ill.visa</groupId>
2020
<artifactId>visa-business</artifactId>
21-
<version>3.0.7</version>
21+
<version>3.0.8</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>eu.ill.visa</groupId>
2525
<artifactId>visa-security</artifactId>
26-
<version>3.0.7</version>
26+
<version>3.0.8</version>
2727
</dependency>
2828

2929
<dependency>

0 commit comments

Comments
 (0)