Skip to content

Commit

Permalink
Version update 5.56.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Babylon.js Platform committed Apr 14, 2023
1 parent 3934267 commit 45e44bf
Show file tree
Hide file tree
Showing 32 changed files with 348 additions and 202 deletions.
154 changes: 142 additions & 12 deletions .build/changelog.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,133 @@
{
"fromTag": "5.54.0",
"fromTag": "5.55.0",
"changelog": {
"5.54.0": [
"5.56.0": [
{
"pr": "13707",
"title": "Fix scene recorder",
"description": "https://forum.babylonjs.com/t/inspector-delta-files-uncaught-typeerror-cannot-read-properties-of-undefined-reading-push/39640/2",
"pr": "13740",
"title": "Engine: Rollback changes because of perf problems",
"description": "Revert changes from #12952 because of performance problems.",
"author": {
"name": "Popov72",
"url": "https://github.com/Popov72"
},
"files": [
"packages/dev/core/src/Engines/WebGL/webGLPipelineContext.ts",
"packages/dev/core/src/Materials/effect.ts"
],
"tags": [
"rendering engine"
]
},
{
"pr": "13738",
"title": "Fix Imports",
"description": "Fix https://github.com/BabylonJS/Babylon.js/pull/13624#issuecomment-1506874467",
"author": {
"name": "sebavan",
"url": "https://github.com/sebavan"
},
"files": [
"packages/dev/core/src/Misc/sceneRecorder.ts"
"packages/dev/core/src/Physics/v2/physicsBody.ts"
],
"tags": [
"bug",
"inspector"
"physics"
]
},
{
"pr": "13706",
"title": "Make trailmesh diameter public",
"description": "https://forum.babylonjs.com/t/how-do-i-access-and-change-the-thickness-of-trailmesh/39623/3",
"pr": "13737",
"title": "HDRFiltering: Fix final cube texture not having the right type",
"description": "[This PG](https://playground.babylonjs.com/#064AUB#71) generates some warnings:\r\n\r\n![image](https://user-images.githubusercontent.com/4152247/231767335-648c3450-d7b4-4dfa-8493-b8e67a49278a.png)\r\n\r\nand the spherical polynomials are not computed correctly because of the bug.",
"author": {
"name": "Popov72",
"url": "https://github.com/Popov72"
},
"files": [
"packages/dev/core/src/Materials/Textures/Filtering/hdrFiltering.ts"
],
"tags": [
"bug",
"rendering engine"
]
},
{
"pr": "13739",
"title": "CascadedShadowMaps: Allows setting min and max number of cascades",
"description": null,
"author": {
"name": "Popov72",
"url": "https://github.com/Popov72"
},
"files": [
"packages/dev/core/src/Lights/Shadows/cascadedShadowGenerator.ts"
],
"tags": [
"enhancement",
"shadows"
]
},
{
"pr": "13734",
"title": "Highlight layer: Fix wrong stencil state",
"description": "See https://forum.babylonjs.com/t/stencil-buffer-set-wrong-in-highlightlayer-excluded-meshes-after-render/39839",
"author": {
"name": "Popov72",
"url": "https://github.com/Popov72"
},
"files": [
"packages/dev/core/src/Layers/highlightLayer.ts"
],
"tags": [
"bug",
"rendering engine"
]
},
{
"pr": "13736",
"title": "Post Process: Add a property to clear the buffer even when alpha blending is enabled",
"description": "See https://forum.babylonjs.com/t/adding-a-background-image-that-is-not-affected-by-the-default-rendering-pipeline-post-processes/34494/5",
"author": {
"name": "Popov72",
"url": "https://github.com/Popov72"
},
"files": [
"packages/dev/core/src/PostProcesses/postProcess.ts"
],
"tags": [
"new feature",
"post-process"
]
},
{
"pr": "13735",
"title": "fix import path",
"description": "https://forum.babylonjs.com/t/gltf-serializer-broken/39837",
"author": {
"name": "sebavan",
"url": "https://github.com/sebavan"
},
"files": [
"packages/dev/core/src/Meshes/trailMesh.ts"
"packages/dev/serializers/src/glTF/2.0/glTFSerializer.ts"
],
"tags": [
"bug",
"exporters"
]
},
{
"pr": "13733",
"title": "Sprite manager: Force the sampling mode in pixel perfect mode",
"description": "See https://forum.babylonjs.com/t/sprite-pixel-art-artifact-issue/39123/13",
"author": {
"name": "Popov72",
"url": "https://github.com/Popov72"
},
"files": [
"packages/dev/core/src/Sprites/spriteManager.ts"
],
"tags": [
"enhancement",
"rendering engine"
"sprite"
]
}
],
Expand Down Expand Up @@ -317,6 +413,40 @@
]
}
],
"5.54.0": [
{
"pr": "13707",
"title": "Fix scene recorder",
"description": "https://forum.babylonjs.com/t/inspector-delta-files-uncaught-typeerror-cannot-read-properties-of-undefined-reading-push/39640/2",
"author": {
"name": "sebavan",
"url": "https://github.com/sebavan"
},
"files": [
"packages/dev/core/src/Misc/sceneRecorder.ts"
],
"tags": [
"bug",
"inspector"
]
},
{
"pr": "13706",
"title": "Make trailmesh diameter public",
"description": "https://forum.babylonjs.com/t/how-do-i-access-and-change-the-thickness-of-trailmesh/39623/3",
"author": {
"name": "sebavan",
"url": "https://github.com/sebavan"
},
"files": [
"packages/dev/core/src/Meshes/trailMesh.ts"
],
"tags": [
"enhancement",
"rendering engine"
]
}
],
"5.53.1": [
{
"pr": "13705",
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 5.56.0

### Core

- Engine: Rollback changes because of perf problems - by [Popov72](https://github.com/Popov72) ([#13740](https://github.com/BabylonJS/Babylon.js/pull/13740))
- Fix Imports - [_Bug Fix_] by [sebavan](https://github.com/sebavan) ([#13738](https://github.com/BabylonJS/Babylon.js/pull/13738))
- HDRFiltering: Fix final cube texture not having the right type - [_Bug Fix_] by [Popov72](https://github.com/Popov72) ([#13737](https://github.com/BabylonJS/Babylon.js/pull/13737))
- CascadedShadowMaps: Allows setting min and max number of cascades - by [Popov72](https://github.com/Popov72) ([#13739](https://github.com/BabylonJS/Babylon.js/pull/13739))
- Highlight layer: Fix wrong stencil state - [_Bug Fix_] by [Popov72](https://github.com/Popov72) ([#13734](https://github.com/BabylonJS/Babylon.js/pull/13734))
- Post Process: Add a property to clear the buffer even when alpha blending is enabled - [_New Feature_] by [Popov72](https://github.com/Popov72) ([#13736](https://github.com/BabylonJS/Babylon.js/pull/13736))
- Sprite manager: Force the sampling mode in pixel perfect mode - by [Popov72](https://github.com/Popov72) ([#13733](https://github.com/BabylonJS/Babylon.js/pull/13733))

### Serializers

- fix import path - [_Bug Fix_] by [sebavan](https://github.com/sebavan) ([#13735](https://github.com/BabylonJS/Babylon.js/pull/13735))

## 5.55.0

### Core
Expand Down
Loading

0 comments on commit 45e44bf

Please sign in to comment.