Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package nl.kennisnet.services.web.interceptor;

import jakarta.annotation.Nullable;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;

Expand Down Expand Up @@ -53,7 +54,7 @@ public boolean preHandle(HttpServletRequest request, HttpServletResponse respons
*/
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object o,
ModelAndView modelAndView) {
@Nullable ModelAndView modelAndView) {
// This implementation is empty. This functionality is not required to set specific headers.
}

Expand All @@ -62,7 +63,7 @@ public void postHandle(HttpServletRequest request, HttpServletResponse response,
*/
@Override
public void afterCompletion(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse,
Object o, Exception e) {
Object o, @Nullable Exception e) {

// This implementation is empty. This functionality is not required to set specific headers.
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@NonNullApi
package nl.kennisnet.services.web.interceptor;

import org.springframework.lang.NonNullApi;
19 changes: 9 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.5</version>
<version>3.4.7</version>
</parent>

<build>
Expand Down Expand Up @@ -192,15 +192,6 @@
</roles>
<email>Kok.Stephan@kpmg.nl</email>
</developer>
<developer>
<id>jong01</id>
<name>Vincent Jong</name>
<organization>KPMG Advisory N.V.</organization>
<roles>
<role>Developer</role>
</roles>
<email>Jong.Vincent@kpmg.nl</email>
</developer>
<developer>
<id>mutlu01</id>
<name>Aram Mutlu</name>
Expand All @@ -213,6 +204,14 @@
</developers>

<contributors>
<contributor>
<name>Vincent Jong</name>
<organization>KPMG Advisory N.V.</organization>
<roles>
<role>Developer</role>
</roles>
<email>Jong.Vincent@kpmg.nl</email>
</contributor>
<contributor>
<name>Tim Poot</name>
<organization>KPMG Advisory N.V.</organization>
Expand Down
2 changes: 1 addition & 1 deletion release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<properties>
<!-- A list of all the previous versions in reverse order, separated by a comma separator -->
<!-- The current version is automatically added in the release-notes-all overview. -->
<versions>2.3.4,2.3.3,2.3.2,2.3.1,2.3.0,2.2.1,2.2.0,2.1.1,2.1.0,2.0.6,2.0.5,2.0.4,2.0.3,2.0.2,2.0.1,1.0.0</versions>
<versions>2.3.5,2.3.4,2.3.3,2.3.2,2.3.1,2.3.0,2.2.1,2.2.0,2.1.1,2.1.0,2.0.6,2.0.5,2.0.4,2.0.3,2.0.2,2.0.1,1.0.0</versions>
</properties>

<dependencies>
Expand Down
24 changes: 24 additions & 0 deletions release/src/site/markdown/docs/2.3.5/release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# OC SSO Notification Service - Release Notes

| Field | Value |
|:--------------------------|:----------------------------|
| Application | OC SSO Notification Service |
| Version | 2.3.5 |
| Changes since version | 2.3.4 |
| Release date | 08-07-2025 (dd-mm-yyyy) |
| Delivery type | Full release |

## Changes

| # | Description |
|:---------|:----------------------------------------|
| ENT-5226 | Build release OC SSO Notification 2.3.5 |


## Configuration changes

N.v.t.

## Known vulnerabilities

At the time of release, this version of the application had no known vulnerabilities with a CVE of 7 or higher.