Skip to content

Commit 2f0a35a

Browse files
authored
Merge pull request #1112 from radiantearth/version-changes-rc3
Version changes for rc3
2 parents b398536 + 094b90d commit 2f0a35a

21 files changed

+29
-26
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [v1.0.0-rc.3] - 2021-04-29
11+
1012
### Added
1113

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

1719
### Changed
1820

1921
- 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))
2022
- Updated examples for automatic collection creation from code and validation ([#1080](https://github.com/radiantearth/stac-spec/pull/1080))
2123
- Clarified that stac_extensions should also list extensions that are used in Collection summaries. ([#1077](https://github.com/radiantearth/stac-spec/issues/1077))
22-
- The Stats Object for Summaries has been renamed to Range Object (no functional change).
24+
- The Stats Object for Summaries has been renamed to Range Object (no functional change). ([#1093](https://github.com/radiantearth/stac-spec/pull/1093))
2325
- `changed`, `created` (common metadata) and temporal extents (collections): Timestamps must be always in UTC ([#1095](https://github.com/radiantearth/stac-spec/issues/1095))
2426
- Clarified that collection summaries do not require that all property fields are summarized. ([#1106](https://github.com/radiantearth/stac-spec/issues/1106))
2527
- 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))
@@ -421,6 +423,7 @@ See the [milestone 0.4.0 in the issue tracker](https://github.com/radiantearth/s
421423
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.
422424

423425
[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/master...dev>
426+
[v1.0.0-rc.3]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-rc.2..v1.0.0-rc.3>
424427
[v1.0.0-rc.2]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-rc.1..v1.0.0-rc.2>
425428
[v1.0.0-rc.1]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-beta.2..v1.0.0-rc.1>
426429
[v1.0.0-beta.2]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-beta.1..v1.0.0-beta.2>

catalog-spec/json-schema/catalog-core.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/catalog-spec/json-schema/catalog-core.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/catalog-spec/json-schema/catalog-core.json#",
44
"title": "Common STAC Catalog + Collection Fields",
55
"description": "This object represents the common fields shared by Catalogs and Collections",
66
"allOf": [
@@ -22,7 +22,7 @@
2222
"stac_version": {
2323
"title": "STAC version",
2424
"type": "string",
25-
"const": "1.0.0-rc.2"
25+
"const": "1.0.0-rc.3"
2626
},
2727
"stac_extensions": {
2828
"title": "STAC extensions",

catalog-spec/json-schema/catalog.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/catalog-spec/json-schema/catalog.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/catalog-spec/json-schema/catalog.json#",
44
"title": "STAC Catalog Specification",
55
"description": "This object represents Catalogs in a SpatioTemporal Asset Catalog.",
66
"allOf": [

collection-spec/json-schema/collection.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/collection-spec/json-schema/collection.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/collection-spec/json-schema/collection.json#",
44
"title": "STAC Collection Specification",
55
"description": "This object represents Collections in a SpatioTemporal Asset Catalog.",
66
"allOf": [

examples/catalog.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "examples",
33
"type": "Catalog",
4-
"stac_version": "1.0.0-rc.2",
4+
"stac_version": "1.0.0-rc.3",
55
"description": "This catalog is a simple demonstration of an example catalog that is used to organize a hierarchy of collections and their items.",
66
"links": [
77
{
@@ -35,7 +35,7 @@
3535
},
3636
{
3737
"rel": "self",
38-
"href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0-rc.2/examples/catalog.json",
38+
"href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0-rc.3/examples/catalog.json",
3939
"type": "application/json"
4040
}
4141
]

examples/collection-only/collection-with-schemas.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-rc.2",
2+
"stac_version": "1.0.0-rc.3",
33
"stac_extensions": [
44
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
55
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",

examples/collection-only/collection.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"type": "Collection",
3-
"stac_version": "1.0.0-rc.2",
3+
"stac_version": "1.0.0-rc.3",
44
"stac_extensions": [
55
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
66
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",

examples/collection.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
66
"https://stac-extensions.github.io/view/v1.0.0/schema.json"
77
],
8-
"stac_version": "1.0.0-rc.2",
8+
"stac_version": "1.0.0-rc.3",
99
"description": "A simple collection demonstrating core catalog fields with links to a couple of items",
1010
"title": "Simple Example Collection",
1111
"providers": [
@@ -103,7 +103,7 @@
103103
},
104104
{
105105
"rel": "self",
106-
"href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0-rc.2/examples/collection.json",
106+
"href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.0.0-rc.3/examples/collection.json",
107107
"type": "application/json"
108108
}
109109
]

examples/collectionless-item.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-rc.2",
2+
"stac_version": "1.0.0-rc.3",
33
"stac_extensions": [
44
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
55
"https://stac-extensions.github.io/view/v1.0.0/schema.json"

examples/core-item.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-rc.2",
2+
"stac_version": "1.0.0-rc.3",
33
"stac_extensions": [],
44
"type": "Feature",
55
"id": "20201211_223832_CS2",

examples/extended-item.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-rc.2",
2+
"stac_version": "1.0.0-rc.3",
33
"stac_extensions": [
44
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
55
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",

examples/extensions-collection/collection.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "extensions-collection",
33
"type": "Collection",
4-
"stac_version": "1.0.0-rc.2",
4+
"stac_version": "1.0.0-rc.3",
55
"description": "A heterogenous collection containing deeper examples of various extensions",
66
"links": [
77
{

examples/extensions-collection/proj-example/proj-example.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"type": "Feature",
3-
"stac_version": "1.0.0-rc.2",
3+
"stac_version": "1.0.0-rc.3",
44
"id": "proj-example",
55
"properties": {
66
"datetime": "2018-10-01T01:08:32.033000Z",

examples/simple-item.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"stac_version": "1.0.0-rc.2",
2+
"stac_version": "1.0.0-rc.3",
33
"stac_extensions": [],
44
"type": "Feature",
55
"id": "20201211_223832_CS2",

item-spec/json-schema/basics.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/basics.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/basics.json#",
44
"title": "Basic Descriptive Fields",
55
"type": "object",
66
"properties": {

item-spec/json-schema/datetime.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/datetime.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/datetime.json#",
44
"title": "Date and Time Fields",
55
"type": "object",
66
"dependencies": {

item-spec/json-schema/instrument.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/instrument.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/instrument.json#",
44
"title": "Instrument Fields",
55
"type": "object",
66
"properties": {

item-spec/json-schema/item.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/item.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/item.json#",
44
"title": "STAC Item",
55
"type": "object",
66
"description": "This object represents the metadata for an item in a SpatioTemporal Asset Catalog.",
@@ -93,7 +93,7 @@
9393
"stac_version": {
9494
"title": "STAC version",
9595
"type": "string",
96-
"const": "1.0.0-rc.2"
96+
"const": "1.0.0-rc.3"
9797
},
9898
"stac_extensions": {
9999
"title": "STAC extensions",

item-spec/json-schema/licensing.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/licensing.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/licensing.json#",
44
"title": "Licensing Fields",
55
"type": "object",
66
"properties": {

item-spec/json-schema/provider.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/provider.json#",
3+
"$id": "https://schemas.stacspec.org/v1.0.0-rc.3/item-spec/json-schema/provider.json#",
44
"title": "Provider Fields",
55
"type": "object",
66
"properties": {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stac-spec",
3-
"version": "1.0.0-rc.2",
3+
"version": "1.0.0-rc.3",
44
"description": "STAC spec helpers to check the spec.",
55
"repository": "https://github.com/radiantearth/stac-spec",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)