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

+4
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

+1-1
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

+10-10
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

+6-6
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

+4-4
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

+3-3
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

+5-5
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

+4-4
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

+3-3
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

+3-3
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": {

modules/draco/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/draco",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Framework-independent loader and writer for Draco compressed meshes and point clouds",
55
"license": "MIT",
66
"type": "module",
@@ -57,9 +57,9 @@
5757
"build-writer-worker-node": "esbuild src/workers/draco-writer-worker-node.ts --outfile=dist/draco-writer-worker-node.js --target=node16 --platform=node --bundle --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
5858
},
5959
"dependencies": {
60-
"@loaders.gl/loader-utils": "4.3.1",
61-
"@loaders.gl/schema": "4.3.1",
62-
"@loaders.gl/worker-utils": "4.3.1",
60+
"@loaders.gl/loader-utils": "4.3.2",
61+
"@loaders.gl/schema": "4.3.2",
62+
"@loaders.gl/worker-utils": "4.3.2",
6363
"draco3d": "1.5.7"
6464
},
6565
"devDependencies": {

modules/excel/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/excel",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Framework-independent loader for Excel files",
55
"license": "MIT",
66
"type": "module",
@@ -44,8 +44,8 @@
4444
"build-worker": "esbuild src/workers/excel-worker.ts --bundle --outfile=dist/excel-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
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
"xlsx": "^0.18.5"
5050
},
5151
"peerDependencies": {

modules/flatgeobuf/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@loaders.gl/flatgeobuf",
33
"description": "Loader for FlatGeobuf",
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"license": "MIT",
66
"type": "module",
77
"publishConfig": {
@@ -44,9 +44,9 @@
4444
"build-worker": "esbuild src/workers/flatgeobuf-worker.ts --bundle --outfile=dist/flatgeobuf-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
4545
},
4646
"dependencies": {
47-
"@loaders.gl/gis": "4.3.1",
48-
"@loaders.gl/loader-utils": "4.3.1",
49-
"@loaders.gl/schema": "4.3.1",
47+
"@loaders.gl/gis": "4.3.2",
48+
"@loaders.gl/loader-utils": "4.3.2",
49+
"@loaders.gl/schema": "4.3.2",
5050
"@math.gl/proj4": "^4.1.0",
5151
"flatgeobuf": "3.27.2"
5252
},

modules/geopackage/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@loaders.gl/geopackage",
33
"description": "GeoPackage data loaders",
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"license": "MIT",
66
"type": "module",
77
"publishConfig": {
@@ -43,10 +43,10 @@
4343
"build-worker": "# esbuild src/workers/geopackage-worker.ts --bundle --outfile=dist/geopackage-worker.js --external:{util,fs,path} --define:__VERSION__=\\\"$npm_package_version\\\""
4444
},
4545
"dependencies": {
46-
"@loaders.gl/gis": "4.3.1",
47-
"@loaders.gl/loader-utils": "4.3.1",
48-
"@loaders.gl/schema": "4.3.1",
49-
"@loaders.gl/wkt": "4.3.1",
46+
"@loaders.gl/gis": "4.3.2",
47+
"@loaders.gl/loader-utils": "4.3.2",
48+
"@loaders.gl/schema": "4.3.2",
49+
"@loaders.gl/wkt": "4.3.2",
5050
"@math.gl/proj4": "^4.1.0",
5151
"@types/sql.js": "^1.4.5",
5252
"fs": "^0.0.1-security",

modules/geotiff/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/geotiff",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Framework-independent loaders for tiff and geotiff",
55
"license": "MIT",
66
"type": "module",
@@ -46,7 +46,7 @@
4646
"geotiff": "ilan-gold/geotiff.js#ilan-gold/viv_094"
4747
},
4848
"dependencies": {
49-
"@loaders.gl/loader-utils": "4.3.1",
49+
"@loaders.gl/loader-utils": "4.3.2",
5050
"fast-xml-parser": "^4.2.5",
5151
"geotiff": "^2.1.0"
5252
},

modules/gis/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@loaders.gl/gis",
33
"description": "Helpers for GIS category data",
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"license": "MIT",
66
"type": "module",
77
"publishConfig": {
@@ -32,8 +32,8 @@
3232
"README.md"
3333
],
3434
"dependencies": {
35-
"@loaders.gl/loader-utils": "4.3.1",
36-
"@loaders.gl/schema": "4.3.1",
35+
"@loaders.gl/loader-utils": "4.3.2",
36+
"@loaders.gl/schema": "4.3.2",
3737
"@mapbox/vector-tile": "^1.3.1",
3838
"@math.gl/polygon": "^4.1.0",
3939
"pbf": "^3.2.1"

modules/gltf/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/gltf",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Framework-independent loader for the glTF format",
55
"license": "MIT",
66
"type": "module",
@@ -43,11 +43,11 @@
4343
"build-bundle-dev": "ocular-bundle ./bundle.ts --env=dev --output=dist/dist.dev.js"
4444
},
4545
"dependencies": {
46-
"@loaders.gl/draco": "4.3.1",
47-
"@loaders.gl/images": "4.3.1",
48-
"@loaders.gl/loader-utils": "4.3.1",
49-
"@loaders.gl/schema": "4.3.1",
50-
"@loaders.gl/textures": "4.3.1",
46+
"@loaders.gl/draco": "4.3.2",
47+
"@loaders.gl/images": "4.3.2",
48+
"@loaders.gl/loader-utils": "4.3.2",
49+
"@loaders.gl/schema": "4.3.2",
50+
"@loaders.gl/textures": "4.3.2",
5151
"@math.gl/core": "^4.1.0"
5252
},
5353
"peerDependencies": {

modules/i3s/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/i3s",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "i3s .",
55
"license": "MIT",
66
"type": "module",
@@ -42,16 +42,16 @@
4242
"build-worker-node": "esbuild src/workers/i3s-content-worker-node.ts --outfile=dist/i3s-content-worker-node.js --platform=node --target=node16 --minify --bundle --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
4343
},
4444
"dependencies": {
45-
"@loaders.gl/compression": "4.3.1",
46-
"@loaders.gl/crypto": "4.3.1",
47-
"@loaders.gl/draco": "4.3.1",
48-
"@loaders.gl/images": "4.3.1",
49-
"@loaders.gl/loader-utils": "4.3.1",
50-
"@loaders.gl/math": "4.3.1",
51-
"@loaders.gl/schema": "4.3.1",
52-
"@loaders.gl/textures": "4.3.1",
53-
"@loaders.gl/tiles": "4.3.1",
54-
"@loaders.gl/zip": "4.3.1",
45+
"@loaders.gl/compression": "4.3.2",
46+
"@loaders.gl/crypto": "4.3.2",
47+
"@loaders.gl/draco": "4.3.2",
48+
"@loaders.gl/images": "4.3.2",
49+
"@loaders.gl/loader-utils": "4.3.2",
50+
"@loaders.gl/math": "4.3.2",
51+
"@loaders.gl/schema": "4.3.2",
52+
"@loaders.gl/textures": "4.3.2",
53+
"@loaders.gl/tiles": "4.3.2",
54+
"@loaders.gl/zip": "4.3.2",
5555
"@math.gl/core": "^4.1.0",
5656
"@math.gl/culling": "^4.1.0",
5757
"@math.gl/geospatial": "^4.1.0"

modules/images/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/images",
3-
"version": "4.3.1",
3+
"version": "4.3.2",
44
"description": "Framework-independent loaders and writers for images (PNG, JPG, ...)",
55
"license": "MIT",
66
"type": "module",
@@ -41,7 +41,7 @@
4141
"build-bundle-dev": "ocular-bundle ./bundle.ts --env=dev --output=dist/dist.dev.js"
4242
},
4343
"dependencies": {
44-
"@loaders.gl/loader-utils": "4.3.1"
44+
"@loaders.gl/loader-utils": "4.3.2"
4545
},
4646
"devDependencies": {
4747
"@types/get-pixels": "^3.3.2"

0 commit comments

Comments
 (0)