Skip to content

release: v0.6.4 #610

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.4] - 2025-01-17

### Added

- Ability to configure whether to open assets ([#595](https://github.com/stac-utils/stac-api-validator/pull/595))

### Fixed

- HTTP headers to **stac-validator** ([#595](https://github.com/stac-utils/stac-api-validator/pull/595))

## [0.6.3] - 2024-10-07

### Added

- Allow generic auth headers ([#392](https://github.com/stac-utils/stac-api-validator/pull/392))

## [0.6.2] - 2024-04-29
Expand Down Expand Up @@ -165,7 +177,9 @@ Release is primarily to publish to Read the Docs as a version.

- Fixed issue with item-search validation relying on collections behavior

[unreleased]: https://github.com/stac-utils/stac-api-validator/compare/v0.6.2...main
[unreleased]: https://github.com/stac-utils/stac-api-validator/compare/v0.6.4...main
[0.6.4]: https://github.com/stac-utils/stac-api-validator/compare/v0.6.3..v0.6.4
[0.6.3]: https://github.com/stac-utils/stac-api-validator/compare/v0.6.2..v0.6.3
[0.6.2]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.2
[0.6.1]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.1
[0.6.0]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.0
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ The current validity status of several popular STAC API implementations can be f

Usage:

```
```text
Usage: stac-api-validator [OPTIONS]

STAC API Validator.
Expand Down Expand Up @@ -132,7 +132,7 @@ the specified collection.

Example:

```
```shell
stac-api-validator \
--root-url https://planetarycomputer.microsoft.com/api/stac/v1/ \
--conformance core \
Expand All @@ -144,7 +144,7 @@ stac-api-validator \

Example output:

```
```text
Validating https://cmr.earthdata.nasa.gov/stac/LARC_ASDC ...
STAC API - Core conformance class found.
STAC API - Item Search conformance class found.
Expand All @@ -160,7 +160,7 @@ errors:

Example with authorization using parameters:

```
```shell
stac-api-validator --root-url https://api.radiant.earth/mlhub/v1 --conformance core --auth-query-parameter 'key=xxx'
```

Expand All @@ -174,7 +174,7 @@ validate conformance.

Full instructions are available at the link above, but the simplest way to run this is with:

```
```shell
docker run -p 8081:8080 ogccite/ets-ogcapi-features10
```

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stac-api-validator"
version = "0.6.3"
version = "0.6.4"
description = "STAC API Validator"
authors = ["Phil Varner <[email protected]>"]
license = "Apache-2.0"
Expand Down
Loading