Skip to content

Commit 5135b14

Browse files
committed
Create release 8.1.0
1 parent c23e045 commit 5135b14

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[*]
2+
end_of_line = lf
3+
insert_final_newline = true
4+
indent_style = space
5+
indent_size = 2
6+
7+
[*.java]
8+
indent_size = 4

Changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
## 8.1.0
4+
- Allow POST requests to `/oidc/authorize` (enables form_post submissions) ([#263](https://github.com/OpenConext/OpenConext-oidcng/issues/263))
5+
- Ensure URIs passed in the `login_hint` are absolute (PR [#271](https://github.com/OpenConext/OpenConext-oidcng/pull/271))
6+
- Prevent duplicate keys ([#239](https://github.com/OpenConext/OpenConext-oidcng/issues/239))
7+
- Do not expose mappings
8+
- Add eduPersonAssurance claim
9+
- Support preferred language user attribute
10+
- Switch to JDK 21 and upgrade Spring Boot and dependencies (oauth2-oidc-sdk 11.23.1, OpenSAML 5.1.4, xmlsec 4.0.4, BouncyCastle 1.80, logstash-logback-encoder 8.1)
11+
- Enable @Scheduled annotations in standalone mode
12+
- Include SRAM services
13+
- Build improvements: ARM images, Docker deployment refactoring, multi-module Maven structure
14+
- CI and plugin upgrades
15+
16+
## 8.0.1 (2025-03-07)
17+
- Backward compatibility for comma-separated scope values ([#238](https://github.com/OpenConext/OpenConext-oidcng/issues/238))
18+
- Device code flow textual fixes (NL)

oidc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.openconext</groupId>
1111
<artifactId>oidcng-parent</artifactId>
12-
<version>8.0.3-SNAPSHOT</version>
12+
<version>8.1.0</version>
1313
</parent>
1414

1515
<dependencyManagement>

pom.xml

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

1212
<groupId>org.openconext</groupId>
1313
<artifactId>oidcng-parent</artifactId>
14-
<version>8.0.3-SNAPSHOT</version>
14+
<version>8.1.0</version>
1515
<name>oidcng</name>
1616
<packaging>pom</packaging>
1717

release/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.openconext</groupId>
77
<artifactId>oidcng-parent</artifactId>
8-
<version>8.0.3-SNAPSHOT</version>
8+
<version>8.2.0</version>
99
</parent>
1010

1111
<artifactId>oidcng-release</artifactId>
@@ -62,4 +62,4 @@
6262
</profile>
6363
</profiles>
6464

65-
</project>
65+
</project>

0 commit comments

Comments
 (0)