Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package jackson-parent for openSUSE:Factory checked in at 2026-06-25 17:22:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jackson-parent (Old) and /work/SRC/openSUSE:Factory/.jackson-parent.new.2088 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jackson-parent" Thu Jun 25 17:22:15 2026 rev:7 rq:1361780 version:2.18.4 Changes: -------- --- /work/SRC/openSUSE:Factory/jackson-parent/jackson-parent.changes 2024-05-21 18:36:06.029634807 +0200 +++ /work/SRC/openSUSE:Factory/.jackson-parent.new.2088/jackson-parent.changes 2026-06-25 17:22:47.341072620 +0200 @@ -1,0 +2,18 @@ +Thu Jun 25 13:34:19 UTC 2026 - Fridrich Strba <[email protected]> + +- Update to 2.18.4 + * Changes of 2.18.4 + + Update to latest 'oss-parent' (69) + * Changes of 2.18.3 + + Update to latest 'oss-parent' (68) + + Switch to publishing via Sonatype Central Portal repo + * Changes of 2.18.2 + + Update to latest 'oss-parent' (66); future-proof for Sonatype + Central Portal + * Changes of 2.18.1 + + #15: Add override to downgrade 'moditect-maven-plugin' from + 1.2.2 to 1.1.0 to work around Eclipse issues + * Changes of 2.18 + + Update to oss-parent 61 (plugin version updates) + +------------------------------------------------------------------- Old: ---- jackson-parent-2.17.tar.gz New: ---- _scmsync.obsinfo build.specials.obscpio jackson-parent-2.18.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jackson-parent.spec ++++++ --- /var/tmp/diff_new_pack.pIjkZn/_old 2026-06-25 17:22:49.229138231 +0200 +++ /var/tmp/diff_new_pack.pIjkZn/_new 2026-06-25 17:22:49.245138787 +0200 @@ -1,7 +1,7 @@ # # spec file for package jackson-parent # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: jackson-parent -Version: 2.17 +Version: 2.18.4 Release: 0 Summary: Parent pom for all Jackson components License: Apache-2.0 ++++++ _scmsync.obsinfo ++++++ mtime: 1782394614 commit: 7c08a87f7d509ea7b108e5f80a01d9709402c51c7fe7a0c2e35a9dfe595bdfe8 url: https://src.opensuse.org/java-packages/jackson-parent revision: 7c08a87f7d509ea7b108e5f80a01d9709402c51c7fe7a0c2e35a9dfe595bdfe8 projectscmsync: https://src.opensuse.org/java-packages/_ObsPrj ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-06-25 15:36:54.000000000 +0200 @@ -0,0 +1 @@ +.osc ++++++ jackson-parent-2.17.tar.gz -> jackson-parent-2.18.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jackson-parent-jackson-parent-2.17/.github/workflows/main.yml new/jackson-parent-jackson-parent-2.18.4/.github/workflows/main.yml --- old/jackson-parent-jackson-parent-2.17/.github/workflows/main.yml 2024-03-12 04:33:55.000000000 +0100 +++ new/jackson-parent-jackson-parent-2.18.4/.github/workflows/main.yml 2025-10-24 03:41:08.000000000 +0200 @@ -1,41 +1,36 @@ name: Build and Deploy Snapshot on: push: - branches: - - master - - "3.0" - - "2.17" paths-ignore: - "README.md" jobs: build: - runs-on: ${{ matrix.os }} + runs-on: 'ubuntu-latest' strategy: fail-fast: false matrix: java_version: ['8', '11', '17', '21'] - os: ['ubuntu-20.04'] env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - - uses: actions/[email protected] + - uses: actions/[email protected] - name: Set up JDK - uses: actions/setup-java@v3 + uses: actions/[email protected] with: distribution: 'temurin' java-version: ${{ matrix.java_version }} - server-id: sonatype-nexus-snapshots + server-id: central-snapshots server-username: CI_DEPLOY_USERNAME server-password: CI_DEPLOY_PASSWORD - name: Build run: ./mvnw -V -B -ff -ntp verify - name: Extract project Maven version id: projectVersion - run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.3.0:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT + run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.5.1:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT - name: Deploy snapshot - if: github.event_name != 'pull_request' && matrix.java_version == '8' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') + if: ${{ github.event_name != 'pull_request' && matrix.java_version == '8' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }} env: - CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }} - CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }} + CI_DEPLOY_USERNAME: ${{ secrets.CENTRAL_DEPLOY_USERNAME }} + CI_DEPLOY_PASSWORD: ${{ secrets.CENTRAL_DEPLOY_PASSWORD }} # MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} run: ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jackson-parent-jackson-parent-2.17/.mvn/wrapper/maven-wrapper.properties new/jackson-parent-jackson-parent-2.18.4/.mvn/wrapper/maven-wrapper.properties --- old/jackson-parent-jackson-parent-2.17/.mvn/wrapper/maven-wrapper.properties 2024-03-12 04:33:55.000000000 +0100 +++ new/jackson-parent-jackson-parent-2.18.4/.mvn/wrapper/maven-wrapper.properties 2025-10-24 03:41:08.000000000 +0200 @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.3/apache-maven-3.9.3-bin.zip -wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.1/maven-wrapper-3.3.1.jar diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jackson-parent-jackson-parent-2.17/pom.xml new/jackson-parent-jackson-parent-2.18.4/pom.xml --- old/jackson-parent-jackson-parent-2.17/pom.xml 2024-03-12 04:33:55.000000000 +0100 +++ new/jackson-parent-jackson-parent-2.18.4/pom.xml 2025-10-24 03:41:08.000000000 +0200 @@ -5,12 +5,12 @@ <parent> <groupId>com.fasterxml</groupId> <artifactId>oss-parent</artifactId> - <version>58</version> + <version>69</version> </parent> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-parent</artifactId> - <version>2.17</version> + <version>2.18.4</version> <packaging>pom</packaging> <name>Jackson parent poms</name> @@ -40,7 +40,7 @@ <connection>scm:git:[email protected]:FasterXML/jackson-parent.git</connection> <developerConnection>scm:git:[email protected]:FasterXML/jackson-parent.git</developerConnection> <url>http://github.com/FasterXML/jackson-parent</url> - <tag>jackson-parent-2.17</tag> + <tag>jackson-parent-2.18.4</tag> </scm> <properties> @@ -56,6 +56,10 @@ <javac.debuglevel>lines,source,vars</javac.debuglevel> + <!-- 12-Oct-2024, tatu: [jackson-parent#15] Downgrade Moditect plugin for 2.18.1+ + --> + <version.plugin.moditect>1.1.0</version.plugin.moditect> + <!-- | For automatically generating PackageVersion.java. Your child pom.xml must define | packageVersion.dir and packageVersion.package, and must set the phase of the @@ -64,7 +68,7 @@ <packageVersion.template.input>${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in</packageVersion.template.input> <packageVersion.template.output>${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java</packageVersion.template.output> - <project.build.outputTimestamp>2024-03-12T03:33:51Z</project.build.outputTimestamp> + <project.build.outputTimestamp>2025-10-24T01:41:04Z</project.build.outputTimestamp> </properties> <!-- 17-Sep-2021, tatu: Used to have junit prior to Jackson 2.13, removed due to @@ -74,6 +78,10 @@ <!-- Alas, need to include snapshot reference since otherwise can not find snapshot of parent... --> <repositories> + <!-- 26-May-2025, tatu: No longer need after switch to Sonatype Central Portal + remove soon: + --> + <!-- <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> @@ -81,6 +89,15 @@ <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> + --> + <!-- 26-May-2025, tatu: Using Sonatype Central Portal, will need this --> + <repository> + <id>central-snapshots</id> + <name>Sonatype Central Portal (snapshots)</name> + <url>https://central.sonatype.com/repository/maven-snapshots</url> + <releases><enabled>false</enabled></releases> + <snapshots><enabled>true</enabled></snapshots> + </repository> </repositories> <build> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jackson-parent-jackson-parent-2.17/release-notes/VERSION new/jackson-parent-jackson-parent-2.18.4/release-notes/VERSION --- old/jackson-parent-jackson-parent-2.17/release-notes/VERSION 2024-03-12 04:33:55.000000000 +0100 +++ new/jackson-parent-jackson-parent-2.18.4/release-notes/VERSION 2025-10-24 03:41:08.000000000 +0200 @@ -6,7 +6,29 @@ === Releases === ------------------------------------------------------------------------ -2.17 (12-Mar-2023) +2.18.4 (not yet released) + +- Update to latest `oss-parent` (69) + +2.18.3 (06-May-2025) + +- Update to latest `oss-parent` (68) +- Switch to publishing via Sonatype Central Portal repo + +2.18.2 (13-May-2025) + +- Update to latest `oss-parent` (66); future-proof for Sonatype Central Portal + +2.18.1 (28-Oct-2024) + +#15: Add override to downgrade `moditect-maven-plugin` from 1.2.2 to 1.1.0 + to work around Eclipse issues + +2.18 (26-Sep-2024) + +- Update to oss-parent 61 (plugin version updates) + +2.17 (12-Mar-2024) - Update to oss-parent 58 (plugin version updates)
