File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 11<!-- markdownlint-disable MD024 -->
22# Changelog
33
4+ ## [ 1.0.7] - 2024-11-21
5+
6+ ### Changed
7+
8+ - The backend client now correctly uses asynchronous messaging to handle long running
9+ operations.
10+ - Updated the backend command line tool to respect the ` ENVIRONMENT ` env variable
11+ if set.
12+
13+ ### Changed
14+
15+ - Use client Connect tokens to make api calls directly from the client.
16+ - Deprecated the ` environments ` property on ` createFrontendClient ` since it is now
17+ stored in the token
18+
419## [ 1.0.6] - 2024-11-20
520
621### Changed
Original file line number Diff line number Diff line change 11{
22 "name" : " @pipedream/sdk" ,
3- "version" : " 1.0.6 " ,
3+ "version" : " 1.0.7 " ,
44 "description" : " Pipedream SDK" ,
55 "main" : " dist/server/server/index.js" ,
66 "module" : " dist/server/server/index.js" ,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export class ServerAsyncResponseManager extends AsyncResponseManager {
3232 protected override async getOpts ( ) : Promise < AsyncResponseManagerOpts > {
3333 const oauthToken = await this . serverOpts . getOauthToken ( ) ;
3434 if ( ! oauthToken ?. token ?. access_token ) {
35- throw new Error ( ' Invalid OAuth token structure' ) ;
35+ throw new Error ( " Invalid OAuth token structure" ) ;
3636 }
3737 const token = oauthToken . token . access_token ;
3838 const projectId = await this . serverOpts . getProjectId ( ) ;
You can’t perform that action at this time.
0 commit comments