Skip to content

Commit

Permalink
Merge pull request #1112 from radiantearth/version-changes-rc3
Browse files Browse the repository at this point in the history
Version changes for rc3
  • Loading branch information
cholmes committed Apr 29, 2021
2 parents b398536 + 094b90d commit 2f0a35a
Show file tree
Hide file tree
Showing 21 changed files with 29 additions and 26 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [v1.0.0-rc.3] - 2021-04-29

### Added

- Summaries are allowed to specify JSON Schema in addition to ranges and sets of values. ([#1045](https://github.com/radiantearth/stac-spec/issues/1045))
- Added `preview` relation type for interoperable thumbnails to best practices. ([#1090](https://github.com/radiantearth/stac-spec/issues/1090))
- Recommendation to include both `root` and `parent` relation types when they point at the same file.
- Recommendation to include both `root` and `parent` relation types when they point at the same file. ([#1098](https://github.com/radiantearth/stac-spec/issues/1098))
- Overview section linking to various foundational standards. ([#1111](https://github.com/radiantearth/stac-spec/pull/1111))

### Changed

- The first extent in a Collection is always the overall extent, followed by more specific extents. ([#1064](https://github.com/radiantearth/stac-spec/issues/1064), [opengeospatial/ogcapi-features#520](https://github.com/opengeospatial/ogcapi-features/pull/520))
- Updated examples for automatic collection creation from code and validation ([#1080](https://github.com/radiantearth/stac-spec/pull/1080))
- Clarified that stac_extensions should also list extensions that are used in Collection summaries. ([#1077](https://github.com/radiantearth/stac-spec/issues/1077))
- The Stats Object for Summaries has been renamed to Range Object (no functional change).
- The Stats Object for Summaries has been renamed to Range Object (no functional change). ([#1093](https://github.com/radiantearth/stac-spec/pull/1093))
- `changed`, `created` (common metadata) and temporal extents (collections): Timestamps must be always in UTC ([#1095](https://github.com/radiantearth/stac-spec/issues/1095))
- Clarified that collection summaries do not require that all property fields are summarized. ([#1106](https://github.com/radiantearth/stac-spec/issues/1106))
- Clarified that gsd should only be used on an asset to represent the sensor, not just different processing. ([#1105](https://github.com/radiantearth/stac-spec/pull/1105))
Expand Down Expand Up @@ -421,6 +423,7 @@ See the [milestone 0.4.0 in the issue tracker](https://github.com/radiantearth/s
Thanks @hgs-msmith, @matthewhanson, @hgs-trutherford, @rouault, @joshfix, @alkamin, @hemphillda, @jeffnaus and @fredliporace for contributing to the spec directly, and to [everyone](https://github.com/opengeospatial/wfs3hackathon/blob/master/notes/introductions.md#participants) who participated in the [Ft Collins sprint](https://github.com/radiantearth/community-sprints/tree/master/03072018-ft-collins-co) and brought great ideas.

[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/master...dev>
[v1.0.0-rc.3]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-rc.2..v1.0.0-rc.3>
[v1.0.0-rc.2]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-rc.1..v1.0.0-rc.2>
[v1.0.0-rc.1]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-beta.2..v1.0.0-rc.1>
[v1.0.0-beta.2]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-beta.1..v1.0.0-beta.2>
Expand Down
4 changes: 2 additions & 2 deletions catalog-spec/json-schema/catalog-core.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/catalog-spec/json-schema/catalog-core.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/catalog-spec/json-schema/catalog-core.json#",
"title": "Common STAC Catalog + Collection Fields",
"description": "This object represents the common fields shared by Catalogs and Collections",
"allOf": [
Expand All @@ -22,7 +22,7 @@
"stac_version": {
"title": "STAC version",
"type": "string",
"const": "1.0.0-rc.2"
"const": "1.0.0-rc.3"
},
"stac_extensions": {
"title": "STAC extensions",
Expand Down
2 changes: 1 addition & 1 deletion catalog-spec/json-schema/catalog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/catalog-spec/json-schema/catalog.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/catalog-spec/json-schema/catalog.json#",
"title": "STAC Catalog Specification",
"description": "This object represents Catalogs in a SpatioTemporal Asset Catalog.",
"allOf": [
Expand Down
2 changes: 1 addition & 1 deletion collection-spec/json-schema/collection.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/collection-spec/json-schema/collection.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/collection-spec/json-schema/collection.json#",
"title": "STAC Collection Specification",
"description": "This object represents Collections in a SpatioTemporal Asset Catalog.",
"allOf": [
Expand Down
4 changes: 2 additions & 2 deletions examples/catalog.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "examples",
"type": "Catalog",
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"description": "This catalog is a simple demonstration of an example catalog that is used to organize a hierarchy of collections and their items.",
"links": [
{
Expand Down Expand Up @@ -35,7 +35,7 @@
},
{
"rel": "self",
"href": "https://github.com/raw/radiantearth/stac-spec/v1.0.0-rc.2/examples/catalog.json",
"href": "https://github.com/raw/radiantearth/stac-spec/v1.0.0-rc.3/examples/catalog.json",
"type": "application/json"
}
]
Expand Down
2 changes: 1 addition & 1 deletion examples/collection-only/collection-with-schemas.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
Expand Down
2 changes: 1 addition & 1 deletion examples/collection-only/collection.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "Collection",
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",
Expand Down
4 changes: 2 additions & 2 deletions examples/collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json"
],
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"description": "A simple collection demonstrating core catalog fields with links to a couple of items",
"title": "Simple Example Collection",
"providers": [
Expand Down Expand Up @@ -103,7 +103,7 @@
},
{
"rel": "self",
"href": "https://github.com/raw/radiantearth/stac-spec/v1.0.0-rc.2/examples/collection.json",
"href": "https://github.com/raw/radiantearth/stac-spec/v1.0.0-rc.3/examples/collection.json",
"type": "application/json"
}
]
Expand Down
2 changes: 1 addition & 1 deletion examples/collectionless-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json"
Expand Down
2 changes: 1 addition & 1 deletion examples/core-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"stac_extensions": [],
"type": "Feature",
"id": "20201211_223832_CS2",
Expand Down
2 changes: 1 addition & 1 deletion examples/extended-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",
Expand Down
2 changes: 1 addition & 1 deletion examples/extensions-collection/collection.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "extensions-collection",
"type": "Collection",
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"description": "A heterogenous collection containing deeper examples of various extensions",
"links": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "Feature",
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"id": "proj-example",
"properties": {
"datetime": "2018-10-01T01:08:32.033000Z",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.2",
"stac_version": "1.0.0-rc.3",
"stac_extensions": [],
"type": "Feature",
"id": "20201211_223832_CS2",
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/basics.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/basics.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/basics.json#",
"title": "Basic Descriptive Fields",
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/datetime.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/datetime.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/datetime.json#",
"title": "Date and Time Fields",
"type": "object",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/instrument.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/instrument.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/instrument.json#",
"title": "Instrument Fields",
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions item-spec/json-schema/item.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/item.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/item.json#",
"title": "STAC Item",
"type": "object",
"description": "This object represents the metadata for an item in a SpatioTemporal Asset Catalog.",
Expand Down Expand Up @@ -93,7 +93,7 @@
"stac_version": {
"title": "STAC version",
"type": "string",
"const": "1.0.0-rc.2"
"const": "1.0.0-rc.3"
},
"stac_extensions": {
"title": "STAC extensions",
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/licensing.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/licensing.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/licensing.json#",
"title": "Licensing Fields",
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion item-spec/json-schema/provider.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/provider.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/provider.json#",
"title": "Provider Fields",
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stac-spec",
"version": "1.0.0-rc.2",
"version": "1.0.0-rc.3",
"description": "STAC spec helpers to check the spec.",
"repository": "https://github.com/radiantearth/stac-spec",
"license": "Apache-2.0",
Expand Down

0 comments on commit 2f0a35a

Please sign in to comment.