My +1 Gary
On Fri, Aug 15, 2025, 06:51 Gary Gregory <garydgreg...@gmail.com> wrote: > We have fixed a few bugs and added enhancements since Apache Commons > Parent 85 was released, so I would like to release Apache Commons > Parent 86. > > Apache Commons Parent 86 RC1 is available for review here: > https://dist.apache.org/repos/dist/dev/commons/parent/86-RC1 (svn > revision 78681) > > The Git tag commons-parent-86-RC1 commit for this RC is > f79ddf9de4784c95bd117833527ce25032da6d3e which you can browse here: > > https://gitbox.apache.org/repos/asf?p=commons-parent.git;a=commit;h=f79ddf9de4784c95bd117833527ce25032da6d3e > You may checkout this tag using: > git clone https://gitbox.apache.org/repos/asf/commons-parent.git > --branch <https://gitbox.apache.org/repos/asf/commons-parent.git--branch> > commons-parent-86-RC1 commons-parent-86-RC1 > > Maven artifacts are here: > > https://repository.apache.org/content/repositories/orgapachecommons-1857/org/apache/commons/commons-parent/86/ > > These are the artifacts and their hashes: > > #Release SHA-512s > #Fri Aug 15 10:47:13 UTC 2025 > > commons-parent-86-bom.json=5ffd0ceb7bd9e65a6e67472fbc58c90b9072353a3786775581b41d5e916d84c7d5137a4744adb0a304eb428a26c03a385f1917e254421474839cd50f578ae80e > > commons-parent-86-bom.xml=3a3289ea4dd112ac3abe8875df630b242038f06ce7a0f7d04ae45d91da189abb7e16b03c3f9007987b8140eeffc3d3cd175861dca33a667d52719f7302e5f81a > > commons-parent-86-site.xml=07c3de38227fd28664777636162d583dc0cb5061c8133f827023ca3188b641a53ee2aed1192a8842f76071b2db8c5aeef7d4c58457c8688c89d577ae23d51a86 > > commons-parent-86-src.tar.gz=02920ffbd5397a7499c9a4074229282f8f789d36768a637e812017ceab7d512601a744b8834bc1586555275eaca7fe613c8398db5a9a496ac4f2a8db5f616168 > > commons-parent-86-src.zip=e56773bfc1096f90c21679f966c2c127870758f651a6cc2e8b15224418b1c07c14055a76d30970fab9820dbeece1df2cd2752165f06ee176103548755730bc35 > > org.apache.commons_commons-parent-86.spdx.json=6cd6f912f02200afcb0c816dad81d847ad91efec1be848c87127cbcd65af7f627367fbd2b994cb61e3f34d2e98ef021600422be0052b60bd9e020f8fbd3a6e71 > > > I have tested this with 'mvn' and 'mvn -e -V -P release -P test-deploy > clean package site deploy' using: > > openjdk version "21.0.8" 2025-07-15 > OpenJDK Runtime Environment Homebrew (build 21.0.8) > OpenJDK 64-Bit Server VM Homebrew (build 21.0.8, mixed mode, sharing) > > Apache Maven 3.9.11 (3e54c93a704957b63ee3494413a2b544fd3d825b) > Maven home: /opt/homebrew/Cellar/maven/3.9.11/libexec > Java version: 21.0.8, vendor: Homebrew, runtime: > /opt/homebrew/Cellar/openjdk@21/21.0.8/libexec/openjdk.jdk/Contents/Home > Default locale: en_US, platform encoding: UTF-8 > OS name: "mac os x", version: "15.6", arch: "aarch64", family: "mac" > > Darwin Garys-MacBook-Pro.local 24.6.0 Darwin Kernel Version 24.6.0: > Mon Jul 14 11:30:40 PDT 2025; > root:xnu-11417.140.69~1/RELEASE_ARM64_T6041 arm64 > > Docker version 28.3.0, build 38b7060 > > Details of changes since 85 are in the release notes: > > https://dist.apache.org/repos/dist/dev/commons/parent/86-RC1/RELEASE-NOTES.txt > > https://dist.apache.org/repos/dist/dev/commons/parent/86-RC1/site/changes.html > > Site: > > https://dist.apache.org/repos/dist/dev/commons/parent/86-RC1/site/index.html > (note some *relative* links are broken and the 86 directories are > not yet created - these will be OK once the site is deployed.) > > RAT Report: > > https://dist.apache.org/repos/dist/dev/commons/parent/86-RC1/site/rat-report.html > > KEYS: > https://downloads.apache.org/commons/KEYS > > Please review the release candidate and vote. > This vote will close no sooner than 72 hours from now. > > [ ] +1 Release these artifacts > [ ] +0 OK, but... > [ ] -0 OK, but really should fix... > [ ] -1 I oppose this release because... > > Thank you, > > Gary Gregory, > Release Manager (using key 86fdc7e2a11262cb) > > The following is intended as a helper and refresher for reviewers. > > Validating a release candidate > ============================== > > These guidelines are NOT complete. > > Requirements: Git, Java, and Maven. > > You can validate a release from a release candidate (RC) tag as follows. > > 1a) Download and decompress the source archive from: > > https://dist.apache.org/repos/dist/dev/commons/parent/86-RC1/source > > 1b) Check out the RC tag from git (optional) > > This is optional, as a reviewer must check source distributions as a > minimum. > > git clone https://gitbox.apache.org/repos/asf/commons-parent.git > --branch commons-parent-86-RC1 commons-parent-86-RC1 > cd commons-parent-86-RC1 > > 2) Checking the build > > All components should include a default Maven goal, such that you can > run 'mvn' from the command line by itself. > > 2) Check Apache licenses > > This step is not required if the site includes a RAT report page which > you then must check. > This check should be included in the default Maven build, but you can > check it with: > > mvn apache-rat:check > > 3) Check binary compatibility > > This step is not required if the site includes a JApiCmp report page > which you then must check. > This check should be included in the default Maven build, but you can > check it with: > > mvn verify -DskipTests -P japicmp japicmp:cmp > > 4) Build the package > > This check should be included in the default Maven build, but you can > check it with: > > mvn -V clean package > > You can record the Maven and Java version produced by -V in your VOTE > reply. > To gather OS information from a command line: > Windows: ver > Linux: uname -a > > 4b) Check reproducibility > > To check that a build is reproducible, run: > > mvn clean verify artifact:compare -DskipTests > -Dreference.repo= > https://repository.apache.org/content/repositories/staging/ > '-Dbuildinfo.ignore=*/*.spdx.json' > > Note that this excludes SPDX files from the check. > > 5) Build the site for a single module project > > Note: Some plugins require the components to be installed instead of > packaged. > > mvn site > Check the site reports in: > - Windows: target\site\index.html > - Linux: target/site/index.html > > -the end- >