File tree 5 files changed +12
-5
lines changed
5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 2.4.1] - 2022-01-13
10
+
11
+ ### Fixed
12
+
13
+ - Fixed regression for OIDC scopes introduced in 2.4.0
14
+
9
15
## [ 2.4.0] - 2022-01-10
10
16
11
17
### Added
@@ -165,7 +171,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
165
171
166
172
All prior releases have been documented in the [ GitHub Releases] ( https://github.com/Open-EO/openeo-js-client/releases ) .
167
173
168
- [ Unreleased ] : https://github.com/Open-EO/openeo-js-client/compare/v2.4.0...HEAD
174
+ [ Unreleased ] : https://github.com/Open-EO/openeo-js-client/compare/v2.4.1...HEAD
175
+ [ 2.4.1 ] : https://github.com/Open-EO/openeo-js-client/compare/v2.4.0...v2.4.1
169
176
[ 2.4.0 ] : https://github.com/Open-EO/openeo-js-client/compare/v2.3.1...v2.4.0
170
177
[ 2.3.1 ] : https://github.com/Open-EO/openeo-js-client/compare/v2.3.0...v2.3.1
171
178
[ 2.3.0 ] : https://github.com/Open-EO/openeo-js-client/compare/v2.2.0...v2.3.0
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ JavaScript/TypeScript client for the openEO API.
4
4
5
5
* [ Documentation] ( https://open-eo.github.io/openeo-js-client/latest/ ) .
6
6
7
- The version of this client is ** 2.4.0 ** and supports ** openEO API versions 1.x.x** .
7
+ The version of this client is ** 2.4.1 ** and supports ** openEO API versions 1.x.x** .
8
8
Legacy versions are available as releases.
9
9
See the [ CHANGELOG] ( CHANGELOG.md ) for recent changes.
10
10
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @openeo/js-client" ,
3
- "version" : " 2.4.0 " ,
3
+ "version" : " 2.4.1 " ,
4
4
"author" : " openEO Consortium" ,
5
5
"contributors" : [
6
6
{
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ class OidcProvider extends AuthProvider {
241
241
client_id : this . clientId ,
242
242
redirect_uri : OidcProvider . redirectUrl ,
243
243
authority : this . issuer . replace ( '/.well-known/openid-configuration' , '' ) ,
244
- scope,
244
+ scope : scope . join ( ' ' ) ,
245
245
validateSubOnSilentRenew : true ,
246
246
response_type,
247
247
response_mode : response_type . includes ( 'code' ) ? 'query' : 'fragment'
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ class OpenEO {
110
110
* @returns {string } Version number (according to SemVer).
111
111
*/
112
112
static clientVersion ( ) {
113
- return "2.4.0 " ;
113
+ return "2.4.1 " ;
114
114
}
115
115
116
116
}
You can’t perform that action at this time.
0 commit comments