Skip to content

Commit 34ef004

Browse files
committed
Update CHANGELOG
1 parent b6c2234 commit 34ef004

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
### Pending Fixed
1414

15+
### v14.18.2 - 2025-01-02
16+
17+
- :bug: Ensure normalize step never produces center with > 3 coordinates
18+
1519
### v14.18.1 - 2025-12-24
1620

1721
- :rocket: Update GitHub Actions release step

lib/parser/normalize_geojson.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export async function normalize_geojson(
9393
stale.setHours(stale.getHours() + 1);
9494
feature.properties.stale = stale;
9595

96-
feature.properties.center = PointOnFeature(feature).geometry.coordinates;
96+
feature.properties.center = PointOnFeature(feature).geometry.coordinates.splice(3);
9797

9898
feature.properties.archived = true;
9999

0 commit comments

Comments
 (0)