Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

## 0.4.0

- Renders via `st.iframe` on newer Streamlit versions, falls back to `st.components.v1.html`
- Raises a `TypeError` instead of failing obscurely when `fig` is not a `keplergl.KeplerGl` object
- Handles keplergl returning utf-8 encoded bytes
- Requires Python 3.10+
- Packaging moved to `pyproject.toml`, added tests and CI

## 0.3.0

- Adds `center_map` and `read_only` arguments
- Fixes issue of data not displayed in map

## 0.2.0

- Adjusts use of `width` and `height` parameters based on feedback e.g. https://github.com/chrieke/streamlit-keplergl/issues/3
- Removes forced defaults for `width` & `height` parameters
- `height` parameter now correctly supersedes the keplergl figure object setting
- Adds better explanation and more examples
- Removes st component `scrolling` parameter as had no effect

## 0.1.0

- Initial release
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "streamlit-keplergl"
version = "0.3.0"
version = "0.4.0"
description = "Streamlit Component for rendering kepler.gl maps"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
Loading