-
Notifications
You must be signed in to change notification settings - Fork 13
Release v1.3.0 #582
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
Open
m-mohr
wants to merge
54
commits into
master
Choose a base branch
from
draft
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Release v1.3.0 #582
Changes from all commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
dd7428d
Update changelog date for 1.2.0
m-mohr 2396ac1
Fix that file format parameters show datacube and process parameter s…
m-mohr 814c386
Clarifications in extensions
m-mohr 9555433
`PATCH /services/{service_id}` and `PATCH /jobs/{job_id}`: Explicitly…
m-mohr cecc3f4
Minor updates to wording and tooling
m-mohr e40ad4a
Enable tests for commercial data extension
m-mohr 476b78a
First draft
m-mohr 9eb872e
Add title and description to workspaces, removed updating the quota
m-mohr 829bc79
Remove user collections
m-mohr 82102c3
Add missing conformance class for STAC API Core to example
m-mohr 6ea99c3
Clarified for log levels which default values apply
m-mohr 7d40f9d
Editorial changes based on OGC review (#525)
m-mohr bd54688
Fix typo in ProcessGraphComplexity error message (#526)
soxofaan e669dbe
Minor "ProcessInvalid" error typo fix (#535)
soxofaan b70b43c
Fix CI
m-mohr 13dc6bb
Document additional relation types for process metadata #531 (#536)
m-mohr caef6e4
Add Remote UDP extension #515 (#538)
m-mohr 777fa7c
Rename Remote UDP extension #540
m-mohr 23d47fb
More possibilities for federation extension
m-mohr 5feccf7
Issue #527 Generalize ProcessGraphComplexity error message/descriptio…
soxofaan 7eccf0b
Add workspace_providers endpoint, add intent/type to other endpoints
m-mohr 038ef4c
Merge remote-tracking branch 'origin/draft' into workspaces
m-mohr 68fa258
Merge pull request #518 from Open-EO/workspaces
m-mohr 162952e
Fix field name in OpenAPI document for Workspace extension
m-mohr 16f4c27
Add openEO processes version #517 (#549)
m-mohr 8393536
backend -> back-end
m-mohr 29318ff
Update CI
m-mohr c4da5e1
Consortium -> Project Steering Committee
m-mohr 5a8ce51
Fix CORS link
m-mohr 7833f93
Review comments by Scott Simmons
m-mohr 0f81fd8
Clarified the behaviour of `federation:backends` for `POST /validatio…
m-mohr d5ba280
doc: use AWS vocabulary in AWS example (#554)
pvbouwel 4250e31
Issue #508 Clarify updating expiration of signed URL (#516)
soxofaan b35c032
Add "OpenEO-Identifier" header to synchronous processing response (#533)
soxofaan 642f4d6
Fixup changelog on `level` property in sync processing request/respon…
soxofaan e4f607a
Processing Parameters Extension #276 #545 (#471)
m-mohr 5d356f7
Add additional batch job timestamps (#556)
m-mohr f7afd49
Issue #507: clarify that "canonical" job result link should include q…
soxofaan 556d9cb
Federation extension: nullable last_successful_check (#560)
soxofaan da9bf27
Update README.md
m-mohr 18d8882
Clarify federation extension fields (#564)
m-mohr 85a0e9a
Federation extension: What means "successfully validated"? #563
m-mohr 056e31c
Add openapi.yaml to versioned folders in gh-pages #551
m-mohr 96609f0
`GET /udf_runtimes`: Requires at least one UDF runtime to be provided…
m-mohr 2f931b9
Update STAC references and deprecate v0.9.0 #543 (#569)
m-mohr 7a375e1
Update redocly, simplify building process, deploy all extensions
m-mohr 5c8e12b
`GET /credentials/oidc`: Added `authorization_parameters` property to…
m-mohr 8b63b58
Added a status diagram that explains the status changes of batch jobs…
m-mohr a2a80cb
Added `stacktrace` to log entries, e.g. for `GET /jobs/{job_id}/logs`…
m-mohr 6a62ff8
Clarifies the terms "end"/"result" nodes and "root"/"child" process g…
m-mohr 7483918
Add web-editor relation type #577 (#578)
m-mohr 5f6aab6
Migrate from openEO-specific tokens to JWT #558 (#567)
m-mohr 388231c
v1.3.0 release + extensions
m-mohr a2efa34
Improve wording #582
m-mohr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,14 +11,13 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Inject env variables | ||
| uses: rlespinasse/github-slug-action@v3.x | ||
| - uses: actions/setup-node@v3 | ||
| uses: rlespinasse/github-slug-action@v5 | ||
| - uses: actions/setup-node@v5 | ||
| with: | ||
| node-version: 'lts/*' | ||
| - uses: actions/checkout@v3 | ||
| - run: | | ||
| npm install | ||
| npm run build | ||
| - uses: actions/checkout@v5 | ||
| - run: npm install | ||
| - run: npm run build | ||
| - name: clone gh-pages and clean-up | ||
| if: ${{ env.GITHUB_REF_SLUG == 'master' }} | ||
| run: | | ||
|
|
@@ -29,11 +28,12 @@ jobs: | |
| if: ${{ env.GITHUB_REF_SLUG != 'master' }} | ||
| run: mkdir gh-pages | ||
| - run: | | ||
| cp redoc.html gh-pages/index.html | ||
| cp *.html gh-pages/ | ||
| cp errors.json gh-pages/errors.json | ||
| cp openapi.yaml gh-pages/openapi.yaml | ||
| cp -rv assets/. gh-pages/assets/ | ||
| - name: deploy to root (master) | ||
| uses: peaceiris/actions-gh-pages@v3 | ||
| uses: peaceiris/actions-gh-pages@v4 | ||
| if: ${{ env.GITHUB_REF_SLUG == 'master' }} | ||
| with: | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
@@ -42,7 +42,7 @@ jobs: | |
| user_name: 'openEO CI' | ||
| user_email: [email protected] | ||
| - name: deploy to ${{ env.GITHUB_REF_SLUG }} | ||
| uses: peaceiris/actions-gh-pages@v3 | ||
| uses: peaceiris/actions-gh-pages@v4 | ||
| if: ${{ env.GITHUB_REF_SLUG != 'master' }} | ||
| with: | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| __pycache__/ | ||
| package-lock.json | ||
| node_modules/ | ||
| /redoc.html | ||
| .vscode | ||
| .idea | ||
| package-lock.json | ||
| /node_modules/ | ||
| /*.html | ||
| .vscode | ||
| .idea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| openapi.yaml: | ||
| no-required-schema-properties-undefined: | ||
| - '#/components/schemas/dimension_spatial_horizontal/allOf/1/required/0' | ||
| - '#/components/schemas/dimension_spatial_vertical/allOf/1/anyOf/0/required/0' | ||
| - '#/components/schemas/dimension_spatial_vertical/allOf/1/anyOf/1/required/0' | ||
| - '#/paths/~1jobs~1{job_id}~1estimate/get/responses/200/content/application~1json/schema/anyOf/0/required/0' | ||
| - '#/paths/~1jobs~1{job_id}~1estimate/get/responses/200/content/application~1json/schema/anyOf/1/required/0' | ||
| - '#/paths/~1jobs~1{job_id}~1estimate/get/responses/200/content/application~1json/schema/anyOf/2/required/0' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| extends: | ||
| - recommended | ||
|
|
||
| openapi: | ||
| expandResponses: "200,201,202,203,204" | ||
| pathInMiddlePanel: true | ||
|
|
||
| apis: | ||
| core: | ||
| root: ./openapi.yaml | ||
| commercial-data: | ||
| root: ./extensions/commercial-data/openapi.yaml | ||
| processing-parameters: | ||
| root: ./extensions/processing-parameters/openapi.yaml | ||
| workspaces: | ||
| root: ./extensions/workspaces/openapi.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.