Skip to content

Commit 31f49b1

Browse files
authored
[chore] release 3.1.1 (#3017)
Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com>
1 parent feff135 commit 31f49b1

File tree

23 files changed

+295
-217
lines changed

23 files changed

+295
-217
lines changed

CHANGELOG.md

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

18+
## [3.1.1] - March 11 2025
19+
20+
- e271c8f8c [fix] fix for potential freeze during add data pipeline (#3015)
21+
- 9eef01c48 [fix] make onFilteredItemsChange callback optional (#3016)
22+
- 7107e4177 [fix] fixes for vector-tile layer (#3013)
23+
- b4b979d59 [fix] schema panel displays temp table (#3014)
24+
- ed2b5f322 [chore] fix react deprecation warnings (#3011)
25+
- ba75087a1 [fix] DuckDB: update schema after running a query (#3009)
26+
- b57b1ff9a [chore] update umd example to latest stable release (#3010)
27+
- 9762dc379 [feat] DuckDb plugin: drag and drop file directly as table (#2952)
28+
- 8e737e8cc [chore] changes to webpack.config path separators (#2623)
29+
- 8fbb3b0b4 [fix] Fix Save map action for FSQ provider (overwrite logic) (#3006)
30+
- df829fbe9 [fix] fix for geocoder coordinates (#3002)
31+
- 44acecf2a [fix] adjust getZoomFactor for icon layer (#3004)
32+
- 69ea2a176 [fix] fix for Icon layer UI (#3003)
33+
- 702b49e3f [fix] Fix for More than one copy of react-palm was loaded error message (#3007)
34+
- a67a7fcab [Bug] make sure the RangeBrush updates on slider range changes (#2047)
35+
- 631f7a304 [fix] Update geojson-utils.ts to support GeometryCollections (#2059)
36+
- ce867606f [chore] Bump express from 4.19.2 to 4.21.0 (#2655)
37+
- c9dd05f32 [chore] Bump nanoid from 3.3.7 to 3.3.8 in /bindings/kepler.gl-jupyter/js (#2906)
38+
- b2e24345c [chore] Bump fast-xml-parser from 4.4.0 to 4.5.0 (#2688)
39+
- 976b079b3 [chore] Bump lodash from 4.17.19 to 4.17.21 in /src/deckgl-layers (#2858)
40+
- 4074b320f [chore] Bump esbuild from 0.23.1 to 0.25.0 in /examples/demo-app (#2994)
41+
- 57573d344 [chore] Bump elliptic from 6.6.0 to 6.6.1 (#2997)
42+
- c5dbd571d [chore] Fix lint issues displayed on GitHub's File Changes page (#3001)
43+
- b98a39def [fix] Transform binary buffers to hex wkb when saved to json/hmtl maps (#2998)
44+
- 221b243c2 [feat] improvements to duckDB column type handling (#2970)
45+
- d30a95bcd [fix] improvements for layer type change logic (#2995)
46+
- 547ffeb0c [fix] arrow text labels from non-string source vectors (#2990)
47+
- 7e2e619e2 [chore] updates to website (#2992)
48+
- 7e2db2b7d [chore] Improved Props and Gettings Started Docs (#2993)
49+
- 1216d235b [fix] export geoarrow to CSV as geojson (#2988)
50+
- 2c525ed8e [fix] restore suport for string wkb; save binary wkb as hex wkb (#2982)
51+
- e149384df [chore] update to hubble.gl 1.4 (#2987)
52+
- c39778ce9 [fix] AI Assistant sends messages to 127.0.0.1 instead of remote Ollama URL (#2985)
53+
- 81780f5ab [chore] Update README.md (#2981)
54+
- f8fbf2461 [fix] heatmap renders nothing with black color or duplicate color (#2978)
55+
- 11350eecb [chore] check for required env variables in demo-app and output a warning (#2977)
56+
- 0325ef6ee [fix] FSQ storage provider - use prompt instead of auto login after logout (#2975)
57+
- bbe51b980 [fix] fix for point column suggestion not working (#2974)
58+
- fa1cc4f1e [chore] Rename ".env.template " to ".env.template" to prevent git clone fail (#2976)
59+
- 47cd3da81 [keplergl-jupyter] Release v0.3.7 #2969
60+
- 7bbe0b839 [Jupyter][Fix] convert datetimes to str so they can convert to json (#2968)
61+
- 5367abaee [fix] fix geojson and trip layer crash without data (#2964)
62+
- e1c9f869c [fix] FSQ Storage provider temp fix (#2960)
63+
- 098ee9b42 [fix] fix for minzoom in examples (#2959)
64+
- f7f10379e [chore] update demo-app version (#2958)
65+
- ab17e7565 [chore] update banner mesasge (#2957)
66+
1867
## [3.1.0] - January 29 2025
1968

2069
- 089aa8cf8 [chore] vector tiles refactoring (#2945)

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.1.0",
4+
"version": "3.1.1",
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.1.0",
107+
"@kepler.gl/components": "3.1.1",
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.1.0",
4+
"version": "3.1.1",
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.1.0",
35-
"@kepler.gl/constants": "3.1.0",
36-
"@kepler.gl/layers": "3.1.0",
37-
"@kepler.gl/processors": "3.1.0",
38-
"@kepler.gl/table": "3.1.0",
39-
"@kepler.gl/types": "3.1.0",
40-
"@kepler.gl/utils": "3.1.0",
34+
"@kepler.gl/cloud-providers": "3.1.1",
35+
"@kepler.gl/constants": "3.1.1",
36+
"@kepler.gl/layers": "3.1.1",
37+
"@kepler.gl/processors": "3.1.1",
38+
"@kepler.gl/table": "3.1.1",
39+
"@kepler.gl/types": "3.1.1",
40+
"@kepler.gl/utils": "3.1.1",
4141
"@reduxjs/toolkit": "^1.7.2",
4242
"@types/lodash.curry": "^4.1.7",
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.1.0",
4+
"version": "3.1.1",
55
"description": "kepler.gl AI assistant",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -30,12 +30,12 @@
3030
"umd"
3131
],
3232
"dependencies": {
33-
"@kepler.gl/components": "3.1.0",
34-
"@kepler.gl/constants": "3.1.0",
35-
"@kepler.gl/layers": "3.1.0",
36-
"@kepler.gl/table": "3.1.0",
37-
"@kepler.gl/types": "3.1.0",
38-
"@kepler.gl/utils": "3.1.0",
33+
"@kepler.gl/components": "3.1.1",
34+
"@kepler.gl/constants": "3.1.1",
35+
"@kepler.gl/layers": "3.1.1",
36+
"@kepler.gl/table": "3.1.1",
37+
"@kepler.gl/types": "3.1.1",
38+
"@kepler.gl/utils": "3.1.1",
3939
"@openassistant/core": "^0.0.7",
4040
"@openassistant/echarts": "^0.0.6",
4141
"@openassistant/geoda": "^0.0.6",

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.1.0",
4+
"version": "3.1.1",
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.1.0",
33+
"@kepler.gl/types": "3.1.1",
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.1.0",
4+
"version": "3.1.1",
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.1.0",
34-
"@kepler.gl/types": "3.1.0",
33+
"@kepler.gl/constants": "3.1.1",
34+
"@kepler.gl/types": "3.1.1",
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.1.0",
4+
"version": "3.1.1",
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.1.0",
42-
"@kepler.gl/cloud-providers": "3.1.0",
43-
"@kepler.gl/common-utils": "3.1.0",
44-
"@kepler.gl/constants": "3.1.0",
45-
"@kepler.gl/effects": "3.1.0",
46-
"@kepler.gl/layers": "3.1.0",
47-
"@kepler.gl/localization": "3.1.0",
48-
"@kepler.gl/processors": "3.1.0",
49-
"@kepler.gl/reducers": "3.1.0",
50-
"@kepler.gl/schemas": "3.1.0",
51-
"@kepler.gl/styles": "3.1.0",
52-
"@kepler.gl/table": "3.1.0",
53-
"@kepler.gl/types": "3.1.0",
54-
"@kepler.gl/utils": "3.1.0",
41+
"@kepler.gl/actions": "3.1.1",
42+
"@kepler.gl/cloud-providers": "3.1.1",
43+
"@kepler.gl/common-utils": "3.1.1",
44+
"@kepler.gl/constants": "3.1.1",
45+
"@kepler.gl/effects": "3.1.1",
46+
"@kepler.gl/layers": "3.1.1",
47+
"@kepler.gl/localization": "3.1.1",
48+
"@kepler.gl/processors": "3.1.1",
49+
"@kepler.gl/reducers": "3.1.1",
50+
"@kepler.gl/schemas": "3.1.1",
51+
"@kepler.gl/styles": "3.1.1",
52+
"@kepler.gl/table": "3.1.1",
53+
"@kepler.gl/types": "3.1.1",
54+
"@kepler.gl/utils": "3.1.1",
5555
"@loaders.gl/mvt": "^4.3.2",
5656
"@loaders.gl/pmtiles": "^4.3.2",
5757
"@mapbox/mapbox-sdk": "^0.15.3",

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.1.0",
4+
"version": "3.1.1",
55
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -32,7 +32,7 @@
3232
"dependencies": {
3333
"@dnd-kit/core": "^6.1.0",
3434
"@dnd-kit/modifiers": "^7.0.0",
35-
"@kepler.gl/types": "3.1.0",
35+
"@kepler.gl/types": "3.1.1",
3636
"@types/d3-scale": "^3.2.2",
3737
"@types/keymirror": "^0.1.1",
3838
"chroma-js": "2.1.2",

src/deckgl-arrow-layers/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/deckgl-arrow-layers",
33
"author": "Shan He <shan@uber.com>",
4-
"version": "3.1.0",
4+
"version": "3.1.1",
55
"description": "Deck.gl layers with GeoArrow and GeoParquet support",
66
"license": "MIT",
77
"main": "dist/index.js",
@@ -31,7 +31,7 @@
3131
],
3232
"dependencies": {
3333
"@geoarrow/geoarrow-js": "^0.3.0",
34-
"@kepler.gl/constants": "^3.1.0",
34+
"@kepler.gl/constants": "^3.1.1",
3535
"@math.gl/core": "^4.0.0",
3636
"@math.gl/polygon": "^4.0.0",
3737
"@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.1.0",
4+
"version": "3.1.1",
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.1.0",
39-
"@kepler.gl/types": "3.1.0",
40-
"@kepler.gl/utils": "3.1.0",
38+
"@kepler.gl/constants": "3.1.1",
39+
"@kepler.gl/types": "3.1.1",
40+
"@kepler.gl/utils": "3.1.1",
4141
"@luma.gl/constants": "^8.5.20",
4242
"@luma.gl/core": "^8.5.20",
4343
"@mapbox/geo-viewport": "^0.4.1",

0 commit comments

Comments
 (0)