Skip to content

Commit 7a129d2

Browse files
author
Phil Varner
authored
Merge pull request #24 from stac-api-extensions/pv/pre-release-1.0.0-rc.3
prep for release 1.0.0-rc.3
2 parents 810b9b8 + 1b80dfe commit 7a129d2

File tree

6 files changed

+15443
-7362
lines changed

6 files changed

+15443
-7362
lines changed

.remarkignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
/CHANGELOG.md
1+
/CHANGELOG.md
2+
.github/pull_request_template.md

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased] - TBD
8+
## [v1.0.0-rc.3] - 2023-10-18
99

1010
### Changed
1111

@@ -104,7 +104,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
104104
See the [stac-api-spec CHANGELOG](https://github.com/radiantearth/stac-api-spec/blob/v0.9.0/CHANGELOG.md)
105105
for STAC API releases prior to or equal to version v1.0.0-rc.2.
106106

107-
[Unreleased]: <https://github.com/stac-api-extensions/filter/compare/v1.0.0-rc.2..main>
107+
[Unreleased]: <https://github.com/stac-api-extensions/filter/compare/v1.0.0-rc.3..main>
108+
[v1.0.0-rc.3]: <https://github.com/stac-api-extensions/filter/tree/v1.0.0-rc.3>
108109
[v1.0.0-rc.2]: <https://github.com/stac-api-extensions/filter/tree/v1.0.0-rc.2>
109110
[v1.0.0-rc.1]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1>
110111
[v1.0.0-beta.5]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.5>

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
- **Conformance Classes:**
6161
- Filter: `http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter`
6262
- Features Filter: `http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter`
63-
- Item Search Filter: `https://api.stacspec.org/v1.0.0-rc.2/item-search#filter`
63+
- Item Search Filter: `https://api.stacspec.org/v1.0.0-rc.3/item-search#filter`
6464
- CQL2 Text: `http://www.opengis.net/spec/cql2/1.0/conf/cql2-text`
6565
- CQL2 JSON: `http://www.opengis.net/spec/cql2/1.0/conf/cql2-json`
6666
- Basic CQL2: `http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2`
@@ -76,8 +76,8 @@
7676
- **Scope:** STAC API - Features, STAC API - Item Search
7777
- **[Extension Maturity Classification](https://github.com/radiantearth/stac-api-spec/tree/main/README.md#maturity-classification):** Pilot
7878
- **Dependencies:**
79-
- [STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/item-search)
80-
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/ogcapi-features)
79+
- [STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0/item-search)
80+
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0/ogcapi-features)
8181
- **Owner**: @philvarner
8282

8383
The Filter extension provides an expressive mechanism for searching based on Item attributes.
@@ -154,7 +154,7 @@ Spatial Operators conformance class, only the `S_INTERSECTS` operator in the Bas
154154

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

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

@@ -390,11 +390,10 @@ at least these values:
390390

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

393-
"http://api.stacspec.org/v1.0.0-rc.2/core",
394-
"http://api.stacspec.org/v1.0.0-rc.2/stac-search",
395-
"http://api.stacspec.org/v1.0.0-rc.2/stac-response",
393+
"http://api.stacspec.org/v1.0.0/core",
394+
"http://api.stacspec.org/v1.0.0/item-search",
396395

397-
"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter"
396+
"https://api.stacspec.org/v1.0.0-rc.3/item-search#filter"
398397
"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter",
399398
"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter",
400399
"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text",

openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.3
22
info:
33
title: The SpatioTemporal Asset Catalog API - Filter
44
description: Adds parameters to compare properties and only return the items that match
5-
version: 1.0.0-rc.2
5+
version: 1.0.0-rc.3
66

77
tags:
88
- name: Core

0 commit comments

Comments
 (0)