Skip to content

Commit 621e831

Browse files
Pull changes
Signed-off-by: Indranil Halder <indranilhalder.dev@gmail.com>
2 parents 41b2611 + ed0db73 commit 621e831

48 files changed

Lines changed: 572 additions & 307 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/CHANGELOG.md

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

18+
## [3.2.3] - Nov 28 2025
19+
20+
- 2288bc324 fix: Allow passing arrow tables to ArrowDataContainer (#3247)
21+
- a0a4eefc1 fix: Yarn start failed (#3249)
22+
23+
## [3.2.2] - Nov 25 2025
24+
25+
- f66ab3c61 fix: Allow passing arrow tables to ArrowDataContainer (#3242)
26+
- e2efa50dd fix: copy geometry when geometry is of binary format (#3236)
27+
28+
## [3.2.1] - Nov 3 2025
29+
30+
- d2b130f95 fix: detect h3 column in arrow (#3230)
31+
- 2aa200913 fix: interaction panel causes layout shift (#3224)
32+
- 2e24bd207 feat: extend bigInt casting to support UBIGINT HUGEINT UHUGEINT in duckdb (#3227)
33+
- 79d745ae2 [fix] fix for wkb/wkt saved in DuckDB as varchar (#3208)
34+
- 24529655d fix: fixes to channel by value (#3216)
35+
- f211ccd0a [Bug]: Fix scrollTop reest when scrolling horizontally in data table (#3206)
36+
- b6aee95f3 docs: add security escalation policy (#3210)
37+
- a6e9cb998 feat: ai assistant support llm proxy server (#3188)
38+
- 2005927bd [fix] icon layer - render default icon in case svgIconUrl loading fails (#3204)
39+
- 64ec955ae [chore] Add missing release notes for 3.2 (#3200)
40+
- 70a129c4e [feat] vector tile layer - add feature uid selector (#3203)
41+
- 2b8af8260 [fix] vector tile layer - use highlightedFeatureId for hover (#3202)
42+
- 32fb77f42 [chore] bump demo-app example to kepler.gl 3.2 (#3201)
43+
- 96dcef6b9 [fix] fixes for legend (#3199)
44+
- 26dd6e832 [website] fix mobile layout (#3197)
45+
- 7be817789 [website] Add OpenJS Foundation copyright and logo (#3196)
46+
1847
## [3.2.0] - Aug 21 2025
1948

20-
3b0be2dda [chore] docs update (#3192)
21-
9c132de28 [chore] docs update (#3180)
22-
d4d8d184b [chore] raster tile form - add link to docs (#3183)
23-
f91564fb9 [fix] save raster layer config with layer, don't rely on app config (#3184)
24-
420bbf2ad [feat] add support for boolean filter in vector tiles (#3190)
25-
e4b64a080 [chore] Replace Studio section with Desktop section (#3189)
26-
751148111 [chore] Fix and update examples to v3.1.10 (#3182)
49+
- 3b0be2dda [chore] docs update (#3192)
50+
- 9c132de28 [chore] docs update (#3180)
51+
- d4d8d184b [chore] raster tile form - add link to docs (#3183)
52+
- f91564fb9 [fix] save raster layer config with layer, don't rely on app config (#3184)
53+
- 420bbf2ad [feat] add support for boolean filter in vector tiles (#3190)
54+
- e4b64a080 [chore] Replace Studio section with Desktop section (#3189)
55+
- 751148111 [chore] Fix and update examples to v3.1.10 (#3182)
2756

2857
## [3.1.10] - Aug 14 2025
2958

examples/demo-app/esbuild.config.mjs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,17 @@ const config = {
9494
outfile: 'dist/bundle.js',
9595
bundle: true,
9696
define: {
97-
NODE_ENV
97+
NODE_ENV,
98+
// Define process.env variables for browser environment
99+
'process.env.MapboxAccessToken': JSON.stringify(process.env.MapboxAccessToken || ''),
100+
'process.env.DropboxClientId': JSON.stringify(process.env.DropboxClientId || ''),
101+
'process.env.MapboxExportToken': JSON.stringify(process.env.MapboxExportToken || ''),
102+
'process.env.CartoClientId': JSON.stringify(process.env.CartoClientId || ''),
103+
'process.env.FoursquareClientId': JSON.stringify(process.env.FoursquareClientId || ''),
104+
'process.env.FoursquareDomain': JSON.stringify(process.env.FoursquareDomain || ''),
105+
'process.env.FoursquareAPIURL': JSON.stringify(process.env.FoursquareAPIURL || ''),
106+
'process.env.FoursquareUserMapsURL': JSON.stringify(process.env.FoursquareUserMapsURL || ''),
107+
'process.env.NODE_ENV': NODE_ENV
98108
},
99109
plugins: [
100110
dotenvRun({

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kepler.gl",
33
"author": "Shan He <shan@uber.com>",
4-
"version": "3.2.0",
4+
"version": "3.2.3",
55
"description": "kepler.gl is a webgl based application to visualize large scale location data in the browser",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -106,7 +106,7 @@
106106
"@deck.gl/mapbox": "^8.9.27",
107107
"@hubble.gl/core": "1.4.0",
108108
"@hubble.gl/react": "1.4.0",
109-
"@kepler.gl/components": "3.2.0",
109+
"@kepler.gl/components": "3.2.3",
110110
"@loaders.gl/polyfills": "^4.3.2",
111111
"@types/mapbox__geo-viewport": "^0.4.1",
112112
"html-webpack-plugin": "^4.3.0",

src/actions/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kepler.gl/actions",
33
"author": "Shan He <shan@uber.com>",
4-
"version": "3.2.0",
4+
"version": "3.2.3",
55
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -31,13 +31,13 @@
3131
],
3232
"dependencies": {
3333
"@deck.gl/core": "^8.9.27",
34-
"@kepler.gl/cloud-providers": "3.2.0",
35-
"@kepler.gl/constants": "3.2.0",
36-
"@kepler.gl/layers": "3.2.0",
37-
"@kepler.gl/processors": "3.2.0",
38-
"@kepler.gl/table": "3.2.0",
39-
"@kepler.gl/types": "3.2.0",
40-
"@kepler.gl/utils": "3.2.0",
34+
"@kepler.gl/cloud-providers": "3.2.3",
35+
"@kepler.gl/constants": "3.2.3",
36+
"@kepler.gl/layers": "3.2.3",
37+
"@kepler.gl/processors": "3.2.3",
38+
"@kepler.gl/table": "3.2.3",
39+
"@kepler.gl/types": "3.2.3",
40+
"@kepler.gl/utils": "3.2.3",
4141
"@reduxjs/toolkit": "^1.7.2",
4242
"@types/lodash": "4.17.5",
4343
"@types/react-redux": "^7.1.23",

src/ai-assistant/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kepler.gl/ai-assistant",
33
"author": "Xun Li<lixun910@gmail.com>",
4-
"version": "3.2.0",
4+
"version": "3.2.3",
55
"description": "kepler.gl AI assistant",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -34,12 +34,12 @@
3434
"@ai-sdk/deepseek": "^0.2.14",
3535
"@ai-sdk/google": "^1.2.18",
3636
"@ai-sdk/xai": "^1.2.16",
37-
"@kepler.gl/components": "3.2.0",
38-
"@kepler.gl/constants": "3.2.0",
39-
"@kepler.gl/layers": "3.2.0",
40-
"@kepler.gl/table": "3.2.0",
41-
"@kepler.gl/types": "3.2.0",
42-
"@kepler.gl/utils": "3.2.0",
37+
"@kepler.gl/components": "3.2.3",
38+
"@kepler.gl/constants": "3.2.3",
39+
"@kepler.gl/layers": "3.2.3",
40+
"@kepler.gl/table": "3.2.3",
41+
"@kepler.gl/types": "3.2.3",
42+
"@kepler.gl/utils": "3.2.3",
4343
"@openassistant/core": "^0.5.17",
4444
"@openassistant/duckdb": "^0.5.17",
4545
"@openassistant/echarts": "^0.5.17",

src/cloud-providers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kepler.gl/cloud-providers",
33
"author": "Shan He <shan@uber.com>",
4-
"version": "3.2.0",
4+
"version": "3.2.3",
55
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -30,7 +30,7 @@
3030
"umd"
3131
],
3232
"dependencies": {
33-
"@kepler.gl/types": "3.2.0",
33+
"@kepler.gl/types": "3.2.3",
3434
"react": "^18.2.0"
3535
},
3636
"nyc": {

src/common-utils/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kepler.gl/common-utils",
33
"author": "Shan He <heshan0131@gmail.com>",
4-
"version": "3.2.0",
4+
"version": "3.2.3",
55
"description": "kepler.gl common utils",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -30,8 +30,8 @@
3030
"umd"
3131
],
3232
"dependencies": {
33-
"@kepler.gl/constants": "3.2.0",
34-
"@kepler.gl/types": "3.2.0",
33+
"@kepler.gl/constants": "3.2.3",
34+
"@kepler.gl/types": "3.2.3",
3535
"d3-array": "^2.8.0",
3636
"global": "^4.3.0",
3737
"h3-js": "^3.1.0",

src/components/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kepler.gl/components",
33
"author": "Shan He <shan@uber.com>",
4-
"version": "3.2.0",
4+
"version": "3.2.3",
55
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -38,20 +38,20 @@
3838
"@dnd-kit/utilities": "^3.2.2",
3939
"@emotion/is-prop-valid": "^1.2.1",
4040
"@floating-ui/react": "0.25.1",
41-
"@kepler.gl/actions": "3.2.0",
42-
"@kepler.gl/cloud-providers": "3.2.0",
43-
"@kepler.gl/common-utils": "3.2.0",
44-
"@kepler.gl/constants": "3.2.0",
45-
"@kepler.gl/effects": "3.2.0",
46-
"@kepler.gl/layers": "3.2.0",
47-
"@kepler.gl/localization": "3.2.0",
48-
"@kepler.gl/processors": "3.2.0",
49-
"@kepler.gl/reducers": "3.2.0",
50-
"@kepler.gl/schemas": "3.2.0",
51-
"@kepler.gl/styles": "3.2.0",
52-
"@kepler.gl/table": "3.2.0",
53-
"@kepler.gl/types": "3.2.0",
54-
"@kepler.gl/utils": "3.2.0",
41+
"@kepler.gl/actions": "3.2.3",
42+
"@kepler.gl/cloud-providers": "3.2.3",
43+
"@kepler.gl/common-utils": "3.2.3",
44+
"@kepler.gl/constants": "3.2.3",
45+
"@kepler.gl/effects": "3.2.3",
46+
"@kepler.gl/layers": "3.2.3",
47+
"@kepler.gl/localization": "3.2.3",
48+
"@kepler.gl/processors": "3.2.3",
49+
"@kepler.gl/reducers": "3.2.3",
50+
"@kepler.gl/schemas": "3.2.3",
51+
"@kepler.gl/styles": "3.2.3",
52+
"@kepler.gl/table": "3.2.3",
53+
"@kepler.gl/types": "3.2.3",
54+
"@kepler.gl/utils": "3.2.3",
5555
"@loaders.gl/mvt": "^4.3.2",
5656
"@loaders.gl/pmtiles": "^4.3.2",
5757
"@loaders.gl/wms": "4.3.2",
@@ -109,7 +109,7 @@
109109
"react-sortable-hoc": "^1.8.3",
110110
"react-time-picker": "^6.2.0",
111111
"react-tooltip": "^4.2.17",
112-
"react-virtualized": "^9.22.5",
112+
"react-virtualized": "9.22.6",
113113
"react-vis": "1.11.7",
114114
"redux": "^4.2.1",
115115
"reselect": "^4.1.0",

src/components/src/common/color-legend.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export function LegendRowFactory(
168168
[color, onUpdateLabel]
169169
);
170170
const onReset = useCallback(() => onResetLabel && onResetLabel(color), [color, onResetLabel]);
171-
const value = displayLabel ? label.toString() : '';
171+
const value = displayLabel ? String(label ?? '') : '';
172172
return (
173173
<StyledLegendRow>
174174
<LegendColorDisplay color={color} />

src/components/src/common/data-table/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ export const TableSection = ({
349349
height={headerGridProps.height + browserScrollBarWidth}
350350
width={headerGridWidth}
351351
scrollLeft={scrollLeft}
352-
onScroll={onScroll}
352+
onScroll={args => onScroll?.({...args, scrollTop:scrollTop ?? 0 })}
353353
/>
354354
</div>
355355
<div

0 commit comments

Comments
 (0)