Ticklabelposition for plotly version 4.14.3

Have there been made any changes to ticklabelposition for the latest plotly version?
A few months ago I could run:

import plotly.express as px

df = px.data.stocks(indexed=True)-1
fig = px.bar(df, x=df.index, y="GOOG")
fig.update_yaxes(ticklabelposition="inside top", title=None)
fig.show()

And get:

image

But now Iā€™m getting:

image