Skip to content

Commit

Permalink
release v2.47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gchoqueux committed Jun 3, 2024
1 parent a5f02ac commit 20fccf0
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 12 deletions.
61 changes: 61 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,64 @@
<a name="2.47.0"></a>
# [2.47.0](https://github.com/iTowns/itowns/compare/v2.43.1...v2.47.0) (2024-06-03)


### Features

* Add support for Cloud Optimized Point Clouds (COPC) ([f1e014f](https://github.com/iTowns/itowns/commit/f1e014f))
* **COG:** Allow tileWidth, tileHeight & resampleMethod parameter ([24ab82f](https://github.com/iTowns/itowns/commit/24ab82f))
* **examples:** add COPC url loader ([6b4a5f2](https://github.com/iTowns/itowns/commit/6b4a5f2))
* **LasParser:** add parsing of chunks of LAS files ([eec3197](https://github.com/iTowns/itowns/commit/eec3197))


### Bug Fixes

* **3dTilesLayer:** fix transparency for 3dTilesLayer ([af4d061](https://github.com/iTowns/itowns/commit/af4d061))
* **COG:** Fix AggregateError (retry if error occur) ([038dedd](https://github.com/iTowns/itowns/commit/038dedd))
* **COG:** Fix COG example ([aaa9691](https://github.com/iTowns/itowns/commit/aaa9691))
* **COG:** Fix COG levels parsing ([921bc03](https://github.com/iTowns/itowns/commit/921bc03))
* **COG:** Fix selectLevel (incorrect level selection when source extent is huge) ([809a4ad](https://github.com/iTowns/itowns/commit/809a4ad))
* **COG:** Fix texture width & height (use source.tileWidth & source.tileHeight) ([e03caf5](https://github.com/iTowns/itowns/commit/e03caf5))
* **entwine:** change transparency settings ([47f859d](https://github.com/iTowns/itowns/commit/47f859d))
* **example:** change klokantech url in 3dtile_ion.html ([14891fd](https://github.com/iTowns/itowns/commit/14891fd))
* **test-functional:** fixes on hooks_functional.js ([bc41708](https://github.com/iTowns/itowns/commit/bc41708))
* **test:** fetcher.js augment timeout limit ([5668334](https://github.com/iTowns/itowns/commit/5668334))
* **test:** fix change on id for test functional ([3780c56](https://github.com/iTowns/itowns/commit/3780c56))


### Examples

* **COG:** Set maxSubdivisionLevel to 10 (default is 5) ([1de7124](https://github.com/iTowns/itowns/commit/1de7124))


### Code Refactoring

* **3dTilesDebug:** add properties hasPnts for pnts fields in GUI ([ff0ff3d](https://github.com/iTowns/itowns/commit/ff0ff3d))
* **3dTiles:** supp unused parameter in debug set up ([5bf62f2](https://github.com/iTowns/itowns/commit/5bf62f2))
* **PotreeDebug:** rename PotreeDebug to PointCloudDebug ([d1eb374](https://github.com/iTowns/itowns/commit/d1eb374))
* **test-functional:** reworks on hooks-functional.js: better gestion of errors and save initial camera position only once ([488d6a1](https://github.com/iTowns/itowns/commit/488d6a1))


### Workflow and chores

* release v2.47.0 ([4dd456d](https://github.com/iTowns/itowns/commit/4dd456d))
* add readme.md ([58b7fac](https://github.com/iTowns/itowns/commit/58b7fac))
* **architecture:** monorepo structure ([27d4609](https://github.com/iTowns/itowns/commit/27d4609))
* fix version ([a5f02ac](https://github.com/iTowns/itowns/commit/a5f02ac))
* move prepare install to Main package. ([5b7b0f6](https://github.com/iTowns/itowns/commit/5b7b0f6))
* prepare publish ([3457a86](https://github.com/iTowns/itowns/commit/3457a86))
* reestablish functional test ([0deb744](https://github.com/iTowns/itowns/commit/0deb744))
* TEMP change namescate to test publishing ([2a14562](https://github.com/iTowns/itowns/commit/2a14562))
* temp release for publish testing ([122f7d2](https://github.com/iTowns/itowns/commit/122f7d2))
* temp release for publish testing ([20455be](https://github.com/iTowns/itowns/commit/20455be))


### Documentation

* Add link to governance repo in the README ([d3a317b](https://github.com/iTowns/itowns/commit/d3a317b))
* **COPC:** expose doc for COPCLayer and COPCSource ([48fb9df](https://github.com/iTowns/itowns/commit/48fb9df))



<a name="2.43.1"></a>
## [2.43.1](https://github.com/iTowns/itowns/compare/v2.43.0...v2.43.1) (2024-04-30)

Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "2.46.0",
"version": "2.47.0",
"description": "A JS/WebGL framework for 3D geospatial data visualization",
"type": "module",
"main": "./packages/lib/Main/Main.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/Geodesy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itowns_gc/geodesy",
"version": "2.46.0",
"version": "2.47.0",
"description": "Geodesy",
"type": "module",
"main": "lib/Main.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/Gui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itowns_gc/gui",
"version": "2.46.0",
"version": "2.47.0",
"description": "Gui",
"type": "module",
"main": "lib/Main.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/Main/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "itowns_gc",
"version": "2.46.0",
"version": "2.47.0",
"description": "A JS/WebGL framework for 3D geospatial data visualization",
"type": "module",
"main": "lib/Main.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
"url": "https://github.com/iTowns/itowns/issues"
},
"dependencies": {
"@itowns_gc/geodesy": "^2.46.0",
"@itowns_gc/geodesy": "^2.47.0",
"@mapbox/mapbox-gl-style-spec": "^13.28.0",
"@mapbox/vector-tile": "^1.3.1",
"@tmcw/togeojson": "^5.8.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/Main/src/Main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const conf = {
version: '2.46.0',
version: '2.47.0',
};

export const REVISION = conf.version;
Expand Down

0 comments on commit 20fccf0

Please sign in to comment.