Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d697e6e
migrate to JDK 11 and javax -> jakarta initial commit
maximthomas Jan 14, 2025
36d8eec
Update OpenAM
maximthomas Jun 9, 2025
0cf5903
Merge branch 'master' into update-jdk-11
maximthomas Jul 31, 2025
f3fecec
Update SECURITY.md
maximthomas Jul 31, 2025
21bdf54
Remove deprecated maven profiles
maximthomas Jul 31, 2025
590b605
Update OpenAM to 16.0.0
maximthomas Jul 31, 2025
c7efec1
Set project version to 6.0.0
maximthomas Jul 31, 2025
aed700f
Set Java 11 in GitHub actions
maximthomas Jul 31, 2025
b7cd729
Update SECURITY.md
maximthomas Aug 4, 2025
b901be8
update logback to 1.3.15
maximthomas Aug 4, 2025
945c485
Set maven cargo test with Tomcat 10.1, set Tomcat 11.x for JDK 17 and…
maximthomas Aug 4, 2025
7f9c8fb
Drop Docker Alpine images support https://github.com/docker-library/t…
maximthomas Aug 4, 2025
a4be0bc
migrate request attributes to jakarta
maximthomas Aug 4, 2025
31c163d
update README.md
maximthomas Aug 4, 2025
efc0751
Use local artifacts for Docker build in the Build workflow
maximthomas Aug 7, 2025
382b48a
Add converted to Jakarta missing libraries
maximthomas Aug 9, 2025
165d95e
exclude JAX-RPC Jakarta library from publishing
maximthomas Aug 9, 2025
acce1fd
fix docker build
maximthomas Aug 9, 2025
4596687
fix docker image build
maximthomas Aug 9, 2025
0c7bf9b
Merge branch 'master' into update-jdk-11
vharseko Aug 9, 2025
7776971
Update Tomcat to 11 in Docker
maximthomas Aug 10, 2025
6547f6b
Fix failed Docker test
maximthomas Aug 10, 2025
16abc03
documentation update
maximthomas Aug 11, 2025
4209ee7
Update SECURITY.md
vharseko Aug 12, 2025
9c05352
Merge branch 'master' into update-jdk-11
vharseko Sep 17, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [ '8', '11', '17', '21', '24' ]
java: [ '11', '17', '21', '24' ]
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Java for publishing to Maven Central Repository OSS
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'
server-id: ossrh
server-username: MAVEN_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Java for publishing to Maven Central Repository OSS
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'
server-id: ossrh
server-username: MAVEN_USERNAME
Expand Down
15 changes: 6 additions & 9 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@
Use this section to tell people about which versions of your project are
currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 5.1.x | :white_check_mark: |
| 5.0.x | :x: |
| Version | Java Versions Support | EE | Supported |
|---------|-----------------------|------------|--------------------|
| 6.x | 11 and later | Jakarta EE | :white_check_mark: |
| 5.1.x | 8 and later | Java EE | :white_check_mark: |
| 5.0.x | 8 and later | Java EE | :x: |

## Reporting a Vulnerability

Use this section to tell people how to report a vulnerability.

Tell them where to go, how often they can expect to get an update on a
reported vulnerability, what to expect if the vulnerability is accepted or
declined, etc.
Please create issue https://github.com/OpenIdentityPlatform/OpenIG/issues/new?template=Bug_report.md
2 changes: 1 addition & 1 deletion contrib-http-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>openig-project</artifactId>
<groupId>org.openidentityplatform.openig</groupId>
<version>5.4.1-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
16 changes: 11 additions & 5 deletions openig-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@

Copyright 2010-2011 ApexIdentity Inc.
Portions Copyright 2011-2016 ForgeRock AS.
Portions copyright 2025 3A Systems LLC.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openidentityplatform.openig</groupId>
<artifactId>openig-project</artifactId>
<version>5.4.1-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</parent>
<artifactId>openig-core</artifactId>
<name>OpenIG Core library</name>
Expand Down Expand Up @@ -120,15 +121,20 @@
<!-- <version>2.0.1</version> -->
<!-- </dependency> -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<groupId>jakarta.websocket</groupId>
<artifactId>jakarta.websocket-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.websocket</groupId>
<artifactId>jakarta.websocket-client-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openidentityplatform.commons.http-framework</groupId>
<artifactId>servlet</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
/*
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2022-2025 3A Systems LLC.
*/

package org.openidentityplatform.openig.websocket;

import java.util.List;

import javax.websocket.Extension;
import javax.websocket.HandshakeResponse;
import javax.websocket.server.HandshakeRequest;
import javax.websocket.server.ServerEndpointConfig;
import jakarta.websocket.Extension;
import jakarta.websocket.HandshakeResponse;
import jakarta.websocket.server.HandshakeRequest;
import jakarta.websocket.server.ServerEndpointConfig;

