Skip to content

Commit b4203b8

Browse files
v4.3.2
1 parent 10a1db0 commit b4203b8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+356
-352
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG for loaders.gl
22

3+
## v4.3.2
4+
5+
- fix(i3s): fix for /sublayers paths (#3150)
6+
37
## v4.3.1
48

59
- Returning --slpk for backward compatibility (#3138)

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "2.0.0",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"npmClient": "yarn",
55
"exact": true,
66
"packages": [

modules/3d-tiles/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/3d-tiles",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "3D Tiles, an open standard for streaming massive heterogeneous 3D geospatial datasets.",
55
"license": "MIT",
66
"type": "module",
@@ -46,15 +46,15 @@
4646
"build-bundle-dev": "ocular-bundle ./bundle.ts --env=dev --output=dist/dist.dev.js"
4747
},
4848
"dependencies": {
49-
"@loaders.gl/compression": "4.3.1",
50-
"@loaders.gl/crypto": "4.3.1",
51-
"@loaders.gl/draco": "4.3.1",
52-
"@loaders.gl/gltf": "4.3.1",
53-
"@loaders.gl/images": "4.3.1",
54-
"@loaders.gl/loader-utils": "4.3.1",
55-
"@loaders.gl/math": "4.3.1",
56-
"@loaders.gl/tiles": "4.3.1",
57-
"@loaders.gl/zip": "4.3.1",
49+
"@loaders.gl/compression": "4.3.2",
50+
"@loaders.gl/crypto": "4.3.2",
51+
"@loaders.gl/draco": "4.3.2",
52+
"@loaders.gl/gltf": "4.3.2",
53+
"@loaders.gl/images": "4.3.2",
54+
"@loaders.gl/loader-utils": "4.3.2",
55+
"@loaders.gl/math": "4.3.2",
56+
"@loaders.gl/tiles": "4.3.2",
57+
"@loaders.gl/zip": "4.3.2",
5858
"@math.gl/core": "^4.1.0",
5959
"@math.gl/culling": "^4.1.0",
6060
"@math.gl/geospatial": "^4.1.0",

modules/arrow/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/arrow",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Simple columnar table loader for the Apache Arrow format",
55
"license": "MIT",
66
"type": "module",
@@ -57,11 +57,11 @@
5757
"build-worker2": "esbuild src/workers/arrow-worker.ts --bundle --outfile=dist/arrow-worker.js --platform=browser --external:{stream}"
5858
},
5959
"dependencies": {
60-
"@loaders.gl/gis": "4.3.1",
61-
"@loaders.gl/loader-utils": "4.3.1",
62-
"@loaders.gl/schema": "4.3.1",
63-
"@loaders.gl/wkt": "4.3.1",
64-
"@loaders.gl/worker-utils": "4.3.1",
60+
"@loaders.gl/gis": "4.3.2",
61+
"@loaders.gl/loader-utils": "4.3.2",
62+
"@loaders.gl/schema": "4.3.2",
63+
"@loaders.gl/wkt": "4.3.2",
64+
"@loaders.gl/worker-utils": "4.3.2",
6565
"@math.gl/polygon": "^4.1.0",
6666
"apache-arrow": ">= 15.0.0"
6767
},

modules/bson/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/bson",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Framework-independent loader for JSON and streaming JSON formats",
55
"license": "MIT",
66
"type": "module",
@@ -40,9 +40,9 @@
4040
"build-bundle-dev": "ocular-bundle ./bundle.ts --env=dev --output=dist/dist.dev.js"
4141
},
4242
"dependencies": {
43-
"@loaders.gl/gis": "4.3.1",
44-
"@loaders.gl/loader-utils": "4.3.1",
45-
"@loaders.gl/schema": "4.3.1",
43+
"@loaders.gl/gis": "4.3.2",
44+
"@loaders.gl/loader-utils": "4.3.2",
45+
"@loaders.gl/schema": "4.3.2",
4646
"@types/bson": "4.2.0",
4747
"bson": "4.2.0"
4848
},

modules/compression/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/compression",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Decompression and compression plugins for loaders.gl",
55
"license": "MIT",
66
"type": "module",
@@ -50,8 +50,8 @@
5050
"build-worker-node": "esbuild src/workers/compression-worker-node.ts --outfile=dist/compression-worker-node.js --platform=node --target=node16 --bundle --minify --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
5151
},
5252
"dependencies": {
53-
"@loaders.gl/loader-utils": "4.3.1",
54-
"@loaders.gl/worker-utils": "4.3.1",
53+
"@loaders.gl/loader-utils": "4.3.2",
54+
"@loaders.gl/worker-utils": "4.3.2",
5555
"@types/brotli": "^1.3.0",
5656
"@types/pako": "^1.0.1",
5757
"fflate": "0.7.4",

modules/copc/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@loaders.gl/copc",
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"description": "Framework-independent loader for the COPC format",
66
"license": "MIT",
77
"type": "module",
@@ -41,10 +41,10 @@
4141
"build-bundle": "# ocular-bundle ./src/index.ts"
4242
},
4343
"dependencies": {
44-
"@loaders.gl/images": "4.3.1",
45-
"@loaders.gl/loader-utils": "4.3.1",
46-
"@loaders.gl/mvt": "4.3.1",
47-
"@loaders.gl/schema": "4.3.1",
44+
"@loaders.gl/images": "4.3.2",
45+
"@loaders.gl/loader-utils": "4.3.2",
46+
"@loaders.gl/mvt": "4.3.2",
47+
"@loaders.gl/schema": "4.3.2",
4848
"copc": "0.0.6"
4949
},
5050
"gitHead": "c95a4ff72512668a93d9041ce8636bac09333fd5"

