[openjpa] branch master updated (a605d87 -> 641dfd9)

2022-03-10 Thread rmannibucau
This is an automated email from the ASF dual-hosted git repository.

rmannibucau pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git.


from a605d87  [OPENJPA-2713] Fixing OffsetDateTime conversion
 new 6d7ee9b  refine Jakarta relocate patterns
 new e5c29f4  Requires the full package for the pattern
 new 641dfd9  Merge pull request #93 from jeanouii/jakarta-relocate

The 5249 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 openjpa/pom.xml | 73 +++--
 1 file changed, 14 insertions(+), 59 deletions(-)


[openjpa] branch master updated: [OPENJPA-2713] Fixing OffsetDateTime conversion

2022-03-10 Thread ilgrosso
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git


The following commit(s) were added to refs/heads/master by this push:
 new a605d87  [OPENJPA-2713] Fixing OffsetDateTime conversion
a605d87 is described below

commit a605d872e5b4d929d1f4864eba3aa8aebcee35a7
Author: Francesco Chicchiriccò 
AuthorDate: Thu Mar 10 10:49:13 2022 +0100

[OPENJPA-2713] Fixing OffsetDateTime conversion
---
 openjpa-kernel/src/main/java/org/apache/openjpa/kernel/Filters.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/openjpa-kernel/src/main/java/org/apache/openjpa/kernel/Filters.java 
b/openjpa-kernel/src/main/java/org/apache/openjpa/kernel/Filters.java
index 1afa7f2..5cc92f0 100644
--- a/openjpa-kernel/src/main/java/org/apache/openjpa/kernel/Filters.java
+++ b/openjpa-kernel/src/main/java/org/apache/openjpa/kernel/Filters.java
@@ -375,7 +375,7 @@ public class Filters {
 } else if (o instanceof java.util.Date) {
 return 
((java.util.Date)o).toInstant().atZone(ZoneId.systemDefault()).toOffsetDateTime();
 } else if (o instanceof CharSequence) {
-return LocalTime.parse((CharSequence) o);
+return OffsetDateTime.parse((CharSequence) o);
 }
 }