diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ba94d11ce..0c8626e2c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.15.3](https://github.com/infra-geo-ouverte/igo2-lib/compare/1.15.2...1.15.3) (2023-06-12) + + +### Bug Fixes + +* **draw:** drawing circle crash whole drawing component. ([#1273](https://github.com/infra-geo-ouverte/igo2-lib/issues/1273)) ([e3ee3b5](https://github.com/infra-geo-ouverte/igo2-lib/commit/e3ee3b593e4afde201fc601373478aa8cf8556a3)) + + + ## [1.15.2](https://github.com/infra-geo-ouverte/igo2-lib/compare/1.15.1...1.15.2) (2023-05-16) diff --git a/angular.json b/angular.json index 8e6c50d143..e84b21ffe9 100644 --- a/angular.json +++ b/angular.json @@ -516,6 +516,7 @@ "cache": { "enabled": false, "environment": "all" - } + }, + "analytics": false } } diff --git a/package-lock.json b/package-lock.json index 2b3eb551a9..6959cede70 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@igo/demo", - "version": "1.15.2", + "version": "1.15.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@igo/demo", - "version": "1.15.2", + "version": "1.15.3", "hasInstallScript": true, "license": "MIT", "workspaces": [ diff --git a/package.json b/package.json index a91cd402f3..232afe7579 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "workspaces": [ "./packages/*" ], - "version": "1.15.2", + "version": "1.15.3", "description": "IGO Library", "author": "IGO Community", "license": "MIT", diff --git a/packages/auth/package.json b/packages/auth/package.json index 142069cc85..38ea047b06 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -1,6 +1,6 @@ { "name": "@igo2/auth", - "version": "1.15.2", + "version": "1.15.3", "description": "IGO Library", "author": "IGO Community", "keywords": ["igo"], @@ -26,8 +26,8 @@ "@angular/forms": "^14.3.0", "@angular/material": "^14.2.7", "@angular/router": "^14.3.0", - "@igo2/core": "^1.15.2", - "@igo2/utils": "^1.15.2", + "@igo2/core": "^1.15.3", + "@igo2/utils": "^1.15.3", "rxjs": "^7.5.6", "@azure/msal-angular": "^2.4.1", "@azure/msal-browser": "^2.28.1" diff --git a/packages/common/package.json b/packages/common/package.json index 035172283e..0284bc5e3d 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@igo2/common", - "version": "1.15.2", + "version": "1.15.3", "description": "IGO Library", "author": "IGO Community", "keywords": ["igo"], @@ -18,8 +18,8 @@ "@angular/core": "^14.3.0", "@angular/material": "^14.2.7", "@angular/platform-browser": "^14.3.0", - "@igo2/core": "^1.15.2", - "@igo2/utils": "^1.15.2", + "@igo2/core": "^1.15.3", + "@igo2/utils": "^1.15.3", "scroll-into-view-if-needed": "^2.2.20", "typy": "^3.3.0" }, diff --git a/packages/context/package.json b/packages/context/package.json index ec6078322d..02dcdd9058 100644 --- a/packages/context/package.json +++ b/packages/context/package.json @@ -1,6 +1,6 @@ { "name": "@igo2/context", - "version": "1.15.2", + "version": "1.15.3", "description": "IGO Library", "author": "IGO Community", "keywords": ["igo"], @@ -20,11 +20,11 @@ "@angular/forms": "^14.3.0", "@angular/material": "^14.2.7", "@angular/platform-browser": "^14.3.0", - "@igo2/auth": "^1.15.2", - "@igo2/common": "^1.15.2", - "@igo2/core": "^1.15.2", - "@igo2/utils": "^1.15.2", - "@igo2/geo": "^1.15.2", + "@igo2/auth": "^1.15.3", + "@igo2/common": "^1.15.3", + "@igo2/core": "^1.15.3", + "@igo2/utils": "^1.15.3", + "@igo2/geo": "^1.15.3", "ol": "^7.3.0", "rxjs": "^7.5.6" }, diff --git a/packages/core/package.json b/packages/core/package.json index 6f58ddc3a3..9dcfc67615 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@igo2/core", - "version": "1.15.2", + "version": "1.15.3", "description": "IGO Library", "author": "IGO Community", "keywords": ["igo"], @@ -23,7 +23,7 @@ "@angular/core": "^14.3.0", "@angular/platform-browser": "^14.3.0", "@angular/router": "^14.3.0", - "@igo2/utils": "^1.15.2", + "@igo2/utils": "^1.15.3", "rxjs": "^7.5.6", "ngx-indexed-db": "^11.0.2", "ngx-toastr": "^15.0.0" diff --git a/packages/core/src/lib/config/version.ts b/packages/core/src/lib/config/version.ts index d7c1c24081..ef41dbbafe 100644 --- a/packages/core/src/lib/config/version.ts +++ b/packages/core/src/lib/config/version.ts @@ -4,6 +4,6 @@ export interface Version { } export const version: Version = { - lib: '1.15.2', - releaseDate: 1684264792382 + lib: '1.15.3', + releaseDate: 1686590809688 }; diff --git a/packages/geo/package.json b/packages/geo/package.json index 6d92fe74ac..1c96c58919 100644 --- a/packages/geo/package.json +++ b/packages/geo/package.json @@ -1,6 +1,6 @@ { "name": "@igo2/geo", - "version": "1.15.2", + "version": "1.15.3", "description": "IGO Library", "author": "IGO Community", "keywords": ["igo"], @@ -30,9 +30,9 @@ "@angular/forms": "^14.3.0", "@angular/material": "^14.2.7", "@angular/platform-browser": "^14.3.0", - "@igo2/common": "^1.15.2", - "@igo2/core": "^1.15.2", - "@igo2/utils": "^1.15.2", + "@igo2/common": "^1.15.3", + "@igo2/core": "^1.15.3", + "@igo2/utils": "^1.15.3", "flexsearch": "0.7.21", "ol": "^7.3.0", "proj4": "^2.8.0", diff --git a/packages/integration/package.json b/packages/integration/package.json index 510a2fff0a..a60ec89012 100644 --- a/packages/integration/package.json +++ b/packages/integration/package.json @@ -1,6 +1,6 @@ { "name": "@igo2/integration", - "version": "1.15.2", + "version": "1.15.3", "description": "IGO Library", "author": "IGO Community", "keywords": ["igo"], @@ -16,8 +16,8 @@ "peerDependencies": { "@angular/common": "^14.3.0", "@angular/core": "^14.3.0", - "@igo2/geo": "1.15.2", - "@igo2/context": "1.15.2", + "@igo2/geo": "1.15.3", + "@igo2/context": "1.15.3", "rxjs": "^7.5.6" }, "dependencies": { diff --git a/packages/utils/package.json b/packages/utils/package.json index d330fbf942..74198f1013 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@igo2/utils", - "version": "1.15.2", + "version": "1.15.3", "description": "IGO Library", "author": "IGO Community", "keywords": ["igo"],