1.1.0 release notes

This release launches memory improvements and semantic versioning

Posted in Release Notes, October 21 2021

Hey, Streamlit community! πŸ‘‹

Say hello to some sweet improvements around memory usage and the introduction of semantic versioning!

🧠 Memory improvements

Ever had a Streamlit app use too much memory? Rejoice! We made some important changes to shrink memory usage. This affects all Streamlit apps, especially the ones that have run for long periods of time and have many viewers. This change also prevents many resource-limit errors on Streamlit Cloud (the "Argh" error page you might've seen here and there) and builds on top of other memory improvements from version 0.82.0.

For example, here is one of our internal Streamlit app's memory usage. The colored lines on the left are using older Streamlit versions. The blue line on the right is using the 1.1.0 release.

![](upload://3EVHVxvW6obuvxPoSrbE3zvTUOw.png)

Update the Streamlit version of all your apps on Streamlit Cloud to 1.1.0 to enjoy these improvements!

🧬 Semantic versioning

With the recent release of Streamlit 1.0, we’re also committing to following a loose variant of semantic versioning. This fulfills our promise to keep the API stable so you can confidently build production-quality apps.

  • All changes introduced in minor versions will be additive. Breaking changes will only be introduced in major versions, while patch releases will be for bug fixes.
  • Whenever possible, a deprecation path will be provided rather than an outright breaking change. We’ll introduce deprecations in minor versions.

There are a few caveats, though:

  • Features released with the experimental_ prefix are excluded from semantic versioning because they’re prototype features that need community input and iteration.
  • st.session_state has a few minor issues left. While we're working on resolving them, this feature might see some updates outside semantic versioning in the next quarter.
  • UI changes are not considered breaking changes as long as apps still work.
  • Changes to CSS class names are not considered breaking changes.

πŸŽ’ Other notable updates

  • ♻️ Apps now automatically rerun when the content of secrets.toml changes. Before this, you had to refresh the page manually.
  • πŸ”— We redirected documentation links (e.g., in exceptions) to our brand-new docs site.
  • πŸ› Bug fix: Range slider can now be initialized with the session state API (#3586)
  • 🐞 Bug fix: Charts now automatically refresh when using add_rows with datetime index (#3653)

🏁 Wrapping up

Thanks for checking out the release notes for 1.1.0. You can always see the most recent updates on our changelog or via this tag on the forum.

Let us know in the comments below if you have any questions. We're looking forward to hearing what you think about this release!

Happy Streamlit-ing. 🎈


This is a companion discussion topic for the original entry at https://blog.streamlit.io/1-1-0-release-notes/
1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.