From 54296a792818a6c7caa44e1114bb0bc33a6f8e1d Mon Sep 17 00:00:00 2001 From: Chris Holmes Date: Tue, 30 Mar 2021 19:21:18 -0700 Subject: [PATCH 1/5] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96e0ba97..c2156c75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Removed +- The remaining extensions in the spec (EO, Projection, Scientific Citation and View) have been moved out of the core specification, into their own repos in the [stac-extensions](https://github.com/stac-extensions/) GitHub organization. They must now be referred to by their schemas directly - the name shortcuts for them are no longer valid. The concept of the 'named shortcut' also goes away entirely. ([#1070](https://github.com/radiantearth/stac-spec/pull/1070)) + ### Fixed - Collection Assets were specified as required (only in written text, not in JSON Schema), but that was incorrectly copied over from the former `collection-assets` extension. Collection Assets are not required. From ee637b88c3b80bc1572c2190bbe60c3f2a3691c1 Mon Sep 17 00:00:00 2001 From: Chris Holmes Date: Tue, 30 Mar 2021 19:22:52 -0700 Subject: [PATCH 2/5] Update CHANGELOG.md --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2156c75..9a8027a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [v1.0.0-rc.2] - 2021-03-30 -### Added - ### Changed - Required properties of type `string` require a minimum length of `1`. ([#1065](https://github.com/radiantearth/stac-spec/pull/1065)) From 3315ed024f55e4fa64d44526037a7ddab1c8641e Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Wed, 31 Mar 2021 11:19:41 +0200 Subject: [PATCH 3/5] Fix invalid version numbers --- catalog-spec/json-schema/catalog-core.json | 2 +- item-spec/json-schema/item.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/catalog-spec/json-schema/catalog-core.json b/catalog-spec/json-schema/catalog-core.json index fb75680f..503d7a66 100644 --- a/catalog-spec/json-schema/catalog-core.json +++ b/catalog-spec/json-schema/catalog-core.json @@ -22,7 +22,7 @@ "stac_version": { "title": "STAC version", "type": "string", - "const": "1.0.0-rc.1" + "const": "1.0.0-rc.2" }, "stac_extensions": { "title": "STAC extensions", diff --git a/item-spec/json-schema/item.json b/item-spec/json-schema/item.json index 013a1663..34d351f3 100644 --- a/item-spec/json-schema/item.json +++ b/item-spec/json-schema/item.json @@ -93,7 +93,7 @@ "stac_version": { "title": "STAC version", "type": "string", - "const": "1.0.0-rc.1" + "const": "1.0.0-rc.2" }, "stac_extensions": { "title": "STAC extensions", diff --git a/package.json b/package.json index 4e03739e..3fb2aeee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stac-spec", - "version": "1.0.0-rc.1", + "version": "1.0.0-rc.2", "description": "STAC spec helpers to check the spec.", "repository": "https://github.com/radiantearth/stac-spec", "license": "Apache-2.0", From 428c69419b6959fc8a2f232ae6f072911bb75be6 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Wed, 31 Mar 2021 13:39:17 +0200 Subject: [PATCH 4/5] Fix typo --- collection-spec/collection-spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collection-spec/collection-spec.md b/collection-spec/collection-spec.md index bd060dbd..f781bb91 100644 --- a/collection-spec/collection-spec.md +++ b/collection-spec/collection-spec.md @@ -88,7 +88,7 @@ Collection's license(s) as a SPDX [License identifier](https://spdx.org/licenses #### summaries -Collections are are *strongly recommended* to provide summaries of the values of fields that they can expect from the `properties` +Collections are *strongly recommended* to provide summaries of the values of fields that they can expect from the `properties` of STAC Items contained in this Collection. This enables users to get a good sense of what the ranges and potential values of different fields in the Collection are, without to inspect a number of Items (or crawl them exhaustively to get a definitive answer). Summaries help to fully define Collections, especially if they don't link to any Items. They also give clients enough information to From d81a5a437481d60a3f9081ebeda82e2b192bbf4f Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Wed, 31 Mar 2021 16:16:01 +0200 Subject: [PATCH 5/5] Try to fix CI for publishing schemas --- .circleci/config.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ab390911..7095d1c8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -46,12 +46,8 @@ workflows: - test_examples - test_docs - publish_schemas: - requires: - - test_examples filters: tags: - # All (future) tags only: /^v.*/ branches: - # Only dev branch, not PRs - only: dev \ No newline at end of file + ignore: /^((?!dev).)*$/ \ No newline at end of file