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 2023-08-23 14:57:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jackson-parent (Old) and /work/SRC/openSUSE:Factory/.jackson-parent.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jackson-parent" Wed Aug 23 14:57:05 2023 rev:4 rq:1105097 version:2.15 Changes: -------- --- /work/SRC/openSUSE:Factory/jackson-parent/jackson-parent.changes 2021-10-21 23:55:29.824024583 +0200 +++ /work/SRC/openSUSE:Factory/.jackson-parent.new.1766/jackson-parent.changes 2023-08-23 14:57:46.498007391 +0200 @@ -1,0 +2,11 @@ +Mon Aug 21 13:25:44 UTC 2023 - Fridrich Strba <[email protected]> + +- Upgrade to 2.15 + * 2.15 (23-Apr-2023) + + Upgrade to oss-parent 50 (many plugin version updates) + + Remove settings for 'org.eclipse.m2e:lifecycle-mapping' + * 2.14 (05-Nov-2022) + + Upgrade to oss-parent 48 (Reproducible Builds, many plugin + version updates) + +------------------------------------------------------------------- Old: ---- jackson-parent-2.13.tar.gz New: ---- jackson-parent-2.15.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jackson-parent.spec ++++++ --- /var/tmp/diff_new_pack.ABIvEy/_old 2023-08-23 14:57:48.006010087 +0200 +++ /var/tmp/diff_new_pack.ABIvEy/_new 2023-08-23 14:57:48.014010101 +0200 @@ -1,7 +1,7 @@ # # spec file for package jackson-parent # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # 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.13 +Version: 2.15 Release: 0 Summary: Parent pom for all Jackson components License: Apache-2.0 ++++++ jackson-parent-2.13.tar.gz -> jackson-parent-2.15.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jackson-parent-jackson-parent-2.13/.github/workflows/main.yml new/jackson-parent-jackson-parent-2.15/.github/workflows/main.yml --- old/jackson-parent-jackson-parent-2.13/.github/workflows/main.yml 2021-09-30 21:28:38.000000000 +0200 +++ new/jackson-parent-jackson-parent-2.15/.github/workflows/main.yml 2023-04-23 22:09:39.000000000 +0200 @@ -4,7 +4,7 @@ branches: - master - "3.0" - - "2.13" + - "2.15" paths-ignore: - "README.md" jobs: @@ -13,32 +13,29 @@ strategy: fail-fast: false matrix: - java_version: ['8', '14'] + java_version: ['8', '11'] os: ['ubuntu-20.04'] env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - - uses: actions/checkout@v2 + - uses: actions/[email protected] - name: Set up JDK - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: - distribution: "adopt" + distribution: 'temurin' java-version: ${{ matrix.java_version }} server-id: sonatype-nexus-snapshots server-username: CI_DEPLOY_USERNAME server-password: CI_DEPLOY_PASSWORD - - uses: actions/[email protected] - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - 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 - name: Deploy snapshot - if: github.event_name != 'pull_request' && matrix.java_version == '8' + 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 }} # MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} - run: ./mvnw -V -B -ff -DskipTests -ntp source:jar deploy + 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.13/README.md new/jackson-parent-jackson-parent-2.15/README.md --- old/jackson-parent-jackson-parent-2.13/README.md 2021-09-30 21:28:38.000000000 +0200 +++ new/jackson-parent-jackson-parent-2.15/README.md 2023-04-23 22:09:39.000000000 +0200 @@ -1,4 +1,10 @@ -jackson-parent -============== +# jackson-parent + +This project is the ultimate parent pom for Jackson 2.x components: for most indirectly +via [jackson-base](../../jackson-bom). + +It defines some defaults but much of this has been moved to above-mentioned `jackson-base` +(and `jackson-bom`) over 2.x release schedule; this project will not be used at all +with Jackson 3.x. + -Project for parent pom for all Jackson components diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jackson-parent-jackson-parent-2.13/pom.xml new/jackson-parent-jackson-parent-2.15/pom.xml --- old/jackson-parent-jackson-parent-2.13/pom.xml 2021-09-30 21:28:38.000000000 +0200 +++ new/jackson-parent-jackson-parent-2.15/pom.xml 2023-04-23 22:09:39.000000000 +0200 @@ -5,12 +5,12 @@ <parent> <groupId>com.fasterxml</groupId> <artifactId>oss-parent</artifactId> - <version>43</version> + <version>50</version> </parent> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-parent</artifactId> - <version>2.13</version> + <version>2.15</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.13</tag> + <tag>jackson-parent-2.15</tag> </scm> <properties> @@ -51,6 +51,9 @@ exception fo `jackson-core`/`jackson-annotations` as Java 6 --> <javac.src.version>1.8</javac.src.version> <javac.target.version>1.8</javac.target.version> + <maven.compiler.source>${javac.src.version}</maven.compiler.source> + <maven.compiler.target>${javac.target.version}</maven.compiler.target> + <javac.debuglevel>lines,source,vars</javac.debuglevel> <!-- @@ -60,6 +63,8 @@ --> <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>2023-04-23T20:09:36Z</project.build.outputTimestamp> </properties> <!-- 17-Sep-2021, tatu: Used to have junit prior to Jackson 2.13, removed due to @@ -157,33 +162,6 @@ </replacements> </configuration> </plugin> - <plugin> - <!-- Work around Eclipse incompatibility (http://code.google.com/p/maven-replacer-plugin/issues/detail?id=66) --> - <groupId>org.eclipse.m2e</groupId> - <artifactId>lifecycle-mapping</artifactId> - <version>1.0.0</version> - <configuration> - <lifecycleMappingMetadata> - <pluginExecutions> - <pluginExecution> - <pluginExecutionFilter> - <groupId>com.google.code.maven-replacer-plugin</groupId> - <artifactId>replacer</artifactId> - <versionRange>[${version.plugin.replacer},)</versionRange> - <goals> - <goal>replace</goal> - </goals> - </pluginExecutionFilter> - <action> - <execute> - <runOnIncremental>false</runOnIncremental> - </execute> - </action> - </pluginExecution> - </pluginExecutions> - </lifecycleMappingMetadata> - </configuration> - </plugin> </plugins> </pluginManagement> </build> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jackson-parent-jackson-parent-2.13/release-notes/VERSION new/jackson-parent-jackson-parent-2.15/release-notes/VERSION --- old/jackson-parent-jackson-parent-2.13/release-notes/VERSION 2021-09-30 21:28:38.000000000 +0200 +++ new/jackson-parent-jackson-parent-2.15/release-notes/VERSION 2023-04-23 22:09:39.000000000 +0200 @@ -6,22 +6,31 @@ === Releases === ------------------------------------------------------------------------ -2.13.0 (30-Sep-2021) +2.15 (23-Apr-2023) + +- Upgrade to oss-parent 50 (many plugin version updates) +- Remove settings for `org.eclipse.m2e:lifecycle-mapping` + +2.14 (05-Nov-2022) + +- Upgrade to oss-parent 48 (Reproducible Builds, many plugin version updates) + +2.13 (30-Sep-2021) - JDK baseline now JDK 8 - Upgrade to oss-parent 43 (jacoco, javadoc plugin versions) - Remove managed junit version (due to [jackson-bom#43]), promoted higher up on parent pom stack (to "jackson-base") -2.12.0 (29-Nov-2020) +2.12 (29-Nov-2020) - Upgrade to oss-parent 41 (plug-in versions left, not much more) -2.11.0 (20-Mar-2020) +2.11 (20-Mar-2020) - Remove `jackson-annotations` baseline dependency, version -2.10.0 (26-Sep-2019) +2.10 (26-Sep-2019) - Upgrade to oss-parent 38
