Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.0 RC2 #265

Merged
merged 27 commits into from
Feb 20, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fd37f75
Update README and CHANGELOG
m-mohr Jan 31, 2020
e065b2b
Removed early version notice
m-mohr Jan 31, 2020
9cd4d22
Fix property name for UDF Runtime Version.
m-mohr Feb 4, 2020
54be51e
Fixed CHANGELOG and README
m-mohr Feb 5, 2020
ddca5bf
Set $id for subtype schemas
m-mohr Feb 11, 2020
ebe8039
Fixed invalid EPSG code example
m-mohr Feb 11, 2020
1c3e4ed
Fixed invalid JSON Schema for process graph validation (used `from_ar…
m-mohr Feb 11, 2020
96d1f3e
Clarified how `from_parameter` is resolved in case no value is given,…
m-mohr Feb 11, 2020
1e67bd0
Fixed incomplete changelog
m-mohr Feb 12, 2020
05bc778
`GET /process_graphs`: Field `id` is required for each process.
m-mohr Feb 12, 2020
d224da2
Simplified regular expressions
m-mohr Feb 12, 2020
9214361
Replaced `POST /process_graphs` and `PATCH /process_graphs/{process_g…
m-mohr Feb 12, 2020
f1a7bb7
Clarified that back-ends not supporting pagination will return all re…
m-mohr Feb 12, 2020
7434ee5
Removed unused requestBody specification
m-mohr Feb 12, 2020
e1de608
For batch jobs (`/jobs`), services (`/services`) and sync. processing…
m-mohr Feb 12, 2020
750ce5b
Reintroduced the missing `offset` parameter for log endpoints.
m-mohr Feb 20, 2020
45f3e62
Fixed cloud cover in collection example
m-mohr Feb 20, 2020
2856cd5
Clarified how version numbers in well-known discovery are compared. #259
m-mohr Feb 20, 2020
ff6cfae
Merge branch 'draft' into log-offset
m-mohr Feb 20, 2020
f1f0dc7
Merge pull request #263 from Open-EO/log-offset
m-mohr Feb 20, 2020
430a252
Merge pull request #262 from Open-EO/data-processing-with-metadata
m-mohr Feb 20, 2020
10c399e
Merge branch 'draft' into put-process-graphs
m-mohr Feb 20, 2020
fbb2e02
Merge pull request #261 from Open-EO/put-process-graphs
m-mohr Feb 20, 2020
1774edd
Updated redoc-cli dependency
m-mohr Feb 20, 2020
a062369
Make several fields in user-defined processes nullable. #264
m-mohr Feb 20, 2020
d59ecad
Release 1.0.0 RC2
m-mohr Feb 20, 2020
c19827c
Merge remote-tracking branch 'origin/master' into draft
m-mohr Feb 20, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- `GET /process_graphs`: Field `id` is required for each process.
- For batch jobs (`/jobs`), services (`/services`) and sync. processing (`/result`) the property `process_graph` got replaced by `process`. It contains a process graph and optionally all process metadata. [#260](https://github.com/Open-EO/openeo-api/issues/260)

### Fixed
- Added `$id` to JSON Schema file for subtypes.
Expand Down
38 changes: 19 additions & 19 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2307,10 +2307,10 @@ paths:
title: Synchronous Result Request
type: object
required:
- process_graph
- process
properties:
process_graph:
$ref: '#/components/schemas/process_graph'
process:
$ref: '#/components/schemas/process_graph_with_metadata'
budget:
$ref: '#/components/schemas/budget'
plan:
Expand Down Expand Up @@ -2746,14 +2746,14 @@ paths:
type: object
required:
- type
- process_graph
- process
properties:
title:
$ref: '#/components/schemas/eo_title'
description:
$ref: '#/components/schemas/eo_description'
process_graph:
$ref: '#/components/schemas/process_graph'
process:
$ref: '#/components/schemas/process_graph_with_metadata'
type:
$ref: '#/components/schemas/service_type'
enabled:
Expand Down Expand Up @@ -2798,8 +2798,8 @@ paths:
$ref: '#/components/schemas/eo_title'
description:
$ref: '#/components/schemas/eo_description'
process_graph:
$ref: '#/components/schemas/process_graph'
process:
$ref: '#/components/schemas/process_graph_with_metadata'
enabled:
$ref: '#/components/schemas/service_enabled'
configuration:
Expand Down Expand Up @@ -2830,7 +2830,7 @@ paths:
type: object
required:
- id
- process_graph
- process
- enabled
- type
- url
Expand All @@ -2843,8 +2843,8 @@ paths:
$ref: '#/components/schemas/eo_title'
description:
$ref: '#/components/schemas/eo_description'
process_graph:
$ref: '#/components/schemas/process_graph'
process:
$ref: '#/components/schemas/process_graph_with_metadata'
url:
$ref: '#/components/schemas/service_url'
type:
Expand Down Expand Up @@ -3019,14 +3019,14 @@ paths:
title: Store Batch Job Request
type: object
required:
- process_graph
- process
properties:
title:
$ref: '#/components/schemas/eo_title'
description:
$ref: '#/components/schemas/eo_description'
process_graph:
$ref: '#/components/schemas/process_graph'
process:
$ref: '#/components/schemas/process_graph_with_metadata'
plan:
$ref: '#/components/schemas/billing_plan_defaultable'
budget:
Expand Down Expand Up @@ -3070,8 +3070,8 @@ paths:
$ref: '#/components/schemas/eo_title'
description:
$ref: '#/components/schemas/eo_description'
process_graph:
$ref: '#/components/schemas/process_graph'
process:
$ref: '#/components/schemas/process_graph_with_metadata'
plan:
$ref: '#/components/schemas/billing_plan_defaultable'
budget:
Expand Down Expand Up @@ -3099,7 +3099,7 @@ paths:
type: object
required:
- id
- process_graph
- process
- status
- created
properties:
Expand All @@ -3109,8 +3109,8 @@ paths:
$ref: '#/components/schemas/eo_title'
description:
$ref: '#/components/schemas/eo_description'
process_graph:
$ref: '#/components/schemas/process_graph'
process:
$ref: '#/components/schemas/process_graph_with_metadata'
status:
$ref: '#/components/schemas/status'
progress:
Expand Down