Skip to content

Commit dd7496f

Browse files
authored
update root catalog stac version to 1.1.0 (#842)
1 parent fc93bec commit dd7496f

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111

1212
- Use Node 20 by default. Node 20 will be supported by AWS into 2026. Upgrade was
1313
not done to Node 22 because it requires upgrading the ava/typescript library.
14+
- The default stac_version for the root Catalog / Landing page is now 1.1.0.
1415

1516
### Fixed
1617

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ There are some settings that should be reviewed and updated as needeed in the se
544544
| Name | Description | Default Value |
545545
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ |
546546
| OPENSEARCH_HOST | The URL of the OpenSearch cluster. | |
547-
| STAC_VERSION | The STAC version for the STAC objects returned by server. This should not be confused with the STAC API version. | 1.0.0 |
547+
| STAC_VERSION | The STAC version for the STAC objects returned by server. This should not be confused with the STAC API version. | 1.1.0 |
548548
| STAC_ID | ID of this catalog | stac-server |
549549
| STAC_TITLE | Title of this catalog | STAC API |
550550
| STAC_DESCRIPTION | Description of this catalog | A STAC API |

src/lambdas/api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ components:
389389
stac_version:
390390
title: STAC version
391391
type: string
392-
example: 1.0.0
392+
example: 1.1.0
393393
stac_extensions:
394394
title: STAC extensions
395395
type: array

src/lib/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ export const addItemLinks = function (results, endpoint) {
512512
}
513513

514514
const collectionsToCatalogLinks = function (results, endpoint) {
515-
const stacVersion = process.env['STAC_VERSION'] || '1.0.0'
515+
const stacVersion = process.env['STAC_VERSION'] || '1.1.0'
516516
const catalogId = process.env['STAC_ID'] || 'stac-server'
517517
const catalogTitle = process.env['STAC_TITLE'] || 'A STAC API'
518518
const catalogDescription = process.env['STAC_DESCRIPTION'] || 'A STAC API running on stac-server'

0 commit comments

Comments
 (0)