Try this release in your browser! (Available 30 minutes after the release)
Learn more about Binder and Pluto at plutojl.org/en/docs/binder!
Note from Fons
Thanks for using Pluto! I'm excited to release version 1.0.0, symbolizing that Pluto is ready. Enjoy!
A discourse post celebrating the 1.0 release is coming soon! This exact release (1.0.0) does not contain any new features, it only removes some deprecated functionality.
Removed deprecated functionality
-
The
embed_displayfunction has been removed. You now useAbstractPlutoDingetjes.Display.@embedinstead. -
The
publish_to_jsfunction has been removed. You now useAbstractPlutoDingetjes.Display.published_to_jsinstead. -
The configuration
dismiss_motivational_quoteshas been removed and replaced by a setting in the frontend. -
The
FileEditEventevent has been removed. -
Pluto.run([host::String,] port::Union{Nothing,Integer} = nothing; kwargs...)has been removed. You now need to usePluto.run(; host, port, kwargs...)instead. -
The following deprecations from MoreAnalysis have been removed. You now need to use the new formats:
@deprecate is_referenced_anywhere(notebook::Notebook, topology::NotebookTopology, sym::Symbol) is_referenced_anywhere(topology, sym)`
@deprecate is_assigned_anywhere(notebook::Notebook, topology::NotebookTopology, sym::Symbol) is_assigned_anywhere(topology, sym)`
@deprecate downstream_recursive(
notebook::Notebook,
topology::NotebookTopology,
from::Union{Vector{Cell},Set{Cell}},
) downstream_recursive(
topology,
from,
)
@deprecate upstream_recursive(
notebook::Notebook,
topology::NotebookTopology,
from::Union{Vector{Cell},Set{Cell}},
) upstream_recursive(
topology,
from,
)
@deprecate codependents(notebook::Notebook, topology::NotebookTopology, var::Symbol) codependents(topology, var)
@deprecate bound_variable_connections_graph(notebook::Notebook) bound_variable_connections_graph(notebook.topology)Breaking changes
format_versionof PlutoSliderServer export sources now needs to equal2instead of1.