You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+85-2
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,97 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## [0.4.2] - 2019-06-11
7
+
## 1.0.0-rc.1 - 2020-01-31
8
+
9
+
**Note:** The user and developer documentation has been moved to [openeo.org](https://openeo.org/documentation).
10
+
11
+
### Added
12
+
13
+
-`GET /`:
14
+
- Field `production` added to response. [#184](https://github.com/Open-EO/openeo-api/issues/184)
15
+
- Required fields `stac_version` and `id` added to response for STAC compatibility. [#247](https://github.com/Open-EO/openeo-api/issues/247)
16
+
- Links with relation types `terms-of-service` and `privacy-policy` explicitly documented. Clients must handle them properly if present. [#212](https://github.com/Open-EO/openeo-api/issues/212)
17
+
-`GET /collections` and `GET /collections/{collectionId}`:
18
+
- New field `deprecated` can be used to indicate outdated collections. Links with relation type `latest-version` can point to the latest version. [#226](https://github.com/Open-EO/openeo-api/issues/226)
19
+
- Added a Data Cube Dimension of type `bands` to the `cube:dimensions` property. [#208](https://github.com/Open-EO/openeo-api/issues/208)
20
+
-`GET /conformance` has been added for OCG API compliance. Back-ends may implement it for compatibility with OGC API clients.
21
+
-`POST /result`: May add a link to a log file in the header. [#214](https://github.com/Open-EO/openeo-api/issues/214)
22
+
-`GET /jobs/{job_id}/logs` and `GET /services/{service_id}/logs`: Endpoints that publish logging information. [#214](https://github.com/Open-EO/openeo-api/issues/214)
23
+
-`GET /files`, `GET /jobs`, `GET /process_graphs`, `GET /services`: Added `limit` parameter for pagination and clarified how to use links for pagination. [#103](https://github.com/Open-EO/openeo-api/issues/103)
24
+
- JSON Schema for the defined schema `subtypes`.
8
25
9
26
### Changed
10
-
- Updated the process catalog, see the separate changelog.
27
+
28
+
- The concept of callbacks has simply been renamed to process graph. Schema format/subtype `callback` has been renamed to `process-graph`. [#216](https://github.com/Open-EO/openeo-api/issues/216)
29
+
- Unsupported endpoints are not forced to return a `FeatureUnsupported` (501) error and can return a simple `NotFound` (404) instead.
30
+
- If `currency` returned by `GET /` is `null`, `costs` and `budget` are unsupported. `costs` and `budget` fields in various endpoints can be set to `null` (default).
31
+
- Official support for [CommonMark 0.29 instead of CommonMark 0.28](https://spec.commonmark.org/0.29/changes.html). [#203](https://github.com/Open-EO/openeo-api/issues/203)
32
+
- The parameter `user_id ` has been removed from the endpoints to manage user files (`/files/{user_id}`). [#218](https://github.com/Open-EO/openeo-api/issues/218)
33
+
- Schema subtype `band-name` allows common band names, too. [Processes#77](https://github.com/Open-EO/openeo-processes/issues/77)
34
+
- Link property `rel` is required.
35
+
- OpenAPI string format `url` has been replaced with `uri`.
36
+
- Process graphs:
37
+
-`from_argument` has been renamed to `from_parameter`.
38
+
-`callback` has been renamed to `process_graph`.
39
+
-`from_parameter` can access parameters defined in parent scopes.
40
+
-`from_parameter` can be used in the top-level process graph.
41
+
- Process graph variables (objects with `variable_id` etc.) have been removed.
42
+
-`GET /jobs`, `GET /jobs/{job_id}`, `GET /services` and `GET /services/{service_id}`: Renamed field `submitted` to `created` for consistency with STAC job results.
43
+
-`GET /`: Property `links` is required.
44
+
-`GET /service_types`:
45
+
-`parameter` has been renamed to `configuration` to not overlap with `process_parameters`.
46
+
-`variables` has been renamed to `process_parameters` and has a different schema now. [#161](https://github.com/Open-EO/openeo-api/issues/161)
47
+
-`GET /processes`:
48
+
- Default values are now specified on the parameter-level, not in the JSON schemas.
49
+
- Multiple data types in parameters or return values are supported as arrays. Using `anyOf` is discouraged.
50
+
- Parameters are defined as array. `parameter_order` is therefore removed and the name is part of the parameter object. [#239](https://github.com/Open-EO/openeo-api/issues/239)
51
+
- Process graph (callback) parameters have a new, more advanced schema, allowing to define more aspects of the process graph parameters. [#239](https://github.com/Open-EO/openeo-api/issues/239)
52
+
- Return values don't require a description any longer.
53
+
-`required` was replaced with `optional` with inverted behavior.
54
+
-`GET /collections` and `GET /collections/{collectionId}`: Updated STAC to version 0.9.0. See the [STAC Changelog](https://github.com/radiantearth/stac-spec/blob/master/CHANGELOG.md) for more details. [#247](https://github.com/Open-EO/openeo-api/issues/247), [#204](https://github.com/Open-EO/openeo-api/issues/204).
55
+
-`GET /credentials/oidc`: Changed response to support multiple OpenID Connect identity providers ([#201](https://github.com/Open-EO/openeo-api/issues/201)) and clarified workflow overall.
56
+
- Bearer token are built from the authentication method, an optional provider id and the token itself. [#219](https://github.com/Open-EO/openeo-api/issues/219)
57
+
-`GET /udf_runtimes`: `description` fields don't allow `null` values any longer.
58
+
-`GET /output_formats` renamed to `GET /file_formats` to allow listing input file formats. [#215](https://github.com/Open-EO/openeo-api/issues/215)
59
+
- The structure of the response has changed. The former response body for the output formats is now available in the property `output`.
60
+
- The input file formats are now available in the property `input` with the same schema as for output formats.
61
+
- Additionally, each format can have a `title`.
62
+
-`GET /jobs/{job_id}/results`:
63
+
- Response body for status code 200 has changed to be a valid STAC Item, allows content type `application/geo+json`.
64
+
- Response body for status code 424 has been extended.
65
+
66
+
### Deprecated
67
+
68
+
- The processes should not use the JSON Schema keyword `format` any longer. Instead use the custom keyword `subtype`. [#233](https://github.com/Open-EO/openeo-processes/issues/233)
69
+
- PROJ definitions are deprecated in favor of EPSG codes and WKT2. [#58](https://github.com/Open-EO/openeo-processes/issues/58)
70
+
71
+
### Removed
72
+
73
+
- Process graph variables. Use Parameter References instead.
74
+
-`GET /processes`: `media_type` removed from parameters and return values. Use `contentMediaType` in the JSON Schema instead.
75
+
-`GET /job/{job_id}`: Removed property `error`. Request information from `GET /job/{job_id}/logs` instead.
76
+
-`GET /job/{job_id}/results`:
77
+
- Metalink XML encoding has been removed. [#205](https://github.com/Open-EO/openeo-api/issues/205)
78
+
-`Expires` header has been removed, use `expires` property in the response body instead.
79
+
-`GET /credentials/basic` doesn't return a `user_id`. Instead request it from `GET /me`.
80
+
-`GET /collections/{collectionId}`: Removed optional STAC extensions from the API specification. Inform yourself about useful [STAC extensions](https://github.com/radiantearth/stac-spec/tree/master/extensions#list-of-content-extensions) instead. [#176](https://github.com/Open-EO/openeo-api/issues/176)
81
+
-`GET /service_types` doesn't support `attributes` any longer.
82
+
83
+
### Fixed
84
+
85
+
- Service parameters and attributes in `GET /service_types` and output format parameters in `GET /file_formats` (previously `GET /output_formats`) now have a `type`, which was previously only mentioned in examples.
86
+
-`GET /processes`: Parameters `arguments` and `process_graph` can't be used together in process examples.
87
+
-`GET /collections`, `GET /processes`: Clarified that pagination is not supported. [#103](https://github.com/Open-EO/openeo-api/issues/103)
88
+
-`GET ./well-known/openeo`: Clarified how clients and back-ends should implement well-known discovery. [#202](https://github.com/Open-EO/openeo-api/issues/202)
89
+
90
+
## [0.4.2] - 2019-06-11
11
91
12
92
### Added
13
93
- Basic JSON Schema for process graph validation.
14
94
95
+
### Changed
96
+
- Updated the process catalog, see the separate changelog.
97
+
15
98
### Removed
16
99
- Disallowed CommonMark in descriptions of process graph variables and process graph nodes.
Copy file name to clipboardExpand all lines: README.md
+18-18
Original file line number
Diff line number
Diff line change
@@ -2,33 +2,33 @@
2
2
3
3
openEO develops an open API to connect R, Python and JavaScript clients to big Earth observation cloud back-ends in a simple and unified way. This repository contains this API, the openEO (core) API.
The openEO (core) API is currently released in version **0.4.2**.
9
+
The openEO (core) API is currently released in version **1.0.0-rc.1**.
10
10
11
11
**Note:** The specification is currently still an early version, with the potential for some major things to change. The core is now fleshed out, so implementors are encouraged to try it out and give feedback. But the goal is to actually be able to act on that feedback, which will mean changes are quite possible. A solid basis is specified right now, but best practices, extensions and specification details will emerge with implementation.
|[0.0.1](https://github.com/Open-EO/openeo-api/tree/0.0.1) ([Spec](https://open-eo.github.io/openeo-api/v/0.0.1/index.html)) | legacy | First draft with basic ideas, loosely implemented. |
16
-
|[0.0.2](https://github.com/Open-EO/openeo-api/tree/0.0.2) ([Spec](https://open-eo.github.io/openeo-api/v/0.0.2/index.html)) | legacy | Proof of concept, implemented. |
17
-
|[0.3.0](https://github.com/Open-EO/openeo-api/tree/0.3.0) ([Spec](https://open-eo.github.io/openeo-api/v/0.3.0/index.html)) | legacy | Major rework. |
18
-
|[0.3.1](https://github.com/Open-EO/openeo-api/tree/0.3.1) ([Spec](https://open-eo.github.io/openeo-api/v/0.3.1/index.html)) | legacy | Fixing minor issues, see the [changelog](CHANGELOG.md#031---2018-11-06). |
19
-
|[0.4.0](https://github.com/Open-EO/openeo-api/tree/0.4.0) ([Spec](https://open-eo.github.io/openeo-api/v/0.4.0/index.html)) | legacy | Improved discovery, added processes catalogue, new process graph structure and [more](CHANGELOG.md#040---2019-03-07). |
20
-
|[0.4.1](https://github.com/Open-EO/openeo-api/tree/0.4.1) ([Spec](https://open-eo.github.io/openeo-api/v/0.4.1/index.html)) | legacy | Bugfix release, see the [changelog](CHANGELOG.md#041---2019-05-29). |
21
-
|[**0.4.2**](https://github.com/Open-EO/openeo-api/tree/0.4.2) ([Spec](https://open-eo.github.io/openeo-api/v/0.4.2/index.html)) |**current**| Bugfix release, see the [changelog](CHANGELOG.md#042---2019-06-11). |
22
-
|[draft](https://github.com/Open-EO/openeo-api/tree/draft) ([Spec](https://open-eo.github.io/openeo-api/draft/index.html)) | planned | Improvements based on implementer feedback, introduce extension concept. Potentially version 1.0.0. |
|[draft](https://api.openeo.org/draft)| planned | Bug fixes based on developer feedback, introduce extension concept. Potentially version 1.0.0-final. |
16
+
|[**1.0.0-rc.1**](https://api.openeo.org)|**current**| Release candidate for first stable version of openEO, see the [changelog](CHANGELOG.md#100-rc1---2020-01-31). |
17
+
|[0.4.2](https://api.openeo.org/v/0.4.2)| legacy | Bugfix release, see the [changelog](CHANGELOG.md#042---2019-06-11). |
18
+
|[0.4.1](https://api.openeo.org/v/0.4.1)| legacy | Bugfix release, see the [changelog](CHANGELOG.md#041---2019-05-29). |
19
+
|[0.4.0](https://api.openeo.org/v/0.4.0)| legacy | Improved discovery, added processes catalogue, new process graph structure and [more](CHANGELOG.md#040---2019-03-07). |
20
+
|[0.3.1](https://api.openeo.org/v/0.3.1)| legacy | Fixing minor issues, see the [changelog](CHANGELOG.md#031---2018-11-06). |
21
+
|[0.3.0](https://api.openeo.org/v/0.3.0)| legacy | Major rework. |
22
+
|[0.0.2](https://github.com/Open-EO/openeo-api/tree/0.0.2)| legacy | Proof of concept, implemented. |
23
+
|[0.0.1](https://github.com/Open-EO/openeo-api/tree/0.0.1)| legacy | First draft with basic ideas, loosely implemented. |
23
24
24
25
See also the [changelog](CHANGELOG.md) and the [milestones](https://github.com/Open-EO/openeo-api/milestones) for a rough roadmap based on GitHub issues.
25
26
26
27
## Repository
27
28
28
-
This repository contains a set of files formally and technically describing the openEO API, each with a human-readable and easily browseable version:
29
+
This repository contains a set of files formally describing the openEO API, each with a human-readable and easily browseable version:
29
30
30
-
*[docs/](docs/) ([browseable version](https://open-eo.github.io/openeo-api/v/0.4.2/)) contains all additional written documentation, including 'getting started' guides, the architecture, feature descriptions, development guidelines and more.
31
-
*[processes/](processes/) ([browseable version](https://open-eo.github.io/openeo-api/v/0.4.2/processreference/)) defines pre-defined core processes back-ends may implement for best interoperability.
32
-
*[openapi.json](openapi.json) ([browseable version](https://open-eo.github.io/openeo-api/v/0.4.2/apireference/)) provides the [openAPI](https://www.openapis.org/) 3.0 definition of the openEO API.
33
-
*[subscriptions.json](subscriptions.json) ([browseable version](https://open-eo.github.io/openeo-api/v/0.4.2/apireference-subscriptions/)) provides the [AsyncAPI](https://www.asyncapi.com/) 1.2 definitions for the WebSocket-based subscriptions and notifications API for openEO.
34
-
*[errors.json](errors.json) ([browseable version](https://open-eo.github.io/openeo-api/v/0.4.2/errors/#openeo-error-codes)) is a list of potential global error codes and messages, excluding specific exceptions separately available for each process.
31
+
*[openapi.yaml](openapi.yaml) ([browseable version](https://api.openeo.org/)) provides the [openAPI](https://www.openapis.org/) 3.0 definition of the openEO API.
32
+
*[errors.json](errors.json) is a list of potential global error codes and messages, excluding specific exceptions separately available for each process.
33
+
*[subtype-schema.json](subtype-schema.json) defines data types (subtypes) for JSON Schema used in openEO.
34
+
*[assets/] contains some useful additional files such as examples or schemas. All of these are non-binding additions. The source of truth are the top-level specification files.
0 commit comments