Skip to content

Commit 2555769

Browse files
committed
v9.0.30
1 parent 76ffe2f commit 2555769

File tree

18 files changed

+42
-36
lines changed

18 files changed

+42
-36
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ Ref: http://keepachangelog.com/en/0.3.0/
1919

2020
## deck.gl v9.0
2121

22+
#### deck.gl [9.0.30] - Sep 23 2024
23+
24+
- carto: Allow configuring max URL length for GET requests (#9159)
25+
- carto: Fix caching in ClusterTileLayer (#9167)
26+
- feat: Allow 0s for maxCacheSize and maxCacheByteSize (#9156)
27+
2228
#### deck.gl [9.0.29] - Sep 04 2024
2329

2430
- CARTO: Support private maps in fetchMap (#9139)

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "9.0.29",
2+
"version": "9.0.30",
33
"npmClient": "yarn",
44
"packages": [
55
"modules/*"

modules/aggregation-layers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "deck.gl layers that aggregate the input data into alternative representations",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/arcgis/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Use deck.gl as a custom ArcGIS API for JavaScript layer",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/carto/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "CARTO official integration with Deck.gl. Build geospatial applications using CARTO and Deck.gl.",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "deck.gl core library",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/extensions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Plug-and-play functionalities for deck.gl layers",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/geo-layers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "deck.gl layers supporting geospatial use cases and GIS formats",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/google-maps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Use deck.gl as a custom Google Maps overlay",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/json/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "JSON format rendering components for deck.gl",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/jupyter-widget/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@deck.gl/jupyter-widget",
33
"description": "Jupyter widget for rendering deck.gl in a Jupyter notebook",
44
"license": "MIT",
5-
"version": "9.0.29",
5+
"version": "9.0.30",
66
"keywords": [
77
"jupyter",
88
"jupyterlab",
@@ -29,12 +29,12 @@
2929
"prepublishOnly": "npm run build"
3030
},
3131
"dependencies": {
32-
"@deck.gl/aggregation-layers": "9.0.29",
33-
"@deck.gl/geo-layers": "9.0.29",
34-
"@deck.gl/google-maps": "9.0.29",
35-
"@deck.gl/json": "9.0.29",
36-
"@deck.gl/layers": "9.0.29",
37-
"@deck.gl/mesh-layers": "9.0.29",
32+
"@deck.gl/aggregation-layers": "9.0.30",
33+
"@deck.gl/geo-layers": "9.0.30",
34+
"@deck.gl/google-maps": "9.0.30",
35+
"@deck.gl/json": "9.0.30",
36+
"@deck.gl/layers": "9.0.30",
37+
"@deck.gl/mesh-layers": "9.0.30",
3838
"@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4",
3939
"@loaders.gl/3d-tiles": "^4.2.0",
4040
"@loaders.gl/core": "^4.2.0",

modules/layers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "deck.gl core layers",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/main/package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A suite of 3D-enabled data visualization overlays, suitable for react-map-gl",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"keywords": [
88
"webgl",
99
"visualization",
@@ -39,19 +39,19 @@
3939
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env=dev"
4040
},
4141
"dependencies": {
42-
"@deck.gl/aggregation-layers": "9.0.29",
43-
"@deck.gl/arcgis": "9.0.29",
44-
"@deck.gl/carto": "9.0.29",
45-
"@deck.gl/core": "9.0.29",
46-
"@deck.gl/extensions": "9.0.29",
47-
"@deck.gl/geo-layers": "9.0.29",
48-
"@deck.gl/google-maps": "9.0.29",
49-
"@deck.gl/json": "9.0.29",
50-
"@deck.gl/layers": "9.0.29",
51-
"@deck.gl/mapbox": "9.0.29",
52-
"@deck.gl/mesh-layers": "9.0.29",
53-
"@deck.gl/react": "9.0.29",
54-
"@deck.gl/widgets": "9.0.29",
42+
"@deck.gl/aggregation-layers": "9.0.30",
43+
"@deck.gl/arcgis": "9.0.30",
44+
"@deck.gl/carto": "9.0.30",
45+
"@deck.gl/core": "9.0.30",
46+
"@deck.gl/extensions": "9.0.30",
47+
"@deck.gl/geo-layers": "9.0.30",
48+
"@deck.gl/google-maps": "9.0.30",
49+
"@deck.gl/json": "9.0.30",
50+
"@deck.gl/layers": "9.0.30",
51+
"@deck.gl/mapbox": "9.0.30",
52+
"@deck.gl/mesh-layers": "9.0.30",
53+
"@deck.gl/react": "9.0.30",
54+
"@deck.gl/widgets": "9.0.30",
5555
"@loaders.gl/core": "^4.2.0",
5656
"@luma.gl/core": "~9.0.27",
5757
"@luma.gl/engine": "~9.0.27"

modules/mapbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Use deck.gl layers as custom mapbox-gl-js layers",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/mesh-layers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "deck.gl layers that loads 3D meshes or scene graphs",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "React Components for deck.gl",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Test utilities for deck.gl layers",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

modules/widgets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "UI widgets for deck.gl",
44
"license": "MIT",
55
"type": "module",
6-
"version": "9.0.29",
6+
"version": "9.0.30",
77
"publishConfig": {
88
"access": "public"
99
},

0 commit comments

Comments
 (0)