diff --git a/CHANGELOG.md b/CHANGELOG.md index 561637eeb2..dcb8b26dc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ Major new release that includes WebGPU support +### 9.1.0-alpha.17 + +- chore: Separate CI step for website build (#2218) +- chore(webgl): Clean up WebGLTexture implementation (#2213) +- chore: Refactor texture info table (#2217) +- fix(engine): TextureTransform.destroy() should remove resources (#2216) +- fix(core, webgl): Fix clearDepth (#2214) +- chore: Test if master is broken (#2215) +- shadertools: Reinstate old picking shader (#2212) +- fix(examples): Improve postprocessing example (#2209) +- feat(shadertools): PBRMaterial UBO (#2207) +- shadertools: Lighting module UBO (#2206) +- fix(gltf): Prevent GLTFInstantiator from mutating its input (#2203) +- ShaderModule type improvement (#2194) +- test: Add test for texture creation(3d,r32float) (#2202) +- Create security policy (#2205) +- fix(engine): Prevent recursion in RAF polyfills (#2204) +- fix(webgl): Better error messages when device creation fails (#2201) +- feat(core): Option to not wait for page load (#2200) +- fix(core): Allow webgl 1,3 component unorm8 attributes (#2196) +- fix(webgl): Do not enable mipmap filtering by default (#2193) +- feat(engine): Index-based picking manager, support for multiple render targets (#2189) + ### 9.1.0-alpha.16 - chore(core): DeviceProps.createCanvasContext: CanvasContextProps | true (#2188) diff --git a/lerna.json b/lerna.json index 9a09c3263b..f1996c8a0b 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "npmClient": "yarn", "exact": true, "packages": [ diff --git a/modules/constants/package.json b/modules/constants/package.json index 3ffd9b6631..1562d56654 100644 --- a/modules/constants/package.json +++ b/modules/constants/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/constants", - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "description": "WebGL2 constants", "type": "module", "license": "MIT", diff --git a/modules/core/package.json b/modules/core/package.json index 7078b92d65..8fcef39873 100644 --- a/modules/core/package.json +++ b/modules/core/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/core", - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "description": "The luma.gl core Device API", "license": "MIT", "type": "module", diff --git a/modules/engine/package.json b/modules/engine/package.json index df7fd45a3f..61bc671229 100644 --- a/modules/engine/package.json +++ b/modules/engine/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/engine", - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "description": "3D Engine Components for luma.gl", "type": "module", "license": "MIT", diff --git a/modules/gltf/package.json b/modules/gltf/package.json index a886803823..46ade612f5 100644 --- a/modules/gltf/package.json +++ b/modules/gltf/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/gltf", - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "description": "glTF support for luma.gl", "type": "module", "license": "MIT", diff --git a/modules/shadertools/package.json b/modules/shadertools/package.json index a61140b0a7..6d8b0daf3c 100644 --- a/modules/shadertools/package.json +++ b/modules/shadertools/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/shadertools", - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "description": "Shader module system for luma.gl", "type": "module", "license": "MIT", diff --git a/modules/test-utils/package.json b/modules/test-utils/package.json index 0cf3ce4f03..4909b82c83 100644 --- a/modules/test-utils/package.json +++ b/modules/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/test-utils", - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "description": "Automated WebGL testing utilities with Puppeteer and image diffing", "type": "module", "license": "MIT", diff --git a/modules/webgl/package.json b/modules/webgl/package.json index 56ef3d2213..2c76a6eadb 100644 --- a/modules/webgl/package.json +++ b/modules/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/webgl", - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "description": "WebGL2 adapter for the luma.gl core API", "type": "module", "license": "MIT", @@ -43,7 +43,7 @@ "@luma.gl/core": "9.1.0-alpha.16" }, "dependencies": { - "@luma.gl/constants": "9.1.0-alpha.16", + "@luma.gl/constants": "9.1.0-alpha.17", "@math.gl/types": "4.1.0-alpha.3", "@probe.gl/env": "^4.0.8" }, diff --git a/modules/webgpu/package.json b/modules/webgpu/package.json index a00d5c675b..d9b0367d56 100644 --- a/modules/webgpu/package.json +++ b/modules/webgpu/package.json @@ -1,6 +1,6 @@ { "name": "@luma.gl/webgpu", - "version": "9.1.0-alpha.16", + "version": "9.1.0-alpha.17", "description": "WebGPU adapter for the luma.gl core API", "type": "module", "license": "MIT", diff --git a/yarn.lock b/yarn.lock index 64afecba5b..4e747629a7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2284,7 +2284,7 @@ __metadata: languageName: node linkType: hard -"@luma.gl/constants@npm:9.1.0-alpha.16, @luma.gl/constants@workspace:modules/constants": +"@luma.gl/constants@npm:9.1.0-alpha.17, @luma.gl/constants@workspace:modules/constants": version: 0.0.0-use.local resolution: "@luma.gl/constants@workspace:modules/constants" languageName: unknown @@ -2361,7 +2361,7 @@ __metadata: version: 0.0.0-use.local resolution: "@luma.gl/webgl@workspace:modules/webgl" dependencies: - "@luma.gl/constants": "npm:9.1.0-alpha.16" + "@luma.gl/constants": "npm:9.1.0-alpha.17" "@math.gl/types": "npm:4.1.0-alpha.3" "@probe.gl/env": "npm:^4.0.8" peerDependencies: