A new command FunctionAnalytic of version 12.2 sometimes produces incorrect results, e.g.
FunctionAnalytic[Cos[Sqrt[z]], z]
False
FunctionAnalytic[Cos[Sqrt[z]], z, Complexes]
FunctionAnalytic[Cos[Sqrt[z]],z,\[DoubleStruckCapitalC]]
Up to Wiki and other sources, this is an entire function of order $\frac 1 2$.
Moreover,
FunctionAnalytic[Sum[(-1)^n*z^n/(2*n)!, {n, 0, Infinity}], z]
False
Also
ComplexPlot[Cos[Sqrt[z]], {z, -5 - 5*I, 5 + 5*I}]
shows the superfluous cut along the negatve ray of the real axis. Is there a workaround?
Addition. One more incorrect answer
FunctionAnalytic[Product[1 - z^2/n^2, {n, 1, Infinity}], z,Complexes]
False
, whereas
FunctionAnalytic[Product[1 - z^2/Pi^2/n^2, {n, 1, Infinity}], z,Complexes]
True
It's clear that the multplier $\frac 1 {\pi^2}$ is not of importance for the analycity.
Addition 2. Another deficiency
FunctionAnalytic[ Piecewise[{{z, Abs[z] <= 1}, {z, Abs[z] > 1}}], z, Complexes]
False
I am sure z is analytic.

FunctionAnalytic[{Abs[w]^2*z/Conjugate[w], w != 0}, {z, w}, Complexes]producesFalsethoughAbs[w]^2*z/Conjugate[w] // FullSimplifyperformsw*z. – user64494 Dec 24 '20 at 19:22