Skip to content

Commit f749a3c

Browse files
authored
Merge pull request #7 from stac-api-extensions/pv/1.0.0-rc.3
pre for 1.0.0-rc.3 release
2 parents d089e85 + 243a7e3 commit f749a3c

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 2 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-rc.3] - 2022-03-29
99

1010
### Changed
1111

@@ -33,7 +33,7 @@ None
3333
Versions [v1.0.0-rc.1](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1) and
3434
prior can be found in the [stac-api-spec](https://github.com/radiantearth/stac-api-spec/) repo
3535

36-
[Unreleased]: <https://github.com/stac-api-extensions/fields/compare/v1.0.0-rc.2..main>
36+
[v1.0.0-rc.3]: <https://github.com/stac-api-extensions/fields/tree/v1.0.0-rc.3>
3737
[v1.0.0-rc.2]: <https://github.com/stac-api-extensions/fields/tree/v1.0.0-rc.2>
3838
[v1.0.0-rc.1]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1>
3939
[v1.0.0-beta.4]: <https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.4>

README.md

Lines changed: 7 additions & 7 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.2/item-search#fields>
20-
- `STAC API - Features` binding: <https://api.stacspec.org/v1.0.0-rc.2/ogcapi-features#fields>
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>
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.2/item-search)
25-
- [STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/ogcapi-features)
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)
2626
- **Owner**: none
2727

2828
By default, STAC API endpoints that return Item objects return every field of those Items. However,
@@ -32,8 +32,8 @@ 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.2/item-search) (`/search` endpoint) or
36-
[STAC API - Features](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.2/ogcapi-features)
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)
3737
(`/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
@@ -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.2/itemcollection/README.md). If a client excludes
64+
[ItemCollection](https://github.com/radiantearth/stac-spec/tree/v1.0.0-rc.3/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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: STAC API - Fields Extension
4-
version: 1.0.0-rc.2
4+
version: 1.0.0-rc.3
55
description: Adds parameter to control which fields are returned in the response.
66
contact:
77
name: STAC Specification
@@ -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.2/item-search#fields'
14-
- 'https://api.stacspec.org/v1.0.0-rc.2/ogcapi-features#fields'
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'
1515
paths: {}
1616
components:
1717
parameters:

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)