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
F3334369: D25498.1743548748.diff
Mon, Mar 31, 23:05
F3330380: D25498.1743488011.diff
Mon, Mar 31, 06:13
F3329651: D25498.1743478121.diff
Mon, Mar 31, 03:28
F3327299: D25498.1743436485.diff
Sun, Mar 30, 15:54
F3321020: D25498.1743342703.diff
Sat, Mar 29, 13:51
F3306342: D25498.1743127280.diff
Thu, Mar 27, 02:01
F3305010: D25498.1743109237.diff
Wed, Mar 26, 21:00
F3303495: D25498.1743081643.diff
Wed, Mar 26, 13:20

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