Skip to content

Commit 355cc2b

Browse files
committed
chore: Pre-release hslayers-ng 16
1 parent 030f103 commit 355cc2b

File tree

10 files changed

+54
-13
lines changed

10 files changed

+54
-13
lines changed

projects/hslayers-app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/hslayers-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hslayers-ng-app",
3-
"version": "16.0.0-next.2",
3+
"version": "16.0.0-next.3",
44
"description": "A bundle of HSLayers-NG library + Angular + OL",
55
"main": "src/main.ts",
66
"directories": {

projects/hslayers-cesium-app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/hslayers-cesium-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hslayers-cesium-app",
3-
"version": "16.0.0-next.0",
3+
"version": "16.0.0-next.1",
44
"description": "A bundle of HSLayers-NG library + Angular + OL which includes Cesium for 3D maps",
55
"main": "src/main.ts",
66
"directories": {

projects/hslayers-cesium/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/hslayers-cesium/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hslayers-cesium",
3-
"version": "16.0.0-next.0",
3+
"version": "16.0.0-next.1",
44
"description": "HSLayers-NG 3D mapping library",
55
"author": "Plan4all",
66
"keywords": [

projects/hslayers/CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
# [16.0.0-next.3](https://github.com/hslayers/hslayers-ng/compare/16.0.0-next.2...16.0.0-next.3) (2025-08-06)
2+
3+
4+
### Bug Fixes
5+
6+
* **layout:** Add type for mainpanel$ & fix wrong panel as object expectation in save map ([5d9f29d](https://github.com/hslayers/hslayers-ng/commit/5d9f29d5ca385bf7b5bd154aea4019050e5f8a1f))
7+
* **test:** avoid relying on ng-reflect-* attribute ([2cb197a](https://github.com/hslayers/hslayers-ng/commit/2cb197a0b0ccb1cf0e4b158b053fc14fb7e38b15))
8+
* **test:** Provide TranslateService in spec files ([a675b94](https://github.com/hslayers/hslayers-ng/commit/a675b94f2930781d0bc843dcf9f63475d9870233))
9+
10+
11+
* !refactor(i18n): Upgrade ngx-translate to v17 ([4223b25](https://github.com/hslayers/hslayers-ng/commit/4223b2550bdd44b9697a42fbecf77025dc36fdc1))
12+
* !build(server): Update dotenv, yargs and more ([370360e](https://github.com/hslayers/hslayers-ng/commit/370360ee6bd8b3488d1fc21cd20b7daaebf83cca))
13+
14+
15+
### Features
16+
17+
* **i18n:** Provide HsMissingTranslationHandler ([d3af681](https://github.com/hslayers/hslayers-ng/commit/d3af681b076dce7f843fcb25b7bc1a824c944904))
18+
* **server:** Expose version via GET request ([8a69838](https://github.com/hslayers/hslayers-ng/commit/8a698386da6ce0b74d8c6e5e8b7322384f43b7b3))
19+
20+
21+
### BREAKING CHANGES
22+
23+
* `TranslateCustomPipe` removed in favour of external `TranslatePipe`, thus all occurrences of `translateHs` must be changed to `translate` with proper import.
24+
* `TranslateCustomService` removed
25+
* `WebpackTranslateLoader` renamed to `HsTranslateLoader` and must be provided in `providers` array as:
26+
```
27+
provideTranslateService({
28+
loader: {
29+
provide: TranslateLoader,
30+
useClass: HsTranslateLoader,
31+
deps: [HsConfig, HsLogService, HttpClient],
32+
},
33+
missingTranslationHandler: provideMissingTranslationHandler(
34+
HsMissingTranslationHandler,
35+
),
36+
}),
37+
```
38+
* Minimum Node versions increased to 20.19 and 22.12
39+
40+
41+
142
# [16.0.0-next.2](https://github.com/hslayers/hslayers-ng/compare/16.0.0-next.1...16.0.0-next.2) (2025-07-07)
243

344

projects/hslayers/components/sidebar/impressum.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {HsConfig} from 'hslayers-ng/config';
1010
standalone: true,
1111
})
1212
export class HsImpressumComponent {
13-
version = signal('16.0.0-next.2');
13+
version = signal('16.0.0-next.3');
1414
logoError = signal(false);
1515

1616
logoPath = computed(

projects/hslayers/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/hslayers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hslayers-ng",
3-
"version": "16.0.0-next.2",
3+
"version": "16.0.0-next.3",
44
"description": "HSLayers-NG mapping library",
55
"author": "Plan4all",
66
"keywords": [

0 commit comments

Comments
 (0)