Skip to content

Commit

Permalink
Release Streamlit version 1.28.2 (streamlit#7716)
Browse files Browse the repository at this point in the history
* Build releases directly from tags instead of release branches (streamlit#7580)

* Get rid of unused release candidate workflow

* Just build releases directly from tag instead of release branch

* Get rid of unused scripts

* Add back branch check to verify that corresponding PR exists

* Docstrings for App testing (streamlit#7587)

* Make the outline for expanders appear on focus-visible and not focus (streamlit#7592)

* Add new libraries to attributions (streamlit#7599)

* Add new libraries to attributions

* Update metrics_util.py

* Up version to 1.28.0

* Fix: MPA Nav expand arrow (streamlit#7634)

Update dependency array for isOverflowing check - does not always register changes in clientHeight after initial expand & collapse. Add expanded to dependency array to ensure check of scrollHeight vs. clientHeight

* Tweak "forgot config" SnowflakeConnection error message (streamlit#7652)

* Fix app testing repr bug for `st.container` (streamlit#7644)

* Ensure file_uploader doesn't trigger needless reruns (streamlit#7641)

* Fix trigger value regression with `st.rerun` (streamlit#7643)

* Greatly narrow errors that we retry in SnowflakeConnection (streamlit#7645)

* Fix issue for st.camera_input and chat_input, add regression test for file_uploader (streamlit#7646)

Add playwright regression test for issue With st.file_uploader and st.chat_input, first message disappears streamlit#7556
Replicate changes from Ensure file_uploader doesn't trigger needless reruns streamlit#7641 for st.camera_input

* Up version to 1.28.1

* Add fix to enforce pyarrow version

* temp fix mypy upper bound, to avoid broken CI (streamlit#7713)

* Update version to 1.28.2

---------

Co-authored-by: Vincent Donato <vincent@streamlit.io>
Co-authored-by: Debbie Matthews <debbie.matthews@snowflake.com>
Co-authored-by: Ken McGrady <ken.mcgrady@gmail.com>
Co-authored-by: Maya Barnes <63436329+mayagbarnes@users.noreply.github.com>
Co-authored-by: Amanda Walker <amanda@amandawalker.io>
Co-authored-by: Karen Javadyan <kajarenc@gmail.com>
  • Loading branch information
7 people authored and Your Name committed Mar 22, 2024
1 parent 28236b3 commit a84ff8b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/app/package.json
@@ -1,6 +1,6 @@
{
"name": "@streamlit/app",
"version": "1.28.1",
"version": "1.28.2",
"license": "Apache-2.0",
"private": true,
"homepage": "./",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@emotion/react": "^11.10.5",
"@emotion/serialize": "^1.1.1",
"@emotion/styled": "^11.10.5",
"@streamlit/lib": "1.28.1",
"@streamlit/lib": "1.28.2",
"axios": "^0.27.2",
"baseui": "12.2.0",
"classnames": "^2.3.2",
Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/package.json
@@ -1,6 +1,6 @@
{
"name": "@streamlit/lib",
"version": "1.28.1",
"version": "1.28.2",
"private": true,
"license": "Apache-2.0",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
@@ -1,6 +1,6 @@
{
"name": "streamlit",
"version": "1.28.1",
"version": "1.28.2",
"private": true,
"workspaces": [
"app",
Expand Down
2 changes: 1 addition & 1 deletion lib/setup.py
Expand Up @@ -21,7 +21,7 @@

THIS_DIRECTORY = Path(__file__).parent

VERSION = "1.28.1" # PEP-440
VERSION = "1.28.2" # PEP-440

NAME = "streamlit"

Expand Down

0 comments on commit a84ff8b

Please sign in to comment.