Update June 25, 2023. Problem still there in V 13.3. Added screen shot at end.
I was trying code which worked all the time:
How to extend a function by period and display it
I find that in V 13.2 it now gives

Why is that? has something changed in V 13.2 to explain this?
Below I will give the code in plain text, and then screen shot showing it works in V 13.1 but not in V 13.2. This is all done from clean kernel and on windows 10.
T = 2; (*period*) f[x_] := -((E^x + E^(-x))/2); fExtended[x_] := Piecewise[{{f[x], -T/2 < x < T/2}, {fExtended[x - T], x > T/2}, {fExtended[x + T], x < T/2}}]; Plot[fExtended[x], {x, -2*T, 2*T}, AxesOrigin -> {0, 0}, AxesOrigin -> {0, 0}] 



fExtended[x - T]this creates a recursion. If you restrict f to numerical values you can prevent the recursion:fExtended[x_?NumericQ] :=...Why this worked in 13.1 I do not know. $\endgroup$TerminatedEvaluationis new. Maybe in the old version thePlothas already generated recursion limit message but been suppressed. $\endgroup$TerminatedEvaluation["RecursionLimit"]. Setting$RecursionLimitto a value 10 times its default does make Mathematica solve the equation. $\endgroup$