Skip to content

Commit

Permalink
Merge pull request #2 from OpenConext/develop
Browse files Browse the repository at this point in the history
Prepare release 2.0.2
  • Loading branch information
tbeekman authored Apr 1, 2022
2 parents 835a2a0 + b92b371 commit 92fcb4e
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 6 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dependency-check-maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Scheduled Dependency Check Maven

on:
schedule:
- cron: "0 10 * * 6"

jobs:

dependency-check-maven:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
ref: develop
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Execute OWASP dependency check
run: mvn clean install -P security-updates -DskipTests=true -B
2 changes: 1 addition & 1 deletion oc-sso-notificatie/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>oc-sso-notificatie-parent</artifactId>
<groupId>nl.kennisnet.services</groupId>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>nl.kennisnet.services</groupId>
<artifactId>oc-sso-notificatie-parent</artifactId>
<packaging>pom</packaging>
<version>2.0.1</version>
<version>2.0.2</version>
<modules>
<module>oc-sso-notificatie</module>
<module>release</module>
Expand All @@ -35,7 +35,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<dependency-check-maven.version>6.3.2</dependency-check-maven.version>
<dependency-check-maven.version>7.0.4</dependency-check-maven.version>
<guava.version>31.0.1-jre</guava.version>
<javax.bind>2.3.1</javax.bind>
<maven.deploy.skip>true</maven.deploy.skip>
Expand All @@ -50,7 +50,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.5</version>
<version>2.6.6</version>
</parent>

<build>
Expand Down
4 changes: 2 additions & 2 deletions release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>oc-sso-notificatie-parent</artifactId>
<groupId>nl.kennisnet.services</groupId>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -31,7 +31,7 @@
<properties>
<!-- An list of all the previous versions in reverse order, separated by a , -->
<!-- The current version is automatically added in the release-notes-all overview. -->
<versions>2.0.1,1.0.0</versions>
<versions>2.0.2,2.0.1,1.0.0</versions>
<maven.deploy.skip>false</maven.deploy.skip>
<maven.project.info.version>2.8</maven.project.info.version>
<maven.site.version>3.8.2</maven.site.version>
Expand Down
18 changes: 18 additions & 0 deletions release/src/site/markdown/docs/2.0.2/release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# OC SSO Notification Service - Release Notes

| Field | Value |
|:------------------------- |:--------------------------- |
| Application | OC SSO Notification Service |
| Version | 2.0.2 |
| Changes since version | 2.0.1 |
| Release date | 01-04-2022 (dd-mm-yyyy) |
| Delivery type | Full release |

## Changes

| # | Description |
|:---------|:---------------------------------------------------------------------------------------------|
| ENT-4226 | Update OC SSO notification service in relation to Spring4Shell issue and build release 2.0.2 |


## Configuration changes

0 comments on commit 92fcb4e

Please sign in to comment.