Page MenuHomePhorge

Fix Subversion "commit" support in PHP 8.1
ClosedPublic

Authored by valerio.bozzolan on Dec 14 2023, 17:29.
Tags
None
Referenced Files
F2942994: D25498.1738153884.diff
Tue, Jan 28, 12:31
F2938325: D25498.1737994195.diff
Sun, Jan 26, 16:09
F2938324: D25498.1737994191.diff
Sun, Jan 26, 16:09
F2938323: D25498.1737994188.diff
Sun, Jan 26, 16:09
F2936887: D25498.1737942888.diff
Sun, Jan 26, 01:54
F2936248: D25498.1737911605.diff
Sat, Jan 25, 17:13
F2933160: D25498.1737752222.diff
Thu, Jan 23, 20:57
F2904917: D25498.1737336474.diff
Sun, Jan 19, 01:27

Details

Summary

Premising that "arc commit" is a beautiful Workflow dedicated to svn repositories,
I tried it at work, causing the usual PHP 8.1 deprecation warning:

$ arc diff
$ arc commit
ERROR 8192: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated at [arcanist/src/workflow/ArcanistWorkflow.php:1520]
arcanist(head=master, ref.master=e46025f7a914)
  #0 preg_replace(string, string, NULL) called at [<arcanist>/src/workflow/ArcanistWorkflow.php:1520]
  #1 ArcanistWorkflow::normalizeRevisionID(NULL) called at [<arcanist>/src/workflow/ArcanistCommitWorkflow.php:68]
  #2 ArcanistCommitWorkflow::run() called at [<arcanist>/scripts/arcanist.php:427]
Usage Exception: Unable to identify the revision in the working copy. Use '--revision <revision_id>' to select a revision.

This bug happens at least when Arcanist does not find any related Revision ID.

It seems there is a method that always normalizes the Revision ID, but sometime that is unknown (null).
And so, NULL ends inside a preg_replace(). It's probably OK to have a normalize method that accept wild
things, including NULL. So, fixed that specific method.

Closes T15693

Test Plan

This revision was tested in production in my company.

Take a random Subversion repository. Edit a line. Run "arc diff". Then run "arc commit". No warnings.

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable