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
+15-3
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [Unreleased]
8
8
9
-
### Added
9
+
##[v1.1.0] - 2023-04-30
10
10
11
11
### Changed
12
12
13
13
- Clarify http and extend http authorization methods [#27](https://github.com/stac-extensions/authentication/pull/27)
14
+
- Split Authentication Flows Object into OAuth2 Flow Object and Signed URL Object
15
+
- The JSON Schema is much stricter compared to before, actually enforcing many restrictions documented in the written spec
16
+
- The Parameter Schemas must comply to JSON Schema draft-07 instead of OpenAPI Schema [#21](https://github.com/stac-extensions/authentication/issues/21)
14
17
15
-
### Deprecated
18
+
### Fixed
19
+
20
+
- JSON Schema supports Catalogs
21
+
- Fixed various other issues in the JSON Schema
22
+
- Clarified which fields apply to which schema type
23
+
- Clarified required fields
24
+
- Fixed examples
16
25
17
26
### Removed
18
27
28
+
- Removed the provider-specific `planetaryComputer` and `earthdata` scheme types [#32](https://github.com/stac-extensions/authentication/pull/32)
29
+
19
30
## [v1.0.0] - 2023-11-07
20
31
21
32
### Added
@@ -58,5 +69,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|`apiKey`| Description of [API key](https://swagger.io/docs/specification/authentication/api-keys/) authentication included in request headers, query parameters, or cookies. |
66
64
|`openIdConnect`| Description of [OpenID Connect Discovery](https://swagger.io/docs/specification/authentication/openid-connect-discovery/) authentication |
67
65
68
66
### Authentication Scheme Object
69
67
70
-
The Authentication Scheme aligns with the
71
-
[OpenAPI security spec](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#security-scheme-object) for support of OAuth2.0,
72
-
API Key, and OpenID authentication. All the [authentication clients](https://github.com/stac-utils/stac-asset#clients) included in the
73
-
[stac-asset](https://github.com/stac-utils/stac-asset) library can be described, as well as a custom signed URL authentication scheme.
|`type`| string |**REQUIRED**. The authentication scheme type used to access the data (`http`\|`s3`\|`planetaryComputer`\|`earthdata`\|`signedUrl`\|`oauth2`\|`apiKey`\|`openIdConnect`\| a custom scheme type ). |
78
-
|`description`| string | Additional instructions for authentication. [CommonMark 0.29](https://commonmark.org/) syntax MAY be used for rich text representation. |
79
-
|`name`| string | Required for `type: apiKey`. The name of the header, query, or cookie parameter to be used. |
80
-
|`in`| string | Required for `type: apiKey`. The location of the API key (`query`\|`header`\|`cookie`). |
81
-
|`scheme`| string | Required for `type: http`. The name of the HTTP Authorization scheme to be used in the [Authorization header as defined in RFC7235](https://tools.ietf.org/html/rfc7235#section-5.1). The values used SHOULD be registered in the [IANA Authentication Scheme registry](https://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml). (`basic`\|`bearer`\|`digest`\|`dpop`\|`hoba`\|`mutual`\|`negotiate`\|`oauth` (1.0) \|`privatetoken`\|`scram-sha-1`\|`scram-sha-256`\|`vapid`) |
82
-
|`flows`| Map<string, [Authentication Flows Object](#authentication-flow-object)> | Required for `type: oauth2` and `type: signedUrl`. Scenarios an API client performs to get an access token from the authorization server (`authorizationCode`\|`implicit`\|`password `\|`clientCredentials`) |
83
-
|`openIdConnectUrl`| string | Required for `type: openIdConnectUrl`. OpenID Connect URL to discover OAuth2 configuration values. This MUST be in the form of a URL. |
84
-
85
-
### Authentication Flow Object
86
-
87
-
[OpenAPI OAuth Flow Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#oauth-flows-object). Allows configuration of
|`authorizationUrl`|`string`| Required for `oauth2` (`"implicit"`, `"authorizationCode"`). The authorization URL to be used for this flow. This MUST be in the form of a URL. |
95
-
|`tokenUrl`|`string`| Required for `oauth2` (`"password"`, `"clientCredentials"`, `"authorizationCode"`). The token URL to be used for this flow. This MUST be in the form of a URL. |
96
-
|`authorizationApi`|`string`| Optional for `signedUrl`. The signed URL API endpoint to be used for this flow. If not enferred from the client environment, this must be defined in the authentication flow. |
97
-
|`refreshUrl`|`string`| Optional for `oauth2`. The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. |
98
-
|`scopes`| Map<`string`, `string`> | Required for `oauth2`. The available scopes for the authentication scheme. A map between the scope name and a short description for it. The map MAY be empty. |
99
-
|`method`|`string`| Required for `signedUrl`. The method to be used for requests |
100
-
|`parameters`| Map<string, [Parameter Object](#parameter-object)> | Optional for `signedUrl`. Parameter definition for requests to the `authorizationApi`|
101
-
|`responseField`| string | Optional for `signedUrl`. Key name for the signed URL field in an authorizationApi response |
|`type`| string |*All*|**REQUIRED**. The authentication scheme type used to access the data (`http`\|`s3`\|`signedUrl`\|`oauth2`\|`apiKey`\|`openIdConnect`\| a custom scheme type ). |
78
+
|`description`| string |*All*| Additional instructions for authentication. [CommonMark 0.29](https://commonmark.org/) syntax MAY be used for rich text representation. |
79
+
|`name`| string |`apiKey`|**REQUIRED.** The name of the header, query, or cookie parameter to be used. |
80
+
|`in`| string |`apiKey`|**REQUIRED.** The location of the API key (`query`\|`header`\|`cookie`). |
81
+
|`scheme`| string |`http`|**REQUIRED.** The name of the HTTP Authorization scheme to be used in the [Authorization header as defined in RFC7235](https://tools.ietf.org/html/rfc7235#section-5.1). The values used SHOULD be registered in the [IANA Authentication Scheme registry](https://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml). (`basic`\|`bearer`\|`digest`\|`dpop`\|`hoba`\|`mutual`\|`negotiate`\|`oauth` (1.0) \|`privatetoken`\|`scram-sha-1`\|`scram-sha-256`\|`vapid`) |
82
+
|`flows`| Map<string, [OAuth2 Flow Object](#oauth2-flow-object)\|[Signed URL Object](#signed-url-object)>> |`oauth2`, `signedUrl`|**REQUIRED.** Scenarios an API client performs to get an access token from the authorization server. For `oauth2` the following keys are pre-defined for the corresponding OAuth flows: `authorizationCode`\|`implicit`\|`password `\|`clientCredentials`. The OAuth2 Flow Object applies for `oauth2`, the Signed URL Object applies to `signedUrl`. |
83
+
|`openIdConnectUrl`| string |`openIdConnect`|**REQUIRED.** OpenID Connect URL to discover OpenID configuration values. This MUST be in the form of a URL. |
84
+
85
+
The column "Applies to" specifies for which values of `type` the fields only apply.
86
+
They are also only required in this context.
87
+
88
+
### OAuth2 Flow Object
89
+
90
+
Based on the [OpenAPI OAuth Flow Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#oauth-flows-object).
91
+
Allows configuration of the supported OAuth Flows.
|`authorizationUrl`|`string`|**REQUIRED** for parent keys: `"implicit"`, `"authorizationCode"`. The authorization URL to be used for this flow. This MUST be in the form of a URL. |
96
+
|`tokenUrl`|`string`|**REQUIRED** for parent keys: `"password"`, `"clientCredentials"`, `"authorizationCode"`. The token URL to be used for sthis flow. This MUST be in the form of a URL. |
97
+
|`scopes`| Map<`string`, `string`> |**REQUIRED.** The available scopes for the authentication scheme. A map between the scope name and a short description for it. The map MAY be empty. |
98
+
|`refreshUrl`|`string`| The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. |
99
+
100
+
### Signed URL Object
101
+
102
+
Based on the [OpenAPI OAuth Flow Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#oauth-flows-object).
103
+
Allows configuration of the supported OAuth Flows.
|`method`|`string`|**REQUIRED.** The method to be used for requests |
108
+
|`authorizationApi`|`string`|**REQUIRED.** The signed URL API endpoint to be used for this flow. If not inferred from the client environment, this must be defined in the authentication flow. |
109
+
|`parameters`| Map<string, [Parameter Object](#parameter-object)> | Parameter definition for requests to the `authorizationApi`|
110
+
|`responseField`| string | Key name for the signed URL field in an `authorizationApi` response |
102
111
103
112
### Parameter Object
104
113
105
-
Definition for a request parameter
114
+
Definition for a request parameter.
106
115
107
-
| Field Name | Type | Description |
108
-
| ------------- | --------- | ----------- |
109
-
|`in`|`string`| The location of the parameter (`query`\|`header`\|`body`). |
110
-
|`required`|`boolean`| Setting for optional or required parameter|
111
-
|`description`|`string`|Optional. Plain language description of the parameter |
112
-
|`schema`|`object`|Optional. Schema object following the [OpenAPI extended subset](https://swagger.io/docs/specification/data-models/) of the [JSON Schema spec](https://json-schema.org/)|
@@ -149,7 +158,7 @@ Definition for a request parameter
149
158
]
150
159
```
151
160
152
-
####Asset reference
161
+
### Asset reference
153
162
154
163
```json
155
164
"assets": {
@@ -299,8 +308,7 @@ Promise(
299
308
300
309
### Planetary Computer URL Signing
301
310
302
-
Planetary Computer uses the same signed URL pattern described above. Here is an example of how to configure an `auth:scheme` with instructions on
303
-
how to sign URLs with the [Planetary Computer Data Authentication API](https://planetarycomputer.microsoft.com/docs/reference/sas/)
311
+
Planetary Computer uses the same signed URL pattern described above. Here is an example of how to configure a `signedUrl``auth:scheme` for the [Planetary Computer Data Authentication API](https://planetarycomputer.microsoft.com/docs/reference/sas/)
0 commit comments