public class Configurator extends ServerEndpointConfig.Configurator {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,35 @@
/*
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2022-2025 3A Systems LLC.
*/

package org.openidentityplatform.openig.websocket;


import java.io.IOException;
import java.security.Principal;
import java.util.Enumeration;

import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.annotation.WebFilter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
import javax.servlet.http.HttpServletResponse;
import jakarta.servlet.FilterChain;
import jakarta.servlet.FilterConfig;
import jakarta.servlet.ServletException;
import jakarta.servlet.ServletRequest;
import jakarta.servlet.ServletResponse;
import jakarta.servlet.annotation.WebFilter;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletRequestWrapper;
import jakarta.servlet.http.HttpServletResponse;

import org.forgerock.http.protocol.Request;
import org.forgerock.http.protocol.Status;
Expand All @@ -28,7 +44,7 @@
import org.slf4j.LoggerFactory;

@WebFilter(urlPatterns = "/*")
public class Filter implements javax.servlet.Filter {
public class Filter implements jakarta.servlet.Filter {
private static final Logger logger = LoggerFactory.getLogger(Filter.class);

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,38 @@
/*
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2022-2025 3A Systems LLC.
*/

package org.openidentityplatform.openig.websocket;

import jakarta.websocket.ClientEndpointConfig;
import jakarta.websocket.CloseReason;
import jakarta.websocket.ContainerProvider;
import jakarta.websocket.Endpoint;
import jakarta.websocket.EndpointConfig;
import jakarta.websocket.MessageHandler;
import jakarta.websocket.OnClose;
import jakarta.websocket.OnError;
import jakarta.websocket.OnMessage;
import jakarta.websocket.OnOpen;
import jakarta.websocket.Session;
import org.forgerock.http.protocol.Header;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.websocket.*;
import javax.websocket.ClientEndpointConfig.Builder;
import javax.websocket.server.ServerEndpoint;
import jakarta.websocket.ClientEndpointConfig.Builder;
import jakarta.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.List;
Expand Down Expand Up @@ -58,7 +84,7 @@ public void beforeRequest(Map<String, List<String>> headers) {
}
});

this.session_upstream=ContainerProvider.getWebSocketContainer().connectToServer(
this.session_upstream = ContainerProvider.getWebSocketContainer().connectToServer(
new Endpoint() {

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
/*
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2022-2025 3A Systems LLC.
*/

package org.openidentityplatform.openig.websocket;

import javax.websocket.server.ServerEndpoint;
import jakarta.websocket.server.ServerEndpoint;

@ServerEndpoint(value = "/{level1}/{level2}",configurator = Configurator.class)
public class ServerEndPoint2 extends ServerEndPoint {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
/*
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2022-2025 3A Systems LLC.
*/

package org.openidentityplatform.openig.websocket;

import javax.websocket.server.ServerEndpoint;
import jakarta.websocket.server.ServerEndpoint;

@ServerEndpoint(value = "/{level1}/{level2}/{level3}",configurator = Configurator.class)
public class ServerEndPoint3 extends ServerEndPoint {
Expand Down
2 changes: 1 addition & 1 deletion openig-doc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>openig-project</artifactId>
<groupId>org.openidentityplatform.openig</groupId>
<version>5.4.1-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</parent>

<artifactId>openig-doc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openig-docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.openidentityplatform.openig</groupId>
<artifactId>openig-project</artifactId>
<version>5.4.1-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</parent>

<profiles>
Expand Down
2 changes: 1 addition & 1 deletion openig-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>openig-project</artifactId>
<groupId>org.openidentityplatform.openig</groupId>
<version>5.4.1-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openig-openam/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>openig-project</artifactId>
<groupId>org.openidentityplatform.openig</groupId>
<version>5.4.1-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
7 changes: 4 additions & 3 deletions openig-saml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@

Copyright 2010-2011 ApexIdentity Inc.
Portions Copyright 2011-2016 ForgeRock AS.
Portions copyright 2025 3A Systems LLC.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openidentityplatform.openig</groupId>
<artifactId>openig-project</artifactId>
<version>5.4.1-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</parent>
<artifactId>openig-saml</artifactId>
<name>OpenIG SAML Support</name>
Expand All @@ -29,8 +30,8 @@
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2014-2015 ForgeRock AS.
* Portions copyright 2025 3A Systems LLC.
*/

package org.forgerock.openig.handler.saml;
Expand All @@ -22,8 +23,8 @@
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletRequestWrapper;

import org.forgerock.http.protocol.Request;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2016 ForgeRock AS.
* Portions copyright 2025 3A Systems LLC.
*/

package org.forgerock.openig.handler.saml;
Expand All @@ -21,8 +22,8 @@
import java.io.OutputStreamWriter;
import java.io.PrintWriter;

import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpServletResponseWrapper;
import jakarta.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpServletResponseWrapper;

/**
* Adapts a given {@link HttpServletResponse} to override {@link #getWriter()}.
Expand Down
Loading
Loading