Skip to content

bump to keycloak 26.0.6 #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 30, 2024
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<name>Keycloak: Event Publisher to RabbitMQ</name>
<properties>
<keycloak.version>26.0.1</keycloak.version>
<keycloak.version>26.0.6</keycloak.version>
<jar.finalName>${project.artifactId}-${project.version}</jar.finalName>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.github.aznamier.keycloak.event.provider;

import java.io.Serial;
import java.io.Serializable;


Expand All @@ -15,6 +16,7 @@
@JsonTypeInfo(use = Id.CLASS)
public class EventAdminNotificationMqMsg extends AdminEvent implements Serializable {

@Serial
private static final long serialVersionUID = -7367949289101799624L;

public static EventAdminNotificationMqMsg create(AdminEvent adminEvent) {
Expand All @@ -28,6 +30,7 @@ public static EventAdminNotificationMqMsg create(AdminEvent adminEvent) {
msg.setResourceType(adminEvent.getResourceType());
msg.setResourceTypeAsString(adminEvent.getResourceTypeAsString());
msg.setTime(adminEvent.getTime());
msg.setDetails(adminEvent.getDetails());
return msg;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.github.aznamier.keycloak.event.provider;

import java.io.Serial;
import java.io.Serializable;


Expand All @@ -15,6 +16,7 @@
@JsonTypeInfo(use = Id.CLASS)
public class EventClientNotificationMqMsg extends Event implements Serializable {

@Serial
private static final long serialVersionUID = -2192461924304841222L;

public static EventClientNotificationMqMsg create(Event event) {
Expand Down
21 changes: 0 additions & 21 deletions utils/cli/KEYCLOAK_TO_RABBIT.cli

This file was deleted.

5 changes: 0 additions & 5 deletions utils/cli/usage.txt

This file was deleted.