Updates for the 6.15.0 release

This commit is contained in:
Andreas Hocevar
2022-07-18 22:05:21 +02:00
parent 61da235e40
commit 3b991343b5
4 changed files with 261 additions and 4 deletions
+17 -1
View File
@@ -1,6 +1,8 @@
## Upgrade notes
### Next Release
### Next version
### 6.15.0
#### Deprecated `tilePixelRatio` option for data tile sources.
@@ -34,6 +36,20 @@ addCoordinateTransforms(
);
```
#### Replacement of string enums with union types
This change only affects users that were using the non-API string enums
* ol/OverlayPositioning
* ol/extent/Corner
* ol/format/FormatType
* ol/geom/GeometryType
* ol/source/State
* ol/source/WMSServerType
* ol/source/WMTSRequestEncoding
Instead of these, use the respective `string`s, which are now typesafe by means of union types.
### v6.14.0
No special changes are required when upgrading to the 6.14.0 release.