modules/core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/core",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "The core API for working with loaders.gl loaders and writers",
55
"license": "MIT",
66
"type": "module",
@@ -55,9 +55,9 @@
5555
"build-worker-node": "esbuild src/workers/null-worker.ts --outfile=dist/null-worker-node.js --bundle --platform=node --target=node16 --define:__VERSION__=\\\"$npm_package_version\\\""
5656
},
5757
"dependencies": {
58-
"@loaders.gl/loader-utils": "4.3.1",
59-
"@loaders.gl/schema": "4.3.1",
60-
"@loaders.gl/worker-utils": "4.3.1",
58+
"@loaders.gl/loader-utils": "4.3.2",
59+
"@loaders.gl/schema": "4.3.2",
60+
"@loaders.gl/worker-utils": "4.3.2",
6161
"@probe.gl/log": "^4.0.2"
6262
},
6363
"gitHead": "3213679d79e6ff2814d48fd3337acfa446c74099"

modules/crypto/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/crypto",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Cryptographic/hashing plugins for loaders.gl",
55
"license": "MIT",
66
"type": "module",
@@ -46,8 +46,8 @@
4646
"build-worker-node": "esbuild src/workers/crypto-worker-node.ts --outfile=dist/crypto-worker-node.js --platform=node --target=esnext,node16 --bundle --minify --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
4747
},
4848
"dependencies": {
49-
"@loaders.gl/loader-utils": "4.3.1",
50-
"@loaders.gl/worker-utils": "4.3.1",
49+
"@loaders.gl/loader-utils": "4.3.2",
50+
"@loaders.gl/worker-utils": "4.3.2",
5151
"@types/crypto-js": "^4.0.2"
5252
},
5353
"devDependencies": {

modules/csv/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/csv",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Framework-independent loader for CSV and DSV table formats",
55
"license": "MIT",
66
"type": "module",
@@ -44,8 +44,8 @@
4444
"build-bundle-dev": "ocular-bundle ./bundle.ts --env=dev --output=dist/dist.dev.js"
4545
},
4646
"dependencies": {
47-
"@loaders.gl/loader-utils": "4.3.1",
48-
"@loaders.gl/schema": "4.3.1",
47+
"@loaders.gl/loader-utils": "4.3.2",
48+
"@loaders.gl/schema": "4.3.2",
4949
"d3-dsv": "^1.2.0"
5050
},
5151
"peerDependencies": {

0 commit comments

Comments
 (0)