Plotly module depreciated when are functions moving to chart_studio?

tl;dr
When will the 3d functions be moved from plotly to chart_studio?
How do I keep up to date so I know when they are moved so I can update my code?


I have found then when using plotly.graph_objects it will most times give me a warning saying that the current objects are deprecated yet, I have also found that plotly.Figure used to plot 3d scatter plots is still needed.

is there are replacement in the chart_studio module which is planned in the future for Figure?

where can I follow changes so I donโ€™t get caught off guard when functionality is moved because the plotly module is deprecated even though it is still required in some instances.

Example:

import chart_studio.plotly as cs

cs.sign_in(uโ€™guestโ€™, uโ€™guestโ€™)

import plotly.graph_objects as go

import numpy as np

#Hylix Equation
t = np.linspace(0, 10, 50)
x, y, z = np.cos(t), np.sin(t), t

fig = go.Figure(data=[go.Scatter3d(x=x, y=y, z=z,
mode=โ€˜markersโ€™)])
cs.iplot(fig, filename=โ€˜Helixโ€™)