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
Unknown Object (File)
Thu, Apr 25, 22:20
Unknown Object (File)
Wed, Apr 24, 22:44
Unknown Object (File)
Wed, Apr 17, 18:18
Unknown Object (File)
Wed, Apr 17, 06:43
Unknown Object (File)
Tue, Apr 16, 20:03
Unknown Object (File)
Tue, Apr 16, 05:59
Unknown Object (File)
Tue, Apr 16, 04:59
Unknown Object (File)
Mon, Apr 15, 17:21

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