Skip to content

Commit

Permalink
Merge pull request #6 from stac-api-extensions/pv/release-1.0.0-rc.2
Browse files Browse the repository at this point in the history
updates for release 1.0.0-rc.2 release
  • Loading branch information
philvarner authored Nov 1, 2022
2 parents a57c03a + 48d1da1 commit 3e9cac2
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 21 deletions.
3 changes: 1 addition & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@
**PR Checklist:**

- [ ] This PR has **no** breaking changes.
- [ ] This PR does not make any changes to the core spec in the `stac-spec` directory (these are included as a subtree and should be updated directly in [radiantearth/stac-spec](https://github.com/radiantearth/stac-spec))
- [ ] I have added my changes to the [CHANGELOG](https://github.com/radiantearth/stac-api-spec/blob/main/CHANGELOG.md) **or** a CHANGELOG entry is not required.
- [ ] I have added my changes to the [CHANGELOG](https://github.com/stac-api-extensions/filter/blob/main/CHANGELOG.md) **or** a CHANGELOG entry is not required.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [v1.0.0-rc.2] - Unreleased

- Update language on catalog-level queryables
- Fix several examples

## [v1.0.0-rc.1] - 2022-03-17

### Added
Expand Down Expand Up @@ -90,5 +93,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
See the [stac-api-spec CHANGELOG](https://github.com/radiantearth/stac-api-spec/blob/v0.9.0/CHANGELOG.md)
for STAC API releases prior to or equal to version v1.0.0-rc.2.

[Unreleased]: <https://github.com/radiantearth/stac-api-spec/compare/v1.0.0-rc.2...main>
[v1.0.0-rc.2]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2>
[Unreleased]: <https://github.com/stac-api-extensions/filter/compare/v1.0.0-rc.2..main>
[v1.0.0-rc.2]: <https://github.com/stac-api-extensions/filter/tree/v1.0.0-rc.2>
[v1.0.0-rc.1]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1>
[v1.0.0-beta.5]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.5>
[v1.0.0-beta.4]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.4>
[v1.0.0-beta.3]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.3>
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- **Conformance Classes:**
- Filter: <http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter>
- Features Filter: <http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter>
- Item Search Filter: <https://api.stacspec.org/v1.0.0-rc.1/item-search#filter>
- Item Search Filter: <https://api.stacspec.org/v1.0.0-rc.2/item-search#filter>
- CQL2 Text: <http://www.opengis.net/spec/cql2/1.0/conf/cql2-text>
- CQL2 JSON: <http://www.opengis.net/spec/cql2/1.0/conf/cql2-json>
- Basic CQL2: <http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2>
Expand All @@ -17,10 +17,10 @@
- Array Operators: <http://www.opengis.net/spec/cql2/1.0/conf/array-operators>
- Property-Property Comparisons: <http://www.opengis.net/spec/cql2/1.0/conf/property-property>
- Accent and Case-insensitive Comparison: <http://www.opengis.net/spec/cql2/1.0/conf/accent-case-insensitive-comparison>
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1/README.md#maturity-classification):** Pilot
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/README.md#maturity-classification):** Pilot
- **Dependencies:**
- [STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1/item-search)
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1/ogcapi-features)
- [STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/item-search)
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/ogcapi-features)

- [STAC API - Filter Extension](#stac-api---filter-extension)
- [Overview](#overview)
Expand Down Expand Up @@ -146,7 +146,7 @@ Spatial Operators conformance class, only the `S_INTERSECTS` operator in the Bas

The STAC API Filter Extension reuses the definitions and conformance classes in OAFeat CQL,
adding only the *Item Search Filter* conformance class
(`https://api.stacspec.org/v1.0.0-rc.1/item-search#filter`) to bind
(`https://api.stacspec.org/v1.0.0-rc.2/item-search#filter`) to bind
the Filter behavior to the Item Search endpoint.

The implementation **must** support these conformance classes:
Expand All @@ -157,7 +157,7 @@ The implementation **must** support these conformance classes:
the query language used for the `filter` parameter defined by Filter. This includes logical operators (`AND`, `OR`, `NOT`),
comparison operators (`=`, `<>`, `<`, `<=`, `>`, `>=`), and `IS NULL`. The comparison operators are allowed against
string, numeric, boolean, date, and datetime types.
- Item Search Filter (`https://api.stacspec.org/v1.0.0-rc.1/item-search#filter`) binds the Filter and
- Item Search Filter (`https://api.stacspec.org/v1.0.0-rc.2/item-search#filter`) binds the Filter and
Basic CQL2 conformance classes to apply to the Item Search endpoint (`/search`). This class is the correlate of the OAFeat CQL2 Features
Filter class that binds Filter and Basic CQL2 to the Features resource (`/collections/{cid}/items`).

Expand Down Expand Up @@ -369,11 +369,11 @@ at least these values:

"http://www.opengis.net/spec/ogcapi_common-2/1.0/conf/collections",

"http://api.stacspec.org/v1.0.0-rc.1/core",
"http://api.stacspec.org/v1.0.0-rc.1/stac-search",
"http://api.stacspec.org/v1.0.0-rc.1/stac-response",
"http://api.stacspec.org/v1.0.0-rc.2/core",
"http://api.stacspec.org/v1.0.0-rc.2/stac-search",
"http://api.stacspec.org/v1.0.0-rc.2/stac-response",

"https://api.stacspec.org/v1.0.0-rc.1/item-search#filter"
"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter"
"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter",
"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter",
"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text",
Expand Down
6 changes: 3 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.3
info:
title: The SpatioTemporal Asset Catalog API - Filter
description: Adds parameters to compare properties and only return the items that match
version: 1.0.0-rc.1
version: 1.0.0-rc.2

tags:
- name: Core
Expand Down Expand Up @@ -159,7 +159,7 @@ components:
The coordinate reference system (CRS) used by spatial literals in the 'filter' value. The only value that STAC APIs must
accept is 'http://www.opengis.net/def/crs/OGC/1.3/CRS84'.
type: string
format: uri
format: uri
exception:
type: object
description: |-
Expand All @@ -183,4 +183,4 @@ components:
content:
application/json:
schema:
$ref: '#/components/schemas/exception'
$ref: '#/components/schemas/exception'
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stac-api-filter-extension-spec",
"version": "1.0.0-rc.1",
"version": "1.0.0-rc.2",
"description": "STAC API helpers to check the API spec.",
"repository": "https://github.com/stac-api-extensions/filter",
"license": "Apache-2.0",
Expand Down Expand Up @@ -88,4 +88,4 @@
]
]
}
}
}

0 comments on commit 3e9cac2

Please sign in to comment.