File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
3.1.0 (TBD)
2
2
-----------------
3
+ - Allow extra fields in Links (#144, @jonhealy1)
3
4
- Remove the deprecated `Context` extension (#138, @vincentsarago)
4
5
- Rename `stac_pydantic.api.conformance.ConformanceClasses` to `stac_pydantic.api.conformance.Conformance`
5
6
- Update pre-commit configuration and switch to astral-sh/ruff for linter and formater
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class Link(StacBaseModel):
20
20
21
21
# Label extension
22
22
label : Optional [str ] = Field (default = None , alias = "label:assets" )
23
- model_config = ConfigDict (use_enum_values = True , extra = "forbid " )
23
+ model_config = ConfigDict (use_enum_values = True , extra = "allow " )
24
24
25
25
def resolve (self , base_url : str ) -> None :
26
26
"""resolve a link to the given base URL"""
You can’t perform that action at this time.
0 commit comments