File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
+ ## [ 0.6.0] - TBD
9
+
10
+ - Enforce required keys and avoid defaults. This aim to follow the geojson specification to the letter.
11
+
12
+ ``` python
13
+ # Before
14
+ Feature(geometry = Point(coordinates = (0 ,0 )))
15
+
16
+ # Now
17
+ Feature(
18
+ type = " Feature" ,
19
+ geometry = Point(
20
+ type = " Point" ,
21
+ coordinates = (0 ,0 )
22
+ ),
23
+ properties = None ,
24
+ )
25
+ ```
26
+
27
+ # ## Fixed
28
+
29
+ - Do not validates arbitrary dictionaries. Make `Type` a mandatory key for objects (https:// github.com/ developmentseed/ geojson- pydantic/ pull/ 94 )
30
+
8
31
# # [0.5.0] - 2022-12-16
9
32
10
33
# ## Added
You can’t perform that action at this time.
0 commit comments