Skip to content
Draft
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
4 changes: 2 additions & 2 deletions providers/jsonlogic-eval-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

<dependencies>
<dependency>
<groupId>io.github.jamsesso</groupId>
<groupId>io.github.gzsombor</groupId>
<artifactId>json-logic-java</artifactId>
<version>1.1.0</version>
<version>1.1.2</version>
Comment on lines +35 to +37
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

Switching the dependency to io.github.gzsombor:json-logic-java version 1.1.2 is a breaking change. In this fork, the package name has been changed from io.github.jamsesso.jsonlogic to io.github.gzsombor.jsonlogic. The current implementation in JsonlogicProvider.java and JsonlogicProviderTest.java still uses the old package imports, which will cause compilation errors. Please update the imports and type references in all Java source files to match the new package name.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not true, the new lib still uses the old package name

</dependency>
<dependency>
<groupId>org.json</groupId>
Expand Down
Loading