Skip to content

Commit

Permalink
v7.4.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoji Chen committed Oct 5, 2019
1 parent 5af2287 commit 7ae141f
Show file tree
Hide file tree
Showing 17 changed files with 98 additions and 72 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Expand Up @@ -17,6 +17,32 @@ Each version should:
Ref: http://keepachangelog.com/en/0.3.0/
-->

## deck.gl v7.4

### deck.gl v7.4 Prereleases

#### deck.gl [v7.4.0-alpha.2] - Oct 4 2019

- TileLayer cache rendered sub layers (#3730)
- HeatmapLyaer: set point size to address ANGLE bug (#3732)
- clean up render passes (#3733)
- GPUGridAggregator: enforce point size to workaround ANGLE bug (#3738)
- Add `pass` parameter to layerFilter (#3739)
- Improve auto-highlight related perf (#3740)
- Effects system clean up (#3743)
- Fix 3d picking projection with camera offset (#3749)
- Support rendering to custom framebuffer (#3742)

#### deck.gl [v7.4.0-alpha.1] - Oct 2 2019

- delete deprecated buffer props (#3651)
- Consolidate picking injection (#3720)
- Picking 3D point (#3721)
- Add domain method to scales (#3631)
- Integrate Quantile and Ordinal scaling (#3609)
- Clean up picking code (#3724)


## deck.gl v7.3

### deck.gl v7.3 Prereleases
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"lerna": "2.0.0",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"npmClient": "yarn",
"useWorkspaces": true,
"packages": [
Expand Down
2 changes: 1 addition & 1 deletion modules/aggregation-layers/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/aggregation-layers",
"description": "deck.gl layers that aggregate the input data into alternative representations",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
6 changes: 3 additions & 3 deletions modules/core/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/core",
"description": "deck.gl core library",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -32,8 +32,8 @@
"dependencies": {
"@loaders.gl/core": "^1.3.3",
"@loaders.gl/images": "^1.3.3",
"@luma.gl/addons": "^7.4.0-alpha.1",
"@luma.gl/core": "^7.4.0-alpha.1",
"@luma.gl/addons": "^7.4.0-alpha.2",
"@luma.gl/core": "^7.4.0-alpha.2",
"gl-matrix": "^3.0.0",
"math.gl": "^3.0.0",
"mjolnir.js": "^2.1.2",
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/extensions",
"description": "Plug-and-play functionalities for deck.gl layers",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion modules/geo-layers/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/geo-layers",
"description": "deck.gl layers supporting geospatial use cases and GIS formats",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion modules/google-maps/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/google-maps",
"description": "Use deck.gl as a custom Google Maps overlay",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion modules/json/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/json",
"description": "JSON format rendering components for deck.gl",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion modules/jupyter-widget/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/jupyter-widget",
"description": "Jupyter widget for rendering deck.gl in a Jupyter notebook",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"keywords": [
"jupyter",
"jupyterlab",
Expand Down
2 changes: 1 addition & 1 deletion modules/layers/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/layers",
"description": "deck.gl core layers",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
22 changes: 11 additions & 11 deletions modules/main/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "deck.gl",
"description": "A suite of 3D-enabled data visualization overlays, suitable for react-map-gl",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"keywords": [
"webgl",
"visualization",
Expand All @@ -28,15 +28,15 @@
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env.dev"
},
"dependencies": {
"@deck.gl/aggregation-layers": "7.4.0-alpha.1",
"@deck.gl/core": "7.4.0-alpha.1",
"@deck.gl/extensions": "7.4.0-alpha.1",
"@deck.gl/geo-layers": "7.4.0-alpha.1",
"@deck.gl/google-maps": "7.4.0-alpha.1",
"@deck.gl/json": "7.4.0-alpha.1",
"@deck.gl/layers": "7.4.0-alpha.1",
"@deck.gl/mapbox": "7.4.0-alpha.1",
"@deck.gl/mesh-layers": "7.4.0-alpha.1",
"@deck.gl/react": "7.4.0-alpha.1"
"@deck.gl/aggregation-layers": "7.4.0-alpha.2",
"@deck.gl/core": "7.4.0-alpha.2",
"@deck.gl/extensions": "7.4.0-alpha.2",
"@deck.gl/geo-layers": "7.4.0-alpha.2",
"@deck.gl/google-maps": "7.4.0-alpha.2",
"@deck.gl/json": "7.4.0-alpha.2",
"@deck.gl/layers": "7.4.0-alpha.2",
"@deck.gl/mapbox": "7.4.0-alpha.2",
"@deck.gl/mesh-layers": "7.4.0-alpha.2",
"@deck.gl/react": "7.4.0-alpha.2"
}
}
2 changes: 1 addition & 1 deletion modules/mapbox/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/mapbox",
"description": "Use deck.gl layers as custom mapbox-gl-js layers",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
4 changes: 2 additions & 2 deletions modules/mesh-layers/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/mesh-layers",
"description": "deck.gl layers that loads 3D meshes or scene graphs",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -33,6 +33,6 @@
"@deck.gl/core": "^7.3.0-beta"
},
"dependencies": {
"@luma.gl/addons": "^7.4.0-alpha.1"
"@luma.gl/addons": "^7.4.0-alpha.2"
}
}
2 changes: 1 addition & 1 deletion modules/react/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/react",
"description": "React Components for deck.gl",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion modules/test-utils/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@deck.gl/test-utils",
"description": "Test utilities for deck.gl layers",
"license": "MIT",
"version": "7.4.0-alpha.1",
"version": "7.4.0-alpha.2",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -41,7 +41,7 @@
"jsdom": false
},
"devDependencies": {
"@luma.gl/effects": "^7.4.0-alpha.1",
"@luma.gl/effects": "^7.4.0-alpha.2",
"@probe.gl/bench": "^3.1.1",
"@probe.gl/test-utils": "^3.1.1",
"@loaders.gl/csv": "^1.3.3",
Expand Down
88 changes: 44 additions & 44 deletions yarn.lock
Expand Up @@ -1591,81 +1591,81 @@
stream-to-async-iterator "^0.2.0"
through "^2.3.8"

"@luma.gl/addons@^7.4.0-alpha.1":
version "7.4.0-alpha.1"
resolved "https://registry.yarnpkg.com/@luma.gl/addons/-/addons-7.4.0-alpha.1.tgz#7f08fb04b9bc8848ede1f83eda0e7a3fdebc6f0a"
integrity sha512-xg5h7r9z97oAgVH18QT7CVF13M4luGHvb9ZGkO3+Q4zVrMvRcwmTnav7+4cl6jem0unIw/47vwbbRGSkr8i/Dg==
"@luma.gl/addons@^7.4.0-alpha.2":
version "7.4.0-alpha.2"
resolved "https://registry.yarnpkg.com/@luma.gl/addons/-/addons-7.4.0-alpha.2.tgz#44567363f292674527ed04d828299cb0d80ee508"
integrity sha512-g7VtxboI7WvxpOzWANxl/hxIPxpPC2xqHxODhaHMVYtC4BnCTUM59jRsVDKHza4T0xMT5woeeRl7uqZnlw1tlQ==
dependencies:
"@loaders.gl/gltf" "^1.3.0"
"@loaders.gl/images" "^1.3.0"
"@luma.gl/constants" "7.4.0-alpha.1"
"@luma.gl/constants" "7.4.0-alpha.2"
math.gl "^3.0.0"

"@luma.gl/constants@7.4.0-alpha.1":
version "7.4.0-alpha.1"
resolved "https://registry.yarnpkg.com/@luma.gl/constants/-/constants-7.4.0-alpha.1.tgz#cc5c98987dfb9b962a79327abfca88a9843d5125"
integrity sha512-NeNwcjeSImPHVUTwkMWdyDKZ7jmVQ+eqM5DXPR7MgmQfKwVduNEzFVmIltuTWqQAD+MgUoYuBrBJvrb+eTWUtg==
"@luma.gl/constants@7.4.0-alpha.2":
version "7.4.0-alpha.2"
resolved "https://registry.yarnpkg.com/@luma.gl/constants/-/constants-7.4.0-alpha.2.tgz#b18ca80c713919e8c98453b763fb5872edfc365a"
integrity sha512-syqbLK/u1dmTgtF7w69nLp/D0zT/F2WVeQjfE8yUWcnO7KCfmK/aGAI2qhpawhX3qlsZAPcneayf8SFxQE4IVA==

"@luma.gl/constants@^7.3.0-alpha.1":
version "7.3.0-alpha.8"
resolved "https://registry.yarnpkg.com/@luma.gl/constants/-/constants-7.3.0-alpha.8.tgz#900dd18a157e9c9a0886aba6f79fae80006c2bc4"
integrity sha512-MjEBfWCqYrYREMHh+XQneJlYDK+Z5Uh7cvodUhugaWRKoVbQI884ISAt4+6tWJj5DXQC/k8V1ypa+Hd3hY+oBw==

"@luma.gl/core@^7.4.0-alpha.1":
version "7.4.0-alpha.1"
resolved "https://registry.yarnpkg.com/@luma.gl/core/-/core-7.4.0-alpha.1.tgz#4628465ffc25bf01ba5dfc7cb379747e9db70dbf"
integrity sha512-Ttl/IDFWnd3fP7yyRnXwBqXYX0E839rf66Q9CB2Z0eJzDDJhyzlADop4nOgocPJOf4ls7qgGujeDQfazFrljGQ==
"@luma.gl/core@^7.4.0-alpha.2":
version "7.4.0-alpha.2"
resolved "https://registry.yarnpkg.com/@luma.gl/core/-/core-7.4.0-alpha.2.tgz#e16fb1eec4fbbf67c6efacf87b87907dda1f0b9e"
integrity sha512-AorD96ydFwV3zb7yJwHq2ew3Qb+OLMKd4SH1A4HZiRmJda4mfQFwHHeoQMRXEm3wQAHaRIW3vMc0bijDaFBzlA==
dependencies:
"@babel/runtime" "^7.0.0"
"@luma.gl/constants" "7.4.0-alpha.1"
"@luma.gl/shadertools" "7.4.0-alpha.1"
"@luma.gl/webgl" "7.4.0-alpha.1"
"@luma.gl/webgl-state-tracker" "7.4.0-alpha.1"
"@luma.gl/webgl2-polyfill" "7.4.0-alpha.1"
"@luma.gl/constants" "7.4.0-alpha.2"
"@luma.gl/shadertools" "7.4.0-alpha.2"
"@luma.gl/webgl" "7.4.0-alpha.2"
"@luma.gl/webgl-state-tracker" "7.4.0-alpha.2"
"@luma.gl/webgl2-polyfill" "7.4.0-alpha.2"
math.gl "^3.0.0"
probe.gl "^3.1.1"
seer "^0.2.4"

"@luma.gl/effects@^7.4.0-alpha.1":
version "7.4.0-alpha.1"
resolved "https://registry.yarnpkg.com/@luma.gl/effects/-/effects-7.4.0-alpha.1.tgz#a6bcf28a4d8715fd37743929d3d7ca09ee777a4c"
integrity sha512-qmQt+O2Memh7VLBVLgzfIJeL0ehbzdemb1Gabs1sGVopf+qTrZT9hvTmFGttxuCEiR6LcJCZDpJW/KeHTZsezA==
"@luma.gl/effects@^7.4.0-alpha.2":
version "7.4.0-alpha.2"
resolved "https://registry.yarnpkg.com/@luma.gl/effects/-/effects-7.4.0-alpha.2.tgz#7d14454f7dfadec253ec02ec69cef7a9d5561b06"
integrity sha512-72yC4Acl8ynREr9VOCnuEsI3xAgEj5cMYA0pLminmj4iZtBAQ551cz/wOKVHWodMBIooppLxA3cBvzI0omv2HA==
dependencies:
"@luma.gl/constants" "7.4.0-alpha.1"
"@luma.gl/constants" "7.4.0-alpha.2"

"@luma.gl/shadertools@7.4.0-alpha.1":
version "7.4.0-alpha.1"
resolved "https://registry.yarnpkg.com/@luma.gl/shadertools/-/shadertools-7.4.0-alpha.1.tgz#8cf969f511549bbdf0d82aeb5f38c615e4b357e1"
integrity sha512-3OIS1YFAat43511ulwIJSS1DfGXMPBqNl4kpMLYnR/CkLs9r1GiK9288SNwrf+NBKlS3zvcXsDx8xckuIYKjwg==
"@luma.gl/shadertools@7.4.0-alpha.2":
version "7.4.0-alpha.2"
resolved "https://registry.yarnpkg.com/@luma.gl/shadertools/-/shadertools-7.4.0-alpha.2.tgz#7f29c5211a212594f27bcf1bece22924ce3cb370"
integrity sha512-SPwTjltCPFv59FXzxPwrilZt2SlBNrZS0HvTk+YjJzeR9Jq8dLx7YUldUS2LZZhdKK90+R1cnVpL1QmfQW7E3A==
dependencies:
"@babel/runtime" "^7.0.0"
math.gl "^3.0.0"

"@luma.gl/webgl-state-tracker@7.4.0-alpha.1":
version "7.4.0-alpha.1"
resolved "https://registry.yarnpkg.com/@luma.gl/webgl-state-tracker/-/webgl-state-tracker-7.4.0-alpha.1.tgz#9a9c40cb5cb563caf86a1b85c38831ee21d66db2"
integrity sha512-msTGr3aYf0xev9Z/DBzxeCcEaT6YP3EP8SxqxTSrsNGUe+TEfWfAbfoHfwJDkbYTL0lbS4oqSNn6qX6X6la7qg==
"@luma.gl/webgl-state-tracker@7.4.0-alpha.2":
version "7.4.0-alpha.2"
resolved "https://registry.yarnpkg.com/@luma.gl/webgl-state-tracker/-/webgl-state-tracker-7.4.0-alpha.2.tgz#516055072d1bb737edd0c78d7bae24f8c3b67bcf"
integrity sha512-T6qMWFVYNiYB7leh4cfZ7QE5SPcWER5rCKYTK2OiAgc3EMqThLc8/QmCmjJfAvMDt2D+mpHsB6o1SeYmv8EUcA==
dependencies:
"@babel/runtime" "^7.0.0"
"@luma.gl/constants" "7.4.0-alpha.1"
"@luma.gl/constants" "7.4.0-alpha.2"

"@luma.gl/webgl2-polyfill@7.4.0-alpha.1":
version "7.4.0-alpha.1"
resolved "https://registry.yarnpkg.com/@luma.gl/webgl2-polyfill/-/webgl2-polyfill-7.4.0-alpha.1.tgz#7b900f9e413979f09f9fe5af42e6a7808a2cda33"
integrity sha512-o2pvBpnLw1rmPzrjWVrY48K+ttfmULs3R5fPoulqFg8QtaMbcBWxczsIBf2km+jTqFTJOjWNjowxhrSaefs1aw==
"@luma.gl/webgl2-polyfill@7.4.0-alpha.2":
version "7.4.0-alpha.2"
resolved "https://registry.yarnpkg.com/@luma.gl/webgl2-polyfill/-/webgl2-polyfill-7.4.0-alpha.2.tgz#208429027de0e1e39d17c69334d5abdb3cd1851c"
integrity sha512-MHGfsuGweqSOGZPshsquCQVmuoU7ytHjnCN8luLw+1tPOYHKZzWR/yif9GMnIH0jRx5cwjBnnazh7+MY1dgVIg==
dependencies:
"@babel/runtime" "^7.0.0"
"@luma.gl/constants" "7.4.0-alpha.1"
"@luma.gl/constants" "7.4.0-alpha.2"

"@luma.gl/webgl@7.4.0-alpha.1":
version "7.4.0-alpha.1"
resolved "https://registry.yarnpkg.com/@luma.gl/webgl/-/webgl-7.4.0-alpha.1.tgz#bb397f6ffd6f4e2be8bef21ed80ac9a777b12e6e"
integrity sha512-0KOXsoXYvAwna3QSCCxX0VLTay1mI6nzOl2wih9mruILBoN3A8RR4cTZcYIqbGmTw+U0a2VMTSeLX/VwwFg/Uw==
"@luma.gl/webgl@7.4.0-alpha.2":
version "7.4.0-alpha.2"
resolved "https://registry.yarnpkg.com/@luma.gl/webgl/-/webgl-7.4.0-alpha.2.tgz#ab3675369b9df3cbd8d13c20334610c82d63ef25"
integrity sha512-UnKJTG35C2SO/046Mh6adIEbGXgb93xtfRMwOXquCDkbidhNp3pwpZEbVzSloikJclwfySSbWCJqOo6DLZ8BfQ==
dependencies:
"@babel/runtime" "^7.0.0"
"@luma.gl/constants" "7.4.0-alpha.1"
"@luma.gl/webgl-state-tracker" "7.4.0-alpha.1"
"@luma.gl/webgl2-polyfill" "7.4.0-alpha.1"
"@luma.gl/constants" "7.4.0-alpha.2"
"@luma.gl/webgl-state-tracker" "7.4.0-alpha.2"
"@luma.gl/webgl2-polyfill" "7.4.0-alpha.2"
probe.gl "^3.1.1"

"@mapbox/geojson-area@0.2.2":
Expand Down

0 comments on commit 7ae141f

Please sign in to comment.