You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@johnzon.apache.org by jl...@apache.org on 2023/04/24 18:08:09 UTC

[johnzon] branch jakartaee-10-tck updated (f72f21f9 -> 5cbc9dc9)

This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a change to branch jakartaee-10-tck
in repository https://gitbox.apache.org/repos/asf/johnzon.git


    omit f72f21f9 Fix Nillable for fields and set the local for TCK to be independent from the platform running the suite
    omit 0d7b1e70 Jakarta EE 10 TCK setup
     add 157cedb5 JOHNZON-305 : Java Modules (#99)
     add 9080e292 Implement JSON-B 3 Polymorphism (#100)
     add fcdd26e2 minor fixes in reflection usage for JSON-B polymorphism (no functional change except complete meta support)
     add f9c8cf69 Jakarta EE 10 TCK setup
     add 5cbc9dc9 Fix Nillable for fields and set the local for TCK to be independent from the platform running the suite

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f72f21f9)
            \
             N -- N -- N   refs/heads/jakartaee-10-tck (5cbc9dc9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 johnzon-core/pom.xml                               |   1 +
 johnzon-distribution/pom.xml                       |  10 +-
 johnzon-jaxrs/pom.xml                              |   9 +
 johnzon-jsonb/pom.xml                              |   1 +
 .../org/apache/johnzon/jsonb/JohnzonBuilder.java   |   9 +-
 .../org/apache/johnzon/jsonb/JsonbMappings.java    |  74 ++++++++
 .../polymorphism/JsonbPolymorphismHandler.java     | 208 +++++++++++++++++++++
 .../polymorphism/JsonbPolymorphismTypeInfo.java    |  30 ++-
 .../jsonb/polymorphism/JsonbPolymorphismTest.java  |  92 +++++++++
 .../JsonbPolymorphismValidationTest.java           | 143 ++++++++++++++
 johnzon-jsonlogic/pom.xml                          |   9 +
 johnzon-jsonschema/pom.xml                         |   9 +
 johnzon-mapper/pom.xml                             |   1 +
 .../java/org/apache/johnzon/mapper/Mapper.java     |   2 +-
 .../org/apache/johnzon/mapper/MapperBuilder.java   |  10 +-
 .../org/apache/johnzon/mapper/MapperConfig.java    |  13 +-
 .../johnzon/mapper/MappingGeneratorImpl.java       |  29 +--
 .../apache/johnzon/mapper/MappingParserImpl.java   |  14 +-
 .../java/org/apache/johnzon/mapper/Mappings.java   |  24 ++-
 .../org/apache/johnzon/mapper/access/Meta.java     |   2 +-
 .../test/java/org/superbiz/ExtendMappingTest.java  |   4 +-
 johnzon-websocket/pom.xml                          |  27 ++-
 pom.xml                                            |   9 +-
 src/site/markdown/index.md                         |   4 +-
 24 files changed, 672 insertions(+), 62 deletions(-)
 create mode 100644 johnzon-jsonb/src/main/java/org/apache/johnzon/jsonb/JsonbMappings.java
 create mode 100644 johnzon-jsonb/src/main/java/org/apache/johnzon/jsonb/polymorphism/JsonbPolymorphismHandler.java
 copy johnzon-jaxrs/src/main/java/org/apache/johnzon/jaxrs/IgnorableTypes.java => johnzon-jsonb/src/main/java/org/apache/johnzon/jsonb/polymorphism/JsonbPolymorphismTypeInfo.java (55%)
 create mode 100644 johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/polymorphism/JsonbPolymorphismTest.java
 create mode 100644 johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/polymorphism/JsonbPolymorphismValidationTest.java