Skip to content

Commit b1bc1e0

Browse files
committed
bump
Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com>
1 parent a1e888d commit b1bc1e0

23 files changed

Lines changed: 225 additions & 221 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ Ref: http://keepachangelog.com/en/0.3.0/
1717

1818
## [3.2.5] - Dec 24 2025
1919

20+
- 81f490d94 fix: trigger a redraw from icon layer once the icons are loaded. (#3269)
21+
- 26e4a17d4 fix(ai-assistant): clear LLM history on restart chat (#3262)
22+
- 2d985982a fix: image export for non-webpack bundlers (#3266)
23+
2024
## [3.2.4] - Dec 9 2025
2125

2226
- 82630dee3 fix: ensure icon layer render with the latest geometry (#3259)

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.4",
4+
"version": "3.2.5",
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",
@@ -104,7 +104,7 @@
104104
"@deck.gl/mapbox": "^8.9.27",
105105
"@hubble.gl/core": "1.4.0",
106106
"@hubble.gl/react": "1.4.0",
107-
"@kepler.gl/components": "3.2.4",
107+
"@kepler.gl/components": "3.2.5",
108108
"@loaders.gl/polyfills": "^4.3.2",
109109
"@types/mapbox__geo-viewport": "^0.4.1",
110110
"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.4",
4+
"version": "3.2.5",
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.4",
35-
"@kepler.gl/constants": "3.2.4",
36-
"@kepler.gl/layers": "3.2.4",
37-
"@kepler.gl/processors": "3.2.4",
38-
"@kepler.gl/table": "3.2.4",
39-
"@kepler.gl/types": "3.2.4",
40-
"@kepler.gl/utils": "3.2.4",
34+
"@kepler.gl/cloud-providers": "3.2.5",
35+
"@kepler.gl/constants": "3.2.5",
36+
"@kepler.gl/layers": "3.2.5",
37+
"@kepler.gl/processors": "3.2.5",
38+
"@kepler.gl/table": "3.2.5",
39+
"@kepler.gl/types": "3.2.5",
40+
"@kepler.gl/utils": "3.2.5",
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.4",
4+
"version": "3.2.5",
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.4",
38-
"@kepler.gl/constants": "3.2.4",
39-
"@kepler.gl/layers": "3.2.4",
40-
"@kepler.gl/table": "3.2.4",
41-
"@kepler.gl/types": "3.2.4",
42-
"@kepler.gl/utils": "3.2.4",
37+
"@kepler.gl/components": "3.2.5",
38+
"@kepler.gl/constants": "3.2.5",
39+
"@kepler.gl/layers": "3.2.5",
40+
"@kepler.gl/table": "3.2.5",
41+
"@kepler.gl/types": "3.2.5",
42+
"@kepler.gl/utils": "3.2.5",
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.4",
4+
"version": "3.2.5",
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.4",
33+
"@kepler.gl/types": "3.2.5",
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.4",
4+
"version": "3.2.5",
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.4",
34-
"@kepler.gl/types": "3.2.4",
33+
"@kepler.gl/constants": "3.2.5",
34+
"@kepler.gl/types": "3.2.5",
3535
"d3-array": "^2.8.0",
3636
"global": "^4.3.0",
3737
"h3-js": "^3.1.0",

src/components/package.json

Lines changed: 15 additions & 15 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.4",
4+
"version": "3.2.5",
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.4",
42-
"@kepler.gl/cloud-providers": "3.2.4",
43-
"@kepler.gl/common-utils": "3.2.4",
44-
"@kepler.gl/constants": "3.2.4",
45-
"@kepler.gl/effects": "3.2.4",
46-
"@kepler.gl/layers": "3.2.4",
47-
"@kepler.gl/localization": "3.2.4",
48-
"@kepler.gl/processors": "3.2.4",
49-
"@kepler.gl/reducers": "3.2.4",
50-
"@kepler.gl/schemas": "3.2.4",
51-
"@kepler.gl/styles": "3.2.4",
52-
"@kepler.gl/table": "3.2.4",
53-
"@kepler.gl/types": "3.2.4",
54-
"@kepler.gl/utils": "3.2.4",
41+
"@kepler.gl/actions": "3.2.5",
42+
"@kepler.gl/cloud-providers": "3.2.5",
43+
"@kepler.gl/common-utils": "3.2.5",
44+
"@kepler.gl/constants": "3.2.5",
45+
"@kepler.gl/effects": "3.2.5",
46+
"@kepler.gl/layers": "3.2.5",
47+
"@kepler.gl/localization": "3.2.5",
48+
"@kepler.gl/processors": "3.2.5",
49+
"@kepler.gl/reducers": "3.2.5",
50+
"@kepler.gl/schemas": "3.2.5",
51+
"@kepler.gl/styles": "3.2.5",
52+
"@kepler.gl/table": "3.2.5",
53+
"@kepler.gl/types": "3.2.5",
54+
"@kepler.gl/utils": "3.2.5",
5555
"@loaders.gl/mvt": "^4.3.2",
5656
"@loaders.gl/pmtiles": "^4.3.2",
5757
"@loaders.gl/wms": "4.3.2",

src/constants/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/constants",
33
"author": "Shan He <shan@uber.com>",
4-
"version": "3.2.4",
4+
"version": "3.2.5",
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.4",
33+
"@kepler.gl/types": "3.2.5",
3434
"@types/d3-scale": "^3.2.2",
3535
"@types/keymirror": "^0.1.1",
3636
"chroma-js": "2.1.2",

src/deckgl-arrow-layers/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/deckgl-arrow-layers",
33
"author": "Shan He <shan@uber.com>",
4-
"version": "3.2.4",
4+
"version": "3.2.5",
55
"description": "Deck.gl layers with GeoArrow and GeoParquet support",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -31,8 +31,8 @@
3131
],
3232
"dependencies": {
3333
"@geoarrow/geoarrow-js": "^0.3.0",
34-
"@kepler.gl/constants": "^3.2.4",
35-
"@kepler.gl/utils": "^3.2.4",
34+
"@kepler.gl/constants": "^3.2.5",
35+
"@kepler.gl/utils": "^3.2.5",
3636
"@math.gl/core": "^4.0.0",
3737
"@math.gl/polygon": "^4.0.0",
3838
"@math.gl/types": "^4.0.0",

src/deckgl-layers/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kepler.gl/deckgl-layers",
33
"author": "Shan He <shan@uber.com>",
4-
"version": "3.2.4",
4+
"version": "3.2.5",
55
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -35,9 +35,9 @@
3535
"@deck.gl/core": "^8.9.27",
3636
"@deck.gl/geo-layers": "^8.9.27",
3737
"@deck.gl/layers": "^8.9.27",
38-
"@kepler.gl/constants": "3.2.4",
39-
"@kepler.gl/types": "3.2.4",
40-
"@kepler.gl/utils": "3.2.4",
38+
"@kepler.gl/constants": "3.2.5",
39+
"@kepler.gl/types": "3.2.5",
40+
"@kepler.gl/utils": "3.2.5",
4141
"@loaders.gl/wms": "4.3.2",
4242
"@luma.gl/constants": "^8.5.20",
4343
"@luma.gl/core": "^8.5.20",

0 commit comments

Comments
 (0)