File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11kind : source
22spec :
33 name : ' aws'
4- version : ' v2.0.1 '
4+ version : " v3.4.2 " # latest version of aws plugin
55 destinations : ['postgresql']
Original file line number Diff line number Diff line change 11kind : destination
22spec :
33 name : ' postgresql'
4- version : ' v1.0.0 '
4+ version : " v1.3.3 " # latest version of postgresql plugin
55 write_mode : ' overwrite'
66 spec :
77 connection_string : ' postgresql://postgres:pass@localhost:5432/postgres?sslmode=disable'
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ import semver from 'semver';
77import path from 'path' ;
88
99const binaries = {
10- darwin : 'cloudquery_darwin_x86_64 ' ,
11- linux : 'cloudquery_linux_x86_64 ' ,
10+ darwin : 'cloudquery_darwin_amd64 ' ,
11+ linux : 'cloudquery_linux_amd64 ' ,
1212} ;
1313
1414const resolveDownloadUrl = async ( version : string , binary : string ) => {
1515 if ( version === 'latest' ) {
16- return `https://versions.cloudquery.io/latest/v1 /${ binary } ` ;
16+ return `https://versions.cloudquery.io/latest/v2 /${ binary } ` ;
1717 }
1818 const tag = version . startsWith ( 'v' ) ? `cli-${ version } ` : `cli-v${ version } ` ;
1919 return `https://github.com/cloudquery/cloudquery/releases/download/${ tag } /${ binary } ` ;
You can’t perform that action at this time.
0 commit comments