Skip to content

Commit 6662435

Browse files
Merge pull request #13 from stac-api-extensions/pv/release-1.0.0
release prep for 1.0.0
2 parents 1b73af7 + 6c67c83 commit 6662435

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

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]
8+
## [v1.0.0] - 2022-09-28
99

1010
### Changed
1111

@@ -39,7 +39,8 @@ None
3939
Versions [v1.0.0-rc.1](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1) and
4040
prior can be found in the [stac-api-spec](https://github.com/radiantearth/stac-api-spec/) repo
4141

42-
[Unreleased]: <https://github.com/stac-api-extensions/fields/compare/v1.0.0-rc.3...main>
42+
[Unreleased]: <https://github.com/stac-api-extensions/fields/compare/v1.0.0...main>
43+
[v1.0.0]: <https://github.com/stac-api-extensions/fields/tree/v1.0.0>
4344
[v1.0.0-rc.3]: <https://github.com/stac-api-extensions/fields/tree/v1.0.0-rc.3>
4445
[v1.0.0-rc.2]: <https://github.com/stac-api-extensions/fields/tree/v1.0.0-rc.2>
4546
[v1.0.0-rc.1]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1>

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
- **Title:** Fields
1717
- **OpenAPI specification:** [openapi.yaml](openapi.yaml)
1818
- **Conformance Classes:**
19-
- `STAC API - Item Search` binding: <https://api.stacspec.org/v1.0.0-rc.3/item-search#fields>
20-
- `STAC API - Features` binding: <https://api.stacspec.org/v1.0.0-rc.3/ogcapi-features#fields>
19+
- `STAC API - Item Search` binding: <https://api.stacspec.org/v1.0.0/item-search#fields>
20+
- `STAC API - Features` binding: <https://api.stacspec.org/v1.0.0/ogcapi-features#fields>
2121
- **Scope:** STAC API - Features, STAC API - Item Search
2222
- **[Extension Maturity Classification](https://github.com/radiantearth/stac-api-spec/tree/main/README.md#maturity-classification):** Candidate
2323
- **Dependencies:**
24-
- [STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.3/item-search)
25-
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.3/ogcapi-features)
24+
- [STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0/item-search)
25+
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0/ogcapi-features)
2626
- **Owner**: none
2727

2828
By default, STAC API endpoints that return Item objects return every field of those Items. However,
@@ -32,9 +32,9 @@ fields in an Item are used, so this
3232
specification provides a mechanism for clients to request that servers to explicitly include or exclude certain fields.
3333

3434
This behavior may be bound to either or both of
35-
[STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.3/item-search) (`/search` endpoint) or
36-
[STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.3/ogcapi-features)
37-
(`/collections/{collectionId}/items` endpoint) by advertising the relevant conformance class.
35+
[STAC API - Item Search](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0/item-search) (`/search` endpoint) or
36+
[STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0/ogcapi-features)
37+
(`/collections/{collectionId}/items` endpoint) by advertising the relevant conformance class.
3838

3939
When used in a POST request with `Content-Type: application/json`, this adds an attribute `fields` with
4040
an object value to the core JSON search request body. The `fields` object contains two attributes with string array
@@ -61,7 +61,7 @@ must be returned and the Item entities will not contain that
6161
field.
6262

6363
If no `fields` are specified, the response is **must** be a valid
64-
[ItemCollection](https://github.com/radiantearth/stac-spec/tree/v1.0.0-rc.3/itemcollection/README.md). If a client excludes
64+
[ItemCollection](https://github.com/radiantearth/stac-spec/tree/v1.0.0/itemcollection/README.md). If a client excludes
6565
fields that are required in a STAC Item, the server may return an invalid STAC Item. For example, if `type`
6666
and `geometry` are excluded, the entity will not even be a valid GeoJSON Feature, or if `bbox` is excluded then the entity
6767
will not be a valid STAC Item.

openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ info:
1010
name: Apache License 2.0
1111
url: 'http://www.apache.org/licenses/LICENSE-2.0'
1212
x-conformance-classes:
13-
- 'https://api.stacspec.org/v1.0.0-rc.3/item-search#fields'
14-
- 'https://api.stacspec.org/v1.0.0-rc.3/ogcapi-features#fields'
13+
- 'https://api.stacspec.org/v1.0.0/item-search#fields'
14+
- 'https://api.stacspec.org/v1.0.0/ogcapi-features#fields'
1515
paths: {}
1616
components:
1717
parameters:

0 commit comments

Comments
 (0)