Skip to content

Commit 015be7a

Browse files
authored
Merge pull request #92 from xdev-software/develop
Release
2 parents 1596d0b + 05ff6eb commit 015be7a

File tree

44 files changed

+395
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+395
-62
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 1.2.0
2+
* Added ``LoginUrlStore``
3+
* Stores the login url so that it can be used inside other parts of applications to e.g. display dedicated login components
4+
* Enabled by default, can be disabled with ``sse.web.login-url-store.enabled=false``
5+
* OAuth2-OIDC
6+
* Added ``OAuth2LoginUrlStoreAdapter`` to determine the login url
7+
* Vaadin
8+
* Now handles ``LoginUrlStore`` if present and set's the value to ``NavigationAccessControl#setLoginView``
9+
* This is usually only needed when the authentication is anonymous and navigation to a view that requires non-anonymous authentication happens
10+
111
# 1.1.0
212
* Updated to Spring Boot 3.5
313

bom/pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>bom</artifactId>
9-
<version>1.1.1-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<name>bom</name>
@@ -51,62 +51,62 @@
5151
<dependency>
5252
<groupId>software.xdev.sse</groupId>
5353
<artifactId>client-storage</artifactId>
54-
<version>1.1.1-SNAPSHOT</version>
54+
<version>1.2.0-SNAPSHOT</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>software.xdev.sse</groupId>
5858
<artifactId>crypto-symmetric</artifactId>
59-
<version>1.1.1-SNAPSHOT</version>
59+
<version>1.2.0-SNAPSHOT</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>software.xdev.sse</groupId>
6363
<artifactId>crypto-symmetric-managed</artifactId>
64-
<version>1.1.1-SNAPSHOT</version>
64+
<version>1.2.0-SNAPSHOT</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>software.xdev.sse</groupId>
6868
<artifactId>codec-sha256</artifactId>
69-
<version>1.1.1-SNAPSHOT</version>
69+
<version>1.2.0-SNAPSHOT</version>
7070
</dependency>
7171
<dependency>
7272
<groupId>software.xdev.sse</groupId>
7373
<artifactId>csp</artifactId>
74-
<version>1.1.1-SNAPSHOT</version>
74+
<version>1.2.0-SNAPSHOT</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>software.xdev.sse</groupId>
7878
<artifactId>metrics</artifactId>
79-
<version>1.1.1-SNAPSHOT</version>
79+
<version>1.2.0-SNAPSHOT</version>
8080
</dependency>
8181
<dependency>
8282
<groupId>software.xdev.sse</groupId>
8383
<artifactId>oauth2-oidc</artifactId>
84-
<version>1.1.1-SNAPSHOT</version>
84+
<version>1.2.0-SNAPSHOT</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>software.xdev.sse</groupId>
8888
<artifactId>oauth2-oidc-remember-me</artifactId>
89-
<version>1.1.1-SNAPSHOT</version>
89+
<version>1.2.0-SNAPSHOT</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.xdev.sse</groupId>
9393
<artifactId>vaadin</artifactId>
94-
<version>1.1.1-SNAPSHOT</version>
94+
<version>1.2.0-SNAPSHOT</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>software.xdev.sse</groupId>
9898
<artifactId>web</artifactId>
99-
<version>1.1.1-SNAPSHOT</version>
99+
<version>1.2.0-SNAPSHOT</version>
100100
</dependency>
101101
<dependency>
102102
<groupId>software.xdev.sse</groupId>
103103
<artifactId>web-sidecar-actuator</artifactId>
104-
<version>1.1.1-SNAPSHOT</version>
104+
<version>1.2.0-SNAPSHOT</version>
105105
</dependency>
106106
<dependency>
107107
<groupId>software.xdev.sse</groupId>
108108
<artifactId>web-sidecar-common</artifactId>
109-
<version>1.1.1-SNAPSHOT</version>
109+
<version>1.2.0-SNAPSHOT</version>
110110
</dependency>
111111
</dependencies>
112112
</dependencyManagement>

client-storage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>client-storage</artifactId>
9-
<version>1.1.1-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>client-storage</name>

codec-sha256/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>codec-sha256</artifactId>
9-
<version>1.1.1-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>codec-sha256</name>

crypto-symmetric-managed/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>crypto-symmetric-managed</artifactId>
9-
<version>1.1.1-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>crypto-symmetric-managed</name>

crypto-symmetric/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>crypto-symmetric</artifactId>
9-
<version>1.1.1-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>crypto-symmetric</name>

csp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>csp</artifactId>
9-
<version>1.1.1-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>csp</name>

demo/entities-metamodel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.xdev.sse.demo</groupId>
99
<artifactId>demo</artifactId>
10-
<version>1.1.1-SNAPSHOT</version>
10+
<version>1.2.0-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>entities-metamodel</artifactId>
1313

demo/entities/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.xdev.sse.demo</groupId>
99
<artifactId>demo</artifactId>
10-
<version>1.1.1-SNAPSHOT</version>
10+
<version>1.2.0-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>entities</artifactId>
1313

demo/persistence/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.xdev.sse.demo</groupId>
99
<artifactId>demo</artifactId>
10-
<version>1.1.1-SNAPSHOT</version>
10+
<version>1.2.0-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>persistence</artifactId>
1313

0 commit comments

Comments
 (0)