Skip to content

Commit e29d896

Browse files
committed
v4.4.0-alpha.19
1 parent bf790cf commit e29d896

File tree

53 files changed

+380
-372
lines changed

Some content is hidden

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

53 files changed

+380
-372
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## v4.4
44

5+
### v4.4.0-alpha.19
6+
7+
- [Feat] Add @loaders.gl/mlt — MapLibre Tile format support (#3315)
8+
- feat(textures) Add composite texture loaders (#3328)
9+
- b388320bd chore(textures): Revert constant renames (#3337)
10+
- 5dd3a550c feat(textures): New HDR format loader (#3327)
11+
- dd6e393d7 fix(textures): Fix format strings, serialize basis transcoding. (#3329)
12+
513
### v4.4.0-alpha.18
614

715
- chore: Clean up library load options (#3320)

apps/tile-converter/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/tile-converter",
3-
"version": "4.4.0-alpha.18",
3+
"version": "4.4.0-alpha.19",
44
"description": "Converter",
55
"license": "MIT",
66
"type": "module",
@@ -51,20 +51,20 @@
5151
"copy-certificates": "cp -R src/i3s-server/certs dist/i3s-server"
5252
},
5353
"dependencies": {
54-
"@loaders.gl/3d-tiles": "4.4.0-alpha.18",
55-
"@loaders.gl/compression": "4.4.0-alpha.18",
56-
"@loaders.gl/crypto": "4.4.0-alpha.18",
57-
"@loaders.gl/draco": "4.4.0-alpha.18",
58-
"@loaders.gl/gltf": "4.4.0-alpha.18",
59-
"@loaders.gl/i3s": "4.4.0-alpha.18",
60-
"@loaders.gl/images": "4.4.0-alpha.18",
61-
"@loaders.gl/loader-utils": "4.4.0-alpha.18",
62-
"@loaders.gl/math": "4.4.0-alpha.18",
63-
"@loaders.gl/polyfills": "4.4.0-alpha.18",
64-
"@loaders.gl/textures": "4.4.0-alpha.18",
65-
"@loaders.gl/tiles": "4.4.0-alpha.18",
66-
"@loaders.gl/worker-utils": "4.4.0-alpha.18",
67-
"@loaders.gl/zip": "4.4.0-alpha.18",
54+
"@loaders.gl/3d-tiles": "4.4.0-alpha.19",
55+
"@loaders.gl/compression": "4.4.0-alpha.19",
56+
"@loaders.gl/crypto": "4.4.0-alpha.19",
57+
"@loaders.gl/draco": "4.4.0-alpha.19",
58+
"@loaders.gl/gltf": "4.4.0-alpha.19",
59+
"@loaders.gl/i3s": "4.4.0-alpha.19",
60+
"@loaders.gl/images": "4.4.0-alpha.19",
61+
"@loaders.gl/loader-utils": "4.4.0-alpha.19",
62+
"@loaders.gl/math": "4.4.0-alpha.19",
63+
"@loaders.gl/polyfills": "4.4.0-alpha.19",
64+
"@loaders.gl/textures": "4.4.0-alpha.19",
65+
"@loaders.gl/tiles": "4.4.0-alpha.19",
66+
"@loaders.gl/worker-utils": "4.4.0-alpha.19",
67+
"@loaders.gl/zip": "4.4.0-alpha.19",
6868
"@math.gl/core": "^4.1.0",
6969
"@math.gl/culling": "^4.1.0",
7070
"@math.gl/geoid": "^4.1.0",

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.4.0-alpha.18",
3+
"version": "4.4.0-alpha.19",
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.4.0-alpha.18",
3+
"version": "4.4.0-alpha.19",
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.4.0-alpha.18",
50-
"@loaders.gl/crypto": "4.4.0-alpha.18",
51-
"@loaders.gl/draco": "4.4.0-alpha.18",
52-
"@loaders.gl/gltf": "4.4.0-alpha.18",
53-
"@loaders.gl/images": "4.4.0-alpha.18",
54-
"@loaders.gl/loader-utils": "4.4.0-alpha.18",
55-
"@loaders.gl/math": "4.4.0-alpha.18",
56-
"@loaders.gl/tiles": "4.4.0-alpha.18",
57-
"@loaders.gl/zip": "4.4.0-alpha.18",
49+
"@loaders.gl/compression": "4.4.0-alpha.19",
50+
"@loaders.gl/crypto": "4.4.0-alpha.19",
51+
"@loaders.gl/draco": "4.4.0-alpha.19",
52+
"@loaders.gl/gltf": "4.4.0-alpha.19",
53+
"@loaders.gl/images": "4.4.0-alpha.19",
54+
"@loaders.gl/loader-utils": "4.4.0-alpha.19",
55+
"@loaders.gl/math": "4.4.0-alpha.19",
56+
"@loaders.gl/tiles": "4.4.0-alpha.19",
57+
"@loaders.gl/zip": "4.4.0-alpha.19",
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/arrow",
3-
"version": "4.4.0-alpha.18",
3+
"version": "4.4.0-alpha.19",
44
"description": "Simple columnar table loader for the Apache Arrow format",
55
"license": "MIT",
66
"type": "module",
@@ -60,12 +60,12 @@
6060
"build-worker2": "esbuild src/workers/arrow-worker.ts --bundle --outfile=dist/arrow-worker.js --platform=browser --external:{stream}"
6161
},
6262
"dependencies": {
63-
"@loaders.gl/gis": "4.4.0-alpha.18",
64-
"@loaders.gl/loader-utils": "4.4.0-alpha.18",
65-
"@loaders.gl/schema": "4.4.0-alpha.18",
66-
"@loaders.gl/schema-utils": "4.4.0-alpha.18",
67-
"@loaders.gl/wkt": "4.4.0-alpha.18",
68-
"@loaders.gl/worker-utils": "4.4.0-alpha.18",
63+
"@loaders.gl/gis": "4.4.0-alpha.19",
64+
"@loaders.gl/loader-utils": "4.4.0-alpha.19",
65+
"@loaders.gl/schema": "4.4.0-alpha.19",
66+
"@loaders.gl/schema-utils": "4.4.0-alpha.19",
67+
"@loaders.gl/wkt": "4.4.0-alpha.19",
68+
"@loaders.gl/worker-utils": "4.4.0-alpha.19",
6969
"@math.gl/polygon": "^4.1.0",
7070
"apache-arrow": ">= 17.0.0"
7171
},

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.4.0-alpha.18",
3+
"version": "4.4.0-alpha.19",
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.4.0-alpha.18",
44-
"@loaders.gl/loader-utils": "4.4.0-alpha.18",
45-
"@loaders.gl/schema": "4.4.0-alpha.18",
43+
"@loaders.gl/gis": "4.4.0-alpha.19",
44+
"@loaders.gl/loader-utils": "4.4.0-alpha.19",
45+
"@loaders.gl/schema": "4.4.0-alpha.19",
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.4.0-alpha.18",
3+
"version": "4.4.0-alpha.19",
44
"description": "Decompression and compression plugins for loaders.gl",
55
"license": "MIT",
66
"type": "module",
@@ -56,8 +56,8 @@
5656
"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\\\""
5757
},
5858
"dependencies": {
59-
"@loaders.gl/loader-utils": "4.4.0-alpha.18",
60-
"@loaders.gl/worker-utils": "4.4.0-alpha.18",
59+
"@loaders.gl/loader-utils": "4.4.0-alpha.19",
60+
"@loaders.gl/worker-utils": "4.4.0-alpha.19",
6161
"@types/pako": "^1.0.1",
6262
"fflate": "0.7.4",
6363
"pako": "1.0.11",

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.4.0-alpha.18",
4+
"version": "4.4.0-alpha.19",
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.4.0-alpha.18",
45-
"@loaders.gl/loader-utils": "4.4.0-alpha.18",
46-
"@loaders.gl/mvt": "4.4.0-alpha.18",
47-
"@loaders.gl/schema": "4.4.0-alpha.18",
44+
"@loaders.gl/images": "4.4.0-alpha.19",
45+
"@loaders.gl/loader-utils": "4.4.0-alpha.19",
46+
"@loaders.gl/mvt": "4.4.0-alpha.19",
47+
"@loaders.gl/schema": "4.4.0-alpha.19",
4848
"copc": "0.0.6"
4949
},
5050
"gitHead": "c95a4ff72512668a93d9041ce8636bac09333fd5"

modules/core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@loaders.gl/core",
3-
"version": "4.4.0-alpha.18",
3+
"version": "4.4.0-alpha.19",
44
"description": "The core API for working with loaders.gl loaders and writers",
55
"license": "MIT",
66
"type": "module",
@@ -58,10 +58,10 @@
5858
"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\\\""
5959
},
6060
"dependencies": {
61-
"@loaders.gl/loader-utils": "4.4.0-alpha.18",
62-
"@loaders.gl/schema": "4.4.0-alpha.18",
63-
"@loaders.gl/schema-utils": "4.4.0-alpha.18",
64-
"@loaders.gl/worker-utils": "4.4.0-alpha.18",
61+
"@loaders.gl/loader-utils": "4.4.0-alpha.19",
62+
"@loaders.gl/schema": "4.4.0-alpha.19",
63+
"@loaders.gl/schema-utils": "4.4.0-alpha.19",
64+
"@loaders.gl/worker-utils": "4.4.0-alpha.19",
6565
"@probe.gl/log": "^4.1.1"
6666
},
6767
"gitHead": "8a9e77743ea90a7be4ebec572416bb50ca9d73c3"

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.4.0-alpha.18",
3+
"version": "4.4.0-alpha.19",
44
"description": "Cryptographic/hashing plugins for loaders.gl",
55
"license": "MIT",
66
"type": "module",
@@ -52,8 +52,8 @@
5252
"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\\\""
5353
},
5454
"dependencies": {
55-
"@loaders.gl/loader-utils": "4.4.0-alpha.18",
56-
"@loaders.gl/worker-utils": "4.4.0-alpha.18",
55+
"@loaders.gl/loader-utils": "4.4.0-alpha.19",
56+
"@loaders.gl/worker-utils": "4.4.0-alpha.19",
5757
"@types/crypto-js": "^4.0.2"
5858
},
5959
"devDependencies": {

0 commit comments

Comments
 (0)