Merge of the release tag 2.41 into the 3.0 branch
diff --git a/docs/src/main/docbook/migration.xml b/docs/src/main/docbook/migration.xml index 3b68582..d9adba0 100644 --- a/docs/src/main/docbook/migration.xml +++ b/docs/src/main/docbook/migration.xml
@@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- - Copyright (c) 2012, 2021 Oracle and/or its affiliates. All rights reserved. + Copyright (c) 2012, 2023 Oracle and/or its affiliates. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0, which is available at @@ -28,6 +28,18 @@ xml:id="migration"> <title>Migration Guide</title> + <section xml:id="mig-3.0.11"> + <title>Migrating from Jersey 3.0.11 to 3.0.12</title> + <section xml:id="mig-3.0.11-jackson-changes"> + <title>Changes in Jackson</title> + <para> + Jersey 3.0.12 starts to support Jackson 2.15 which comes with default limitations for the length of parsed text, + numbers, and nesting depth. Jersey keeps the Jackson default value, but it allows to override the maximum + length of parsed text using the &jersey.message.MessageProperties.JSON_MAX_STRING_LENGTH; property if needed. + </para> + </section> + </section> + <section xml:id="mig-3.0.0"> <title>Migrating from Jersey 2.32+ to 3.0.x.</title> <section xml:id="mig-3.0.0-breaking-changes">
diff --git a/pom.xml b/pom.xml index 627f3ed..43c1cb8 100644 --- a/pom.xml +++ b/pom.xml
@@ -23,7 +23,7 @@ <parent> <groupId>org.eclipse.ee4j</groupId> <artifactId>project</artifactId> - <version>1.0.8</version> + <version>1.0.9</version> </parent> <groupId>org.glassfish.jersey</groupId> @@ -2378,8 +2378,8 @@ <jetty.plugin.version>11.0.15</jetty.plugin.version> <jetty.servlet.api.25.version>6.1.14</jetty.servlet.api.25.version> <jsonb.api.version>2.0.0</jsonb.api.version> - <jsonp.ri.version>1.0.3</jsonp.ri.version> - <jsonp.jaxrs.version>1.0.3</jsonp.jaxrs.version> + <jsonp.ri.version>1.0.5</jsonp.ri.version> + <jsonp.jaxrs.version>1.0.5</jsonp.jaxrs.version> <moxy.version>3.0.3</moxy.version> <yasson.version>2.0.4</yasson.version> <!-- END of Jakartified -->