All notable changes to this project will be documented in this file.
The format is (loosely) based on Keep a Changelog and this project adheres to Semantic Versioning.
- Added publish.yml to automatically publish new releases to PyPI #236
v3.4.0 - 2024-10-08
- Added ability to validate response from a /collections endpoint #220
- Added mypy to pre-commit config (#229)
- Support for stac spec version 1.1.0 #235
v3.3.2 - 2023-11-17
- Docstrings (#224)
- Development dependencies removed from runtime dependency list (#228)
- Remove jsonschema RefResolver (#228)
v3.3.1 - 2022-12-16
- Moved --verbose messaging for --recursive as --verbose was printing out the wrong messages #222
v3.3.0 - 2022-11-28
- Added --item-collection to validate local and remote item collections #219
- Added --pages to validate additional items retrieved via pagination links #219
v3.2.0 - 2022-09-20
- Added ability to check local schemas in item extensions #215
- Added an example on validating a dictionary #215
- Changed 'ValidationError' error type to 'JSONSchemaValidationError' #213
v3.1.0 - 2022-04-28
- Added update stac version message to cli output #211
- Reordered exception handlers to avoid unreachable code #203
- Details about invalid items are shown in the message when in recursive mode #202
- Dockerfile - change cli command from stac_validator to stac-validator #201
- Items with no assets key can still be valid #206
- Top-level
is_valid
flag for recursive JSONSchema exceptions #208
- Stac-check linting as it creates a circular dependency #209
- Remove v0.7.0 test data and v0.7.0 local tests #210
- Removed pystac from dependencies #210
v3.0.0 - 2022-03-11
- A note about full recursion to the
--max-depth
help text
- Item messages are now included even if
max_depth is None
- Exit with non-zero code when validation fails
- References to Python 3.6
v2.5.0 - 2022-03-10
- Split the
--recursive
option into a--recursive
flag and a--max-depth
option - Renamed the entry point from
stac_validator
tostac-validator
v2.4.3 - 2022-03-10
- Add schema caching
v2.4.2 - 2022-03-02
- Loosen pystac version dependency
v2.4.1 - 2022-03-02
- Loosen stac-check version dependency
v2.4.0 - 2022-02-02
- Linting option in cli to display stac-check generated information
v2.3.0 - 2021-08-31 - 2021-11-28
- Added --links option to validate links on format and a valid response
- Added --assets option to validate assets on format and and a valid response
- Added test_links.py
- Added v1.0.0 STAC examples from radiant earth github
- Added v1.0.0 examples to tests
- Upgraded pystac to 1.1.0 from 0.5.6
- Moved tests for cli options out of test_stac_validator into individual files
- Moved utilities to utilities.py
- Moved backend to validate.py
v2.2.0 - 2021-05-25
- Added Support for STAC 1.0.0
- Added more tests for STAC 1.0.0-rc.4
- Option to pass stac dictionary into validator in python with new stac_dict method
- Moved std out to cli so that it doesn't display in pure python applications
- Added Pypi badges to readme
v2.1.0 - 2021-05-06
- Added more tests for STAC 1.0.0-rc.3
- Added basic support for rc.4
- Add system exit code to CLI. see #144
- Modified how Lambda CDK is built
v2.0.0 - 2021-04-28
- Stac versions from 0.8.0 --> 1.0.0-rc.3 are now supported.
- Version is detected automatically.
- Default validation attempts to validate a core Stac object as well as any extensions.
- Recursion which was previously handled by Pystac is now done natively with both a depth option to limit the time it takes to validate and a verbose option to display output as individual objects are being validated one by one.
- Added AWS CDK deployment example.
- Added FastAPI routing to CDK deployment.
- Pystac is now only being used to identify stac objects. Jsonschema is being used for all other validation.
- The cli library was changed from Docopt to Click.
- Custom validation was updated to allow for local schemas.
- The force, legacy, version, and update methods were removed.
- stac versions where a
stac_version
field is not present are no longer supported.
v1.0.1 - 2020-09-01
- The ability (--update) to update a STAC object. This is based on migrate from pystac. It doesn't always work. Frequently it does. Presently it tries to update to version 1.0.0-beta.2
- A function to display what has changed via --update. This is represented in the logs as diff.
- A --force option. This updates the stac_version to v0.9.0 and adds an id field as older STAC versions seem to be missing this sometimes. This seems to be especially effective with objects as old as 0.6.0 and 0.6.1
- An option (--version) to specify and set a specific version to validate against.
- The --extension option. This uses pystac validation to validate against various extension schemas.
- The ExtensionError, as inputing a bad value for extension caused validation in pystac to be bypassed.
- The VersionError, as inputing a bad value for version was causing validation in pystac to be bypassed as well.
- The --recursive option. This uses validate_all from pystac to recursively search the links from a catalog or collection.
- The ability (--core) to validate against the core only. This is provided by pystac.
- (--legacy). This validates agains schemas from v0.4.0 to v1.0.0-beta.1 Legacy must be accompanied by --version.
- valid_versions for --legacy are: 'v0.4.0', 'v0.4.1', 'v0.5.0', 'v0.5.1', 'v0.5.2', 'v0.6.0', 'v0.6.0-rc1', 'v0.6.0-rc2', 'v0.6.1', 'v0.6.2', 'v0.7.0', 'v0.8.0', 'v0.8.0-rc1', 'v0.8.1', 'v0.9.0', 'v0.9.0-rc1', 'v0.9.0-rc2', and 'v1.0.0-beta.1'
- (--custom). Validate against a custom schema
- Tests to explore new functionality.
- Updated core validation to use validation from pystac instead of jsonchema.
- With the newest version - 1.0.0-beta.2 - items will run through jsonchema validation before the PySTAC validation. The reason for this is that jsonschema will give more informative error messages. This should be addressed better in the future. This is not the case with the --recursive option as time can be a concern here with larger collections.
- Logging. Various additions were made here depending on the options selected. This was done to help assist people to update their STAC collections.