diff --git a/CHANGELOG.md b/CHANGELOG.md index cc622b3bd3..e06735e9ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # luma.gl CHANGELOG +### v9.0.0-alpha.34 + +- feat(core): Address feedback on BufferLayout (#1799) +- fix: interleaved stride and buffer/attribute name conflict (#1798) +- fix(engine): More model fixes (#1797) +- chore: Bump ocular-dev-tools (#1796) + +### v9.0.0-alpha.33 + +- feat(shadertools): Move multi-language shader support into ShaderAssembler (#1795) +- fix(engine): Various Model and GPUGeometry fixes (#1794) + +### v9.0.0-alpha.32 + +- feat(engine): Model cleanup (#1790) +- feat(core): Add UniformValue type for .setUniforms() etc (#1792) +- chore: Upgrade dependencies (#1793) + ## v9.0.0-alpha.31 - chore(core): Clean up buffer map @@ -12,6 +30,7 @@ - feat(webgl): Enforce WebGPU style topology (#1781) - chore(core): Rename api to core (#1783) - docs: website examples (#1782) + ## v9.0.0-alpha.29 - feat(webgl): Implement ShaderLayout.bufferLayout in webgl (#1780) diff --git a/dev-modules/babel-plugin-inline-webgl-constants/package.json b/dev-modules/babel-plugin-inline-webgl-constants/package.json index 5029d7ea23..9b3b1f3a4a 100644 --- a/dev-modules/babel-plugin-inline-webgl-constants/package.json +++ b/dev-modules/babel-plugin-inline-webgl-constants/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-inline-webgl-constants", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "description": "Babel plugin for replacing long gl constants with the shorter corresponding numbers", "type": "module", @@ -25,7 +25,7 @@ "require": "./dist/index.cjs" }, "dependencies": { - "@luma.gl/constants": "9.0.0-alpha.33" + "@luma.gl/constants": "9.0.0-alpha.34" }, "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" } diff --git a/dev-modules/babel-plugin-remove-glsl-comments/package.json b/dev-modules/babel-plugin-remove-glsl-comments/package.json index c8b5c3b0aa..73dd969404 100644 --- a/dev-modules/babel-plugin-remove-glsl-comments/package.json +++ b/dev-modules/babel-plugin-remove-glsl-comments/package.json @@ -1,7 +1,7 @@ { "name": "babel-plugin-remove-glsl-comments", "private": true, - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "Babel plugin for removing glsl comments", "license": "MIT", "repository": { diff --git a/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json b/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json index 9059760803..3e893df472 100644 --- a/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json +++ b/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json @@ -1,7 +1,7 @@ { "name": "eslint-plugin-luma-gl-custom-rules", "private": "true", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "main": "index.cjs", "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" } diff --git a/examples/api/animation/package.json b/examples/api/animation/package.json index 2735e9ad65..2d7160ae5c 100644 --- a/examples/api/animation/package.json +++ b/examples/api/animation/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-animation", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/api/cubemap/package.json b/examples/api/cubemap/package.json index d0e349fabd..dc980255de 100644 --- a/examples/api/cubemap/package.json +++ b/examples/api/cubemap/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-cubemap", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,10 +8,10 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/constants": "9.0.0-alpha.33", - "@luma.gl/core": "9.0.0-alpha.33", - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", + "@luma.gl/constants": "9.0.0-alpha.34", + "@luma.gl/core": "9.0.0-alpha.34", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/api/texture-3d/package.json b/examples/api/texture-3d/package.json index 4b03c85478..ee2e78f86b 100644 --- a/examples/api/texture-3d/package.json +++ b/examples/api/texture-3d/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-texture-3d", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/getting-started/hello-cube/package.json b/examples/getting-started/hello-cube/package.json index d89aac0857..0802c024ab 100644 --- a/examples/getting-started/hello-cube/package.json +++ b/examples/getting-started/hello-cube/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-hello-cube", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/getting-started/hello-instancing/package.json b/examples/getting-started/hello-instancing/package.json index 1b476d8cd4..448ca10f45 100644 --- a/examples/getting-started/hello-instancing/package.json +++ b/examples/getting-started/hello-instancing/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-hello-instancing-high", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33" + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34" }, "devDependencies": { "typescript": "^5.1.6", diff --git a/examples/getting-started/hello-triangle/package.json b/examples/getting-started/hello-triangle/package.json index c95abe72b8..bd0d93900e 100644 --- a/examples/getting-started/hello-triangle/package.json +++ b/examples/getting-started/hello-triangle/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-hello-triangle", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33" + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34" }, "devDependencies": { "typescript": "^5.1.6", diff --git a/examples/getting-started/lighting/package.json b/examples/getting-started/lighting/package.json index 02a080a948..0cf7ff2b8f 100644 --- a/examples/getting-started/lighting/package.json +++ b/examples/getting-started/lighting/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-lighting", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/getting-started/shader-hooks/package.json b/examples/getting-started/shader-hooks/package.json index f40bca806d..ae91f52355 100644 --- a/examples/getting-started/shader-hooks/package.json +++ b/examples/getting-started/shader-hooks/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-shader-hooks", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.33", - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33" + "@luma.gl/core": "9.0.0-alpha.34", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34" }, "devDependencies": { "typescript": "^5.1.6", diff --git a/examples/getting-started/shader-modules/package.json b/examples/getting-started/shader-modules/package.json index 04d8eaa2fc..d2c13e574c 100644 --- a/examples/getting-started/shader-modules/package.json +++ b/examples/getting-started/shader-modules/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-shader-modules", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33" + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34" }, "devDependencies": { "typescript": "^5.1.6", diff --git a/examples/showcase/instancing/package.json b/examples/showcase/instancing/package.json index e21c85fef6..0417690494 100644 --- a/examples/showcase/instancing/package.json +++ b/examples/showcase/instancing/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-instancing", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,10 +8,10 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.33", - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", + "@luma.gl/core": "9.0.0-alpha.34", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/showcase/persistence/package.json b/examples/showcase/persistence/package.json index 845b42bdac..6dc0b0bab0 100644 --- a/examples/showcase/persistence/package.json +++ b/examples/showcase/persistence/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-persistence", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.33", - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", + "@luma.gl/core": "9.0.0-alpha.34", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/computeboids/package.json b/examples/webgpu/computeboids/package.json index bda3f6ec61..701bcdf71e 100644 --- a/examples/webgpu/computeboids/package.json +++ b/examples/webgpu/computeboids/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-computeboids", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgpu": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgpu": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/hello-triangle/package.json b/examples/webgpu/hello-triangle/package.json index 96492bb530..0a6bfc6154 100644 --- a/examples/webgpu/hello-triangle/package.json +++ b/examples/webgpu/hello-triangle/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-hello-triangle", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgpu": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgpu": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/instanced-cubes/package.json b/examples/webgpu/instanced-cubes/package.json index 37162685fb..5dca92447a 100644 --- a/examples/webgpu/instanced-cubes/package.json +++ b/examples/webgpu/instanced-cubes/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-instance-uniforms", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgpu": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgpu": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/rotating-cube/package.json b/examples/webgpu/rotating-cube/package.json index 98032de5fb..9bd9516c6d 100644 --- a/examples/webgpu/rotating-cube/package.json +++ b/examples/webgpu/rotating-cube/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-rotating-cube", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgpu": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgpu": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/textured-cube/package.json b/examples/webgpu/textured-cube/package.json index 002eb40ecb..292c9ca6d5 100644 --- a/examples/webgpu/textured-cube/package.json +++ b/examples/webgpu/textured-cube/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-textured-cube", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgpu": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgpu": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/examples/webgpu/two-cubes/package.json b/examples/webgpu/two-cubes/package.json index f3c654e706..29e706e5b4 100644 --- a/examples/webgpu/two-cubes/package.json +++ b/examples/webgpu/two-cubes/package.json @@ -1,6 +1,6 @@ { "name": "luma.gl-examples-webgpu-two-cubes", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "private": true, "scripts": { "start": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgpu": "9.0.0-alpha.33", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgpu": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "devDependencies": { diff --git a/lerna.json b/lerna.json index 1eed8bdcb9..72b3a5f360 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.0.0", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "npmClient": "yarn", "useWorkspaces": true, "exact": true, diff --git a/modules/api-tests/package.json b/modules/api-tests/package.json index b5b6b5616a..70adffb13b 100644 --- a/modules/api-tests/package.json +++ b/modules/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/api-tests", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "luma.gl API", "license": "MIT", "type": "module", @@ -37,10 +37,10 @@ "pre-build": "npm run build-bundle && npm run build-bundle -- --env=dev" }, "devDependencies": { - "@luma.gl/core": "9.0.0-alpha.33", - "@luma.gl/test-utils": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", - "@luma.gl/webgpu": "9.0.0-alpha.33" + "@luma.gl/core": "9.0.0-alpha.34", + "@luma.gl/test-utils": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", + "@luma.gl/webgpu": "9.0.0-alpha.34" }, "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" } diff --git a/modules/constants/package.json b/modules/constants/package.json index 82c987d077..47720e576a 100644 --- a/modules/constants/package.json +++ b/modules/constants/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/constants", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "WebGL and WebGL2 constants", "type": "module", "license": "MIT", diff --git a/modules/core/package.json b/modules/core/package.json index 86daa79459..aff1907e41 100644 --- a/modules/core/package.json +++ b/modules/core/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/core", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "luma.gl API", "license": "MIT", "type": "module", diff --git a/modules/engine/package.json b/modules/engine/package.json index 065008775a..edd57828db 100644 --- a/modules/engine/package.json +++ b/modules/engine/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/engine", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "WebGL2 Components for High Performance Rendering and Computation", "type": "module", "license": "MIT", @@ -40,10 +40,10 @@ }, "dependencies": { "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "9.0.0-alpha.33", - "@luma.gl/core": "9.0.0-alpha.33", - "@luma.gl/shadertools": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", + "@luma.gl/constants": "9.0.0-alpha.34", + "@luma.gl/core": "9.0.0-alpha.34", + "@luma.gl/shadertools": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4", "@probe.gl/log": "^4.0.2", "@probe.gl/stats": "^4.0.2" diff --git a/modules/shadertools/package.json b/modules/shadertools/package.json index 3cba245beb..b39f6c1822 100644 --- a/modules/shadertools/package.json +++ b/modules/shadertools/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/shadertools", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "Shader module system for luma.gl", "type": "module", "license": "MIT", @@ -46,7 +46,7 @@ }, "dependencies": { "@babel/runtime": "^7.0.0", - "@luma.gl/core": "9.0.0-alpha.33", + "@luma.gl/core": "9.0.0-alpha.34", "@math.gl/core": "4.0.0-alpha.4" }, "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" diff --git a/modules/test-utils/package.json b/modules/test-utils/package.json index 224d1a943e..7fc195b16a 100644 --- a/modules/test-utils/package.json +++ b/modules/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/test-utils", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "Automated WebGL testing utilities with Puppeteer and image diffing", "type": "module", "license": "MIT", @@ -39,10 +39,10 @@ "pre-build": "echo test utils has no bundle" }, "dependencies": { - "@luma.gl/core": "9.0.0-alpha.33", - "@luma.gl/engine": "9.0.0-alpha.33", - "@luma.gl/webgl": "9.0.0-alpha.33", - "@luma.gl/webgpu": "9.0.0-alpha.33", + "@luma.gl/core": "9.0.0-alpha.34", + "@luma.gl/engine": "9.0.0-alpha.34", + "@luma.gl/webgl": "9.0.0-alpha.34", + "@luma.gl/webgpu": "9.0.0-alpha.34", "@probe.gl/env": "^4.0.2", "@types/gl": "^6.0.2", "gl": "^6.0.1" diff --git a/modules/webgl/package.json b/modules/webgl/package.json index 98562a8b4f..799b5c7321 100644 --- a/modules/webgl/package.json +++ b/modules/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/webgl", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "WebGL2 adapter for the luma.gl API", "type": "module", "license": "MIT", @@ -44,12 +44,12 @@ }, "dependencies": { "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "9.0.0-alpha.33", - "@luma.gl/core": "9.0.0-alpha.33", + "@luma.gl/constants": "9.0.0-alpha.34", + "@luma.gl/core": "9.0.0-alpha.34", "@probe.gl/env": "^4.0.2" }, "devDependencies": { - "@luma.gl/test-utils": "9.0.0-alpha.33" + "@luma.gl/test-utils": "9.0.0-alpha.34" }, "gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e" } diff --git a/modules/webgpu/package.json b/modules/webgpu/package.json index 366f637bf7..191e87860a 100644 --- a/modules/webgpu/package.json +++ b/modules/webgpu/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/webgpu", - "version": "9.0.0-alpha.33", + "version": "9.0.0-alpha.34", "description": "WebGPU adapter for the luma.gl API", "type": "module", "license": "MIT", @@ -37,7 +37,7 @@ }, "dependencies": { "@babel/runtime": "^7.0.0", - "@luma.gl/core": "9.0.0-alpha.33", + "@luma.gl/core": "9.0.0-alpha.34", "@probe.gl/env": "^4.0.2", "@webgpu/types": "^0.1.34" },