Skip to content

Commit 4e18c49

Browse files
Phil Varnergadomski
andauthored
update spec versions for extensions (#611)
Co-authored-by: Pete Gadomski <[email protected]>
1 parent 4e76c0d commit 4e18c49

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

CHANGELOG.md

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

8+
## [Unreleased] - TBD
9+
10+
### Changed
11+
12+
- Fix OpenAPI spec version from 1.0.0-rc.4 to 1.0.0
13+
- Update fields, sort, and query extensions to v1.0.0
14+
- Update transaction extension to v1.0.0-rc.3
15+
816
## [2.3.0] - 2023-09-12
917

1018
### Changed

src/lambdas/api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: STAC API
4-
version: 1.0.0-rc.4
4+
version: 1.0.0
55
description: >-
66
This is an OpenAPI definition of the SpatioTemporal Asset Catalog API specification.
77
contact:

src/lib/api.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -883,20 +883,20 @@ const getConformance = async function (txnEnabled) {
883883
`${foundationPrefix}/collections`,
884884
`${foundationPrefix}/ogcapi-features`,
885885
`${foundationPrefix}/item-search`,
886-
'https://api.stacspec.org/v1.0.0-rc.3/ogcapi-features#fields',
887-
'https://api.stacspec.org/v1.0.0-rc.2/ogcapi-features#sort',
888-
'https://api.stacspec.org/v1.0.0-rc.2/ogcapi-features#query',
889-
'https://api.stacspec.org/v1.0.0-rc.3/item-search#fields',
890-
'https://api.stacspec.org/v1.0.0-rc.2/item-search#sort',
891-
'https://api.stacspec.org/v1.0.0-rc.2/item-search#query',
886+
'https://api.stacspec.org/v1.0.0/ogcapi-features#fields',
887+
'https://api.stacspec.org/v1.0.0/ogcapi-features#sort',
888+
'https://api.stacspec.org/v1.0.0/ogcapi-features#query',
889+
'https://api.stacspec.org/v1.0.0/item-search#fields',
890+
'https://api.stacspec.org/v1.0.0/item-search#sort',
891+
'https://api.stacspec.org/v1.0.0/item-search#query',
892892
'https://api.stacspec.org/v0.3.0/aggregation',
893893
'http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core',
894894
'http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30',
895895
'http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson'
896896
]
897897

898898
if (txnEnabled) {
899-
conformsTo.push('https://api.stacspec.org/v1.0.0-rc.2/ogcapi-features/extensions/transaction')
899+
conformsTo.push('https://api.stacspec.org/v1.0.0-rc.3/ogcapi-features/extensions/transaction')
900900
}
901901

902902
return { conformsTo }

0 commit comments

Comments
 (0)