Skip to content

Bump to 0.3.0 #140

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 11, 2025
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
43 changes: 42 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,49 @@
# Changelog

## [0.3.0] - 2025-02-11

This version includes major improvements over 0.2.

### New Features:

- Run `earcut` on a web worker to improve rendering performance of the `SolidPolygonLayer` by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/85
- Earcut main thread fallback by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/92
- New layer types:
- Add Arc layer by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/63
- Add heatmap layer by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/64
- Add column layer and h3 hexagon layer by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/68
- Add GeoArrowTextLayer by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/70
- GeoArrow-based Trips Layer by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/34
- polygon layer by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/79
- Start implementation of point cloud layer by @naomatheus in https://github.com/geoarrow/deck.gl-layers/pull/96

### What's Changed

- Simplified accessor validation by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/69
- Text example & Fix text rendering by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/72
- compute table offsets by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/91
- Fix error when no geometry column found by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/94
- function accessors by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/100
- Wrap worker instantiation in try/catch; fix for non-served HTML files by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/108
- Export PointCloudLayer through top-level index.ts by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/110
- Fix picking in the polygon layer by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/113
- Publish beta with fixed PolygonLayer by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/115
- Fix bundling for loading from CDN by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/111
- Prefer user input over defaults by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/119
- fix arrow bundle by @atmorling in https://github.com/geoarrow/deck.gl-layers/pull/122
- Support deck.gl v9 by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/112
- Support separated (struct) coordinates for all applicable layers by @gmoney1729 in https://github.com/geoarrow/deck.gl-layers/pull/139

## New Contributors

- @naomatheus made their first contribution in https://github.com/geoarrow/deck.gl-layers/pull/96
- @gmoney1729 made their first contribution in https://github.com/geoarrow/deck.gl-layers/pull/139

**Full Changelog**: https://github.com/geoarrow/deck.gl-layers/compare/v0.2.0...v0.3.0

## [0.2.0] - 2023-10-21

## What's Changed
### What's Changed

- Correctly forward props by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/46
- Cleaner data reproductions for examples by @kylebarron in https://github.com/geoarrow/deck.gl-layers/pull/45
Expand Down
3 changes: 2 additions & 1 deletion examples/polygon/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ function Root() {
positionFormat: "XY",
_normalize: false,
autoHighlight: false,
// Note: change this version string if needed
earcutWorkerUrl: new URL(
"https://cdn.jsdelivr.net/npm/@geoarrow/geoarrow-js@0.3.0-beta.1/dist/earcut-worker.min.js",
"https://cdn.jsdelivr.net/npm/@geoarrow/geoarrow-js@0.3.0/dist/earcut-worker.min.js",
),
}),
);
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"examples/*"
],
"name": "@geoarrow/deck.gl-layers",
"version": "0.3.0-beta.17",
"version": "0.3.0",
"type": "module",
"description": "",
"source": "src/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/layers/solid-polygon-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ const ourDefaultProps: Pick<

_validate: true,

// TODO: set this to current version
// Note: set this to current version
earcutWorkerUrl:
"https://cdn.jsdelivr.net/npm/@geoarrow/geoarrow-js@0.3.0-beta.1/dist/earcut-worker.min.js",
"https://cdn.jsdelivr.net/npm/@geoarrow/geoarrow-js@0.3.0/dist/earcut-worker.min.js",

earcutWorkerPoolSize: 8,
};
Expand Down