Skip to content
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

3.x: Upgrade hibernate-validator to 7.0.5 and Jakarta EE validation-api to 3.0.2 #9070

Merged
merged 1 commit into from
Aug 2, 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
4 changes: 2 additions & 2 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<version.lib.hamcrest>1.3</version.lib.hamcrest>
<version.lib.hibernate.family>6.1</version.lib.hibernate.family>
<version.lib.hibernate>${version.lib.hibernate.family}.7.Final</version.lib.hibernate>
<version.lib.hibernate-validator>7.0.2.Final</version.lib.hibernate-validator>
<version.lib.hibernate-validator>7.0.5.Final</version.lib.hibernate-validator>
<version.lib.hikaricp>5.0.1</version.lib.hikaricp>
<version.lib.hystrix>1.5.18</version.lib.hystrix>
<version.lib.jackson>2.15.2</version.lib.jackson>
Expand All @@ -83,7 +83,7 @@
<version.lib.jakarta.jsonp-api>2.0.2</version.lib.jakarta.jsonp-api>
<version.lib.jakarta.persistence-api>3.0.0</version.lib.jakarta.persistence-api>
<version.lib.jakarta.transaction-api>2.0.0</version.lib.jakarta.transaction-api>
<version.lib.jakarta.validation-api>3.0.0</version.lib.jakarta.validation-api>
<version.lib.jakarta.validation-api>3.0.2</version.lib.jakarta.validation-api>
<version.lib.jakarta.websockets-api>2.1.1</version.lib.jakarta.websockets-api>
<!-- Check Hibernate when upgrading to ensure its supplied jaxb-runtime is compatible. -->
<version.lib.jakarta.xml.bind-api>3.0.1</version.lib.jakarta.xml.bind-api>
Expand Down
3 changes: 2 additions & 1 deletion microprofile/server/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
* Copyright (c) 2018, 2024 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -31,6 +31,7 @@
requires transitive jakarta.cdi;
requires transitive jakarta.ws.rs;
requires jakarta.interceptor.api;
requires jakarta.validation;
requires transitive jakarta.json;
requires io.helidon.jersey.media.jsonp;

Expand Down
Loading