Skip to content

Commit e375612

Browse files
authored
chore: patch release 3.2.6 (#3358)
* chore: patch release 3.2.6 Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com> * update changelog Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com> --------- Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com>
1 parent b5ffed5 commit e375612

39 files changed

Lines changed: 292 additions & 221 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,29 @@ Each version should:
1515
Ref: http://keepachangelog.com/en/0.3.0/
1616
-->
1717

18+
## [3.2.6] - Mar 16 2026
19+
20+
- b5ffed55b feat: add extra map export resolutions (#3357)
21+
- faa000c6c feat(kepler-jupyter): version 0.4.0rc1 (#3345)
22+
- efb072eb5 fix: colors not working in trip layer of TABLE mode (#3347)
23+
- ca30df0e1 fix: create trip layer from duckdb table (#3344)
24+
- cc33b0c8f feat: add support to DECIMAL column type (#3341)
25+
- 40ce323a8 docs(localization): add translation guide for contributors (#3335)
26+
- 35ab765d4 fix: tileset loading indicator improvements (#3331)
27+
- cec11f3cb fix: add security warning about Mapbox token in HTML exports (#3139) (#3330)
28+
- e2f672cdc fix: replace broken vis.academy link with docs.kepler.gl (#3309)
29+
- 8c5030c3e fix: export zoom icon (#3308)
30+
- 8cf4274bf fix: layer configurator icon update (#3306)
31+
- 192f0fd2b feat: getDuckDBColumnTypes improvements (#3304)
32+
- 3762a2b36 feat: make tile loading indicator more explicit (#3305)
33+
- e5b7df170 rollback change, and truncate tooltip (#3300)
34+
- cbb3204cf feat: Implement WKT validation in data-type.ts (#3298)
35+
- e705fc8aa fix: name new point layer using label if provided (follow-up) (#3297)
36+
- 4bdf8f4ff fix: name new point layer using label if provided
37+
- cf76bba68 fix: hide Kepler editor tooltip “top-left jump” on invalid hover coords (#3294)
38+
- 2ba9f6e22 fix: Clamp legend height if it exceeds available space (#3276)
39+
- 562cb1ba8 kepler.gl-jupyter: codespell (#3273)
40+
1841
## [3.2.5] - Dec 24 2025
1942

2043
- 81f490d94 fix: trigger a redraw from icon layer once the icons are loaded. (#3269)

bindings/python/esbuild.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright contributors to the kepler.gl project
3+
14
import * as esbuild from 'esbuild';
25
import path from 'path';
36
import {fileURLToPath} from 'url';

bindings/python/keplergl/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-License-Identifier: MIT
2+
# Copyright contributors to the kepler.gl project
3+
14
"""Kepler.gl Jupyter Widget."""
25

36
from .widget import KeplerGl
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-License-Identifier: MIT
2+
# Copyright contributors to the kepler.gl project
3+
14
"""Version information."""
25

36
__version__ = "0.4.0rc1"

bindings/python/keplergl/serializers.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-License-Identifier: MIT
2+
# Copyright contributors to the kepler.gl project
3+
14
"""Data serialization for Python <-> JavaScript communication."""
25

36
import base64

bindings/python/keplergl/widget.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-License-Identifier: MIT
2+
# Copyright contributors to the kepler.gl project
3+
14
"""Kepler.gl Jupyter Widget using anywidget."""
25

36
import pathlib

bindings/python/src/components/App.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright contributors to the kepler.gl project
3+
14
import React, {useEffect, useState, useRef} from 'react';
25
import {injectComponents} from '@kepler.gl/components';
36
import {KEPLER_ID} from '../store';

bindings/python/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright contributors to the kepler.gl project
3+
14
import type {WidgetModel} from './types';
25
import {KeplerGlWidget} from './widget';
36
import './styles.css';

bindings/python/src/process-shim.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright contributors to the kepler.gl project
3+
14
export const process = {
25
env: {
36
NODE_ENV: typeof window !== 'undefined' ? 'production' : 'development'

bindings/python/src/store.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright contributors to the kepler.gl project
3+
14
import {createStore as createReduxStore, combineReducers, applyMiddleware, compose} from 'redux';
25
import {keplerGlReducer, enhanceReduxMiddleware} from '@kepler.gl/reducers';
36

0 commit comments

Comments
 (0)