This repository was archived by the owner on Feb 20, 2024. It is now read-only.
File tree 4 files changed +21
-4
lines changed
4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Solace Async API Management.
4
4
5
+ ## Version 0.2.1
6
+ * [ API-M Admin & Developer Portal] ( https://github.com/solace-iot-team/async-apim/tree/main/apim-portal ) : 0.2.1
7
+ * [ API-M Server OpenAPI] ( https://github.com/solace-iot-team/async-apim/blob/main/apim-server/server/common/api.yml ) : 0.2.0
8
+ * [ API-M Server] ( https://github.com/solace-iot-team/async-apim/tree/main/apim-server ) : 0.2.0
9
+ * [ API-M Connector OpenAPI] ( https://github.com/solace-iot-team/platform-api ) : 0.7.11
10
+
11
+ ** Fixes:**
12
+ * ** quickstart**
13
+ - corrected env vars for server
14
+ * ** portal**
15
+ - fixed fetch credentials parameters issue
16
+
17
+
5
18
## Version 0.2.0
6
19
* [ API-M Admin & Developer Portal] ( https://github.com/solace-iot-team/async-apim/tree/main/apim-portal ) : 0.2.0
7
20
* [ API-M Server OpenAPI] ( https://github.com/solace-iot-team/async-apim/blob/main/apim-server/server/common/api.yml ) : 0.2.0
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " async-apim-portal" ,
3
- "version" : " 0.2.0 " ,
3
+ "version" : " 0.2.1 " ,
4
4
"description" : " Solace Async API Management Portal" ,
5
5
"repository" : {
6
6
"type" : " git" ,
Original file line number Diff line number Diff line change @@ -29,10 +29,12 @@ export class APSClientOpenApi {
29
29
public static set = ( ) : void => {
30
30
const funcName = 'set' ;
31
31
const logName = `${ APSClientOpenApi . componentName } .${ funcName } ()` ;
32
- if ( ! APSClientOpenApi . isInitialized ) throw new Error ( `${ logName } : not initialized` ) ;
32
+ if ( ! APSClientOpenApi . isInitialized ) throw new Error ( `${ logName } : not initialized` ) ;
33
33
if ( APSClientOpenApi . config . apsServerUrl ) {
34
34
const base : URL = new URL ( APSOpenAPI . BASE , APSClientOpenApi . config . apsServerUrl . toString ( ) ) ;
35
35
APSOpenAPI . BASE = base . toString ( ) ;
36
+ APSOpenAPI . WITH_CREDENTIALS = false ;
37
+ APSOpenAPI . CREDENTIALS = "omit" ;
36
38
}
37
39
console . log ( `${ logName } : APSOpenAPI = ${ JSON . stringify ( APSOpenAPI , null , 2 ) } ` ) ;
38
40
}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ services:
17
17
qs-async-apim-admin-portal :
18
18
container_name : qs-async-apim-admin-portal
19
19
image : " solaceiotteam/async-apim-admin-portal:latest"
20
- # image : "solaceiotteam/async-apim-admin-portal:0.0.21 "
20
+ # image : "solaceiotteam/async-apim-admin-portal:0.1.9 "
21
21
ports :
22
22
- 5080:80
23
23
restart : unless-stopped
@@ -33,6 +33,7 @@ services:
33
33
- qs-async-apim-connector
34
34
- qs-async-apim-server-mongodb
35
35
image : " solaceiotteam/async-apim-server:latest"
36
+ # image: "solaceiotteam/async-apim-server:0.1.1"
36
37
ports :
37
38
- 5002:3000
38
39
volumes :
@@ -47,10 +48,11 @@ services:
47
48
- APIM_SERVER_LOGGER_APP_ID=qs-async-apim-server
48
49
- APIM_SERVER_LOGGER_LOG_LEVEL=trace
49
50
- APIM_SERVER_REQUEST_SIZE_LIMIT=100kb
50
- - APIM_SERVER_SECRET=mySecret
51
+ - APIM_SERVER_COOKIE_SECRET=myCookieSecret
51
52
- APIM_SERVER_ROOT_USER=${APIM_SERVER_ROOT_USER}
52
53
- APIM_SERVER_ROOT_USER_PWD=${APIM_SERVER_ROOT_USER_PWD}
53
54
- APIM_SERVER_DATA_PATH=/data
55
+ - APIM_SERVER_AUTH_TYPE=none
54
56
logging :
55
57
options :
56
58
max-size : " 10m"
You can’t perform that action at this time.
0 commit comments