Skip to content

Commit f22d832

Browse files
authored
chore: Prepare 0.11 release (#807)
1 parent f60bfd6 commit f22d832

File tree

2 files changed

+60
-1
lines changed

2 files changed

+60
-1
lines changed

CHANGELOG.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,64 @@
11
# Changelog
22

3+
## [0.11.0] - 2025-06-17
4+
5+
### Breaking changes :hammer:
6+
7+
- Require Python 3.9 or higher by @kylebarron in https://github.com/developmentseed/lonboard/pull/743
8+
9+
### New features :sparkles:
10+
11+
- feat: Reinstate tooltip by @vgeorge in https://github.com/developmentseed/lonboard/pull/736.
12+
13+
You can now turn on the tooltip by passing `show_tooltip=True` to `Map`. You may also want to pass `show_side_panel=False` to disable the side panel.
14+
- Clicked point to Lonboard map by @ATL2001 in https://github.com/developmentseed/lonboard/pull/671
15+
- feat: Support `geoarrow.box` arrays from GeoArrow 0.2 spec by @kylebarron in https://github.com/developmentseed/lonboard/pull/793
16+
- feat: Allow passing Arrow table as positional argument to layer constructors by @kylebarron in https://github.com/developmentseed/lonboard/pull/795
17+
- Switch to the DuckDB Expression API to mitigate sql injection risk by @danielsparing in https://github.com/developmentseed/lonboard/pull/777
18+
19+
### Visual changes :art:
20+
21+
- Improve side panel layout by @vgeorge in https://github.com/developmentseed/lonboard/pull/701
22+
23+
### Bug fixes :bug:
24+
25+
- Scope tailwind preflight styles by @Bjoern-Rapp in https://github.com/developmentseed/lonboard/pull/740
26+
- Pass state in `to_html` by @kylebarron in https://github.com/developmentseed/lonboard/pull/726
27+
- use dependency state in export by @knaaptime in https://github.com/developmentseed/lonboard/pull/731
28+
- fix: ensure GeoArrow field names are set in conversion from shapely by @kylebarron in https://github.com/developmentseed/lonboard/pull/794
29+
- Fix accessing default connection for duckdb 1.2 by @kylebarron in https://github.com/developmentseed/lonboard/pull/772
30+
- Sanitize geomcolname by @danielsparing in https://github.com/developmentseed/lonboard/pull/769
31+
32+
### Documentation :book:
33+
34+
- Replace DS Medium link by LinkedIn by @willemarcel in https://github.com/developmentseed/lonboard/pull/700
35+
- Geoarrow docstring update by @ATL2001 in https://github.com/developmentseed/lonboard/pull/705
36+
- Add docs page with external resources by @kylebarron in https://github.com/developmentseed/lonboard/pull/710
37+
- Panel example update by @ATL2001 in https://github.com/developmentseed/lonboard/pull/746
38+
- docs: Reword section in "How it works" to reflect GeoParquet 1.1 by @kylebarron in https://github.com/developmentseed/lonboard/pull/804
39+
- docs: Add duckdb intersphinx mapping by @kylebarron in https://github.com/developmentseed/lonboard/pull/800
40+
- Remove references to custom connection parameter by @danielsparing in https://github.com/developmentseed/lonboard/pull/784
41+
- updates for polygon layer documentation by @ATL2001 in https://github.com/developmentseed/lonboard/pull/789
42+
43+
### Internal changes :wrench:
44+
45+
- Switch dependency management to uv by @kylebarron in https://github.com/developmentseed/lonboard/pull/721
46+
- Support Py3.12 in tests by constraining pyproj in lockfile to versions with wheels by @ceholden in https://github.com/developmentseed/lonboard/pull/745
47+
- Enable more ruff linters by @kylebarron in https://github.com/developmentseed/lonboard/pull/753
48+
- Reduce ruff warnings by @danielsparing in https://github.com/developmentseed/lonboard/pull/778
49+
- chore: Ensure support for GeoArrow 0.2 CRS by @kylebarron in https://github.com/developmentseed/lonboard/pull/797
50+
- chore: Bump deck.gl to 9.1 by @kylebarron in https://github.com/developmentseed/lonboard/pull/802
51+
- test: Test that parsing WKB/WKT works with Arrow view types by @kylebarron in https://github.com/developmentseed/lonboard/pull/801
52+
53+
## New Contributors
54+
55+
- @knaaptime made their first contribution in https://github.com/developmentseed/lonboard/pull/731
56+
- @ceholden made their first contribution in https://github.com/developmentseed/lonboard/pull/745
57+
- @Bjoern-Rapp made their first contribution in https://github.com/developmentseed/lonboard/pull/740
58+
- @danielsparing made their first contribution in https://github.com/developmentseed/lonboard/pull/769
59+
60+
**Full Changelog**: https://github.com/developmentseed/lonboard/compare/v0.10.3...v0.11.0
61+
362
## [0.10.3] - 2024-10-15
463

564
### Fixes :bug:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lonboard"
3-
version = "0.10.3"
3+
version = "0.11.0"
44
description = "Fast, interactive geospatial data visualization in Jupyter."
55
authors = [{ name = "Kyle Barron", email = "[email protected]" }]
66
license = "MIT"

0 commit comments

Comments
 (0)