Skip to content

Commit a86fb15

Browse files
committed
v9.1.0-beta.1
1 parent 9b7f849 commit a86fb15

File tree

18 files changed

+84
-37
lines changed

18 files changed

+84
-37
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,53 @@ Each version should:
1717
Ref: http://keepachangelog.com/en/0.3.0/
1818
-->
1919

20+
## deck.gl v9.1
21+
22+
### deck.gl v9.1 Prereleases
23+
24+
#### deck.gl [9.1.0-beta.1] - Nov 21 2024
25+
26+
- Generic module props handling in Layer class (#9192)
27+
- Update license headers (#9191)
28+
- Upgrade mjolnir.js to v3 (#9144)
29+
- Remove updateModuleSettings from codebase (#9160)
30+
- Fix countItems in DataFilterExtension (#9158)
31+
- chore: Use WebGLDevice when using webgl-only APIs
32+
- Remove NaN uniform (#9174)
33+
- GPU Aggregation: miscellaneous clean up (#9142)
34+
- GPU Aggregation: Support *ScaleType and *Percentile props (#9130)
35+
- Aggregation UBO 2/2 (#9133)
36+
- Fix GPUAggregator on M chips (#9128)
37+
- Aggregation layers UBO (#9114)
38+
- GPU Aggregation (8/8): Remove legacy aggregator (#9100)
39+
- GPU Aggregation (7/8): ContourLayer (#9099)
40+
- GPU Aggregation (6/8): HexagonLayer (#9098)
41+
- GPU Aggregation (5/8): GridLayer (#9096)
42+
- refactor(json): Remove expression-eval dependency (#9070)
43+
- Update PBR code to use luma pbrMaterial (#9093)
44+
- Lighting UBO (#9074)
45+
- CARTO: HeatmapTileLayer full colorRange (#9068)
46+
- HeatmapLayer UBO (#9071)
47+
- shadow module UBO (#9054)
48+
- ShaderModule type update (#9044)
49+
- core module UBO (#9040)
50+
- carto module UBO (#9038)
51+
- HeatmapLayer fix to work with project UBO (#9037)
52+
- geo-layers UBO (#9036)
53+
- mesh-layers UBO (#9035)
54+
- refactor: Layers UBO (#9008)
55+
- Extensions UBOs (#9001)
56+
- DataFilterExtension UBOs (#8998)
57+
- Move ScatterplotLayer & BitmapLayer to UBOs (#8875)
58+
- GPU Aggregation (4/8): ScreenGridLayer (#8942)
59+
- GPU Aggregation (3/8): CPUAggregator (#8888)
60+
- GPU Aggregation (2/8): GPUAggregator (#8887)
61+
- GPU Aggregation (1/8): Aggregator and AggregationLayer (#8886)
62+
- Use UBOs in project module (#8782)
63+
- Remove WebGL-only triangle-fan topology (#8860)
64+
- feat(layers): Simplify ArcLayer (#8859)
65+
- chore: Remove internal texture parameters (v9.1) (#8851)
66+
2067
## deck.gl v9.0
2168

2269
### deck.gl v9.0 Prereleases

lerna.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "9.1.0-alpha.0",
2+
"version": "9.1.0-beta.1",
33
"npmClient": "yarn",
44
"packages": [
55
"modules/*"
66
]
7-
}
7+
}

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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
5+
"version": "9.1.0-beta.1",
66
"keywords": [
77
"jupyter",
88
"jupyterlab",
@@ -29,12 +29,12 @@
2929
"prepublishOnly": "npm run build"
3030
},
3131
"dependencies": {
32-
"@deck.gl/aggregation-layers": "9.1.0-alpha.0",
33-
"@deck.gl/geo-layers": "9.1.0-alpha.0",
34-
"@deck.gl/google-maps": "9.1.0-alpha.0",
35-
"@deck.gl/json": "9.1.0-alpha.0",
36-
"@deck.gl/layers": "9.1.0-alpha.0",
37-
"@deck.gl/mesh-layers": "9.1.0-alpha.0",
32+
"@deck.gl/aggregation-layers": "9.1.0-beta.1",
33+
"@deck.gl/geo-layers": "9.1.0-beta.1",
34+
"@deck.gl/google-maps": "9.1.0-beta.1",
35+
"@deck.gl/json": "9.1.0-beta.1",
36+
"@deck.gl/layers": "9.1.0-beta.1",
37+
"@deck.gl/mesh-layers": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
43-
"@deck.gl/arcgis": "9.1.0-alpha.0",
44-
"@deck.gl/carto": "9.1.0-alpha.0",
45-
"@deck.gl/core": "9.1.0-alpha.0",
46-
"@deck.gl/extensions": "9.1.0-alpha.0",
47-
"@deck.gl/geo-layers": "9.1.0-alpha.0",
48-
"@deck.gl/google-maps": "9.1.0-alpha.0",
49-
"@deck.gl/json": "9.1.0-alpha.0",
50-
"@deck.gl/layers": "9.1.0-alpha.0",
51-
"@deck.gl/mapbox": "9.1.0-alpha.0",
52-
"@deck.gl/mesh-layers": "9.1.0-alpha.0",
53-
"@deck.gl/react": "9.1.0-alpha.0",
54-
"@deck.gl/widgets": "9.1.0-alpha.0",
42+
"@deck.gl/aggregation-layers": "9.1.0-beta.1",
43+
"@deck.gl/arcgis": "9.1.0-beta.1",
44+
"@deck.gl/carto": "9.1.0-beta.1",
45+
"@deck.gl/core": "9.1.0-beta.1",
46+
"@deck.gl/extensions": "9.1.0-beta.1",
47+
"@deck.gl/geo-layers": "9.1.0-beta.1",
48+
"@deck.gl/google-maps": "9.1.0-beta.1",
49+
"@deck.gl/json": "9.1.0-beta.1",
50+
"@deck.gl/layers": "9.1.0-beta.1",
51+
"@deck.gl/mapbox": "9.1.0-beta.1",
52+
"@deck.gl/mesh-layers": "9.1.0-beta.1",
53+
"@deck.gl/react": "9.1.0-beta.1",
54+
"@deck.gl/widgets": "9.1.0-beta.1",
5555
"@loaders.gl/core": "^4.2.0",
5656
"@luma.gl/core": "^9.1.0-beta.11",
5757
"@luma.gl/engine": "^9.1.0-beta.11"

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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
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.1.0-alpha.0",
6+
"version": "9.1.0-beta.1",
77
"publishConfig": {
88
"access": "public"
99
},

0 commit comments

Comments
 (0)