File tree Expand file tree Collapse file tree 8 files changed +24
-24
lines changed
gaussdb-connection-string Expand file tree Collapse file tree 8 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaussdb-cloudflare" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " A socket implementation for GaussDB that can run on Cloudflare Workers using native TCP connections." ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaussdb-connection-string" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " Functions for dealing with a GaussDB connection string" ,
5
5
"main" : " ./index.js" ,
6
6
"types" : " ./index.d.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaussdb-cursor" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " Query cursor extension for GaussDB" ,
5
5
"main" : " index.js" ,
6
6
"exports" : {
24
24
"author" : " Brian M. Carlson" ,
25
25
"license" : " MIT" ,
26
26
"devDependencies" : {
27
- "mocha " : " ^10.5.2 " ,
28
- "gaussdb " : " ^0.1.0 "
27
+ "gaussdb " : " ^0.1.1 " ,
28
+ "mocha " : " ^10.5.2 "
29
29
},
30
30
"peerDependencies" : {
31
31
"gaussdb" : " ^0.1.0"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaussdb-esm-test" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " A test module for GaussDB with ESM support" ,
5
5
"main" : " index.js" ,
6
6
"type" : " module" ,
13
13
" test"
14
14
],
15
15
"devDependencies" : {
16
- "gaussdb" : " ^0.1.0 " ,
17
- "gaussdb-cloudflare" : " ^0.1.0 " ,
18
- "gaussdb-cursor" : " ^0.1.0 " ,
19
- "pg-native " : " ^3.5.0 " ,
20
- "gaussdb-pool " : " ^0.1.0 " ,
21
- "gaussdb-protocol " : " ^0.1.0 " ,
22
- "gaussdb-query-stream " : " ^0.1 .0"
16
+ "gaussdb" : " ^0.1.1 " ,
17
+ "gaussdb-cloudflare" : " ^0.1.1 " ,
18
+ "gaussdb-cursor" : " ^0.1.1 " ,
19
+ "gaussdb-pool " : " ^0.1.1 " ,
20
+ "gaussdb-protocol " : " ^0.1.1 " ,
21
+ "gaussdb-query-stream " : " ^0.1.1 " ,
22
+ "pg-native " : " ^3.5 .0"
23
23
},
24
24
"author" :
" Brian M. Carlson <[email protected] >" ,
25
25
"license" : " MIT"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaussdb" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " GaussDB client - pure javascript & libpq with the same API" ,
5
5
"keywords" : [
6
6
" database" ,
20
20
"." : {
21
21
"import" : " ./esm/index.mjs" ,
22
22
"require" : " ./lib/index.js" ,
23
- "default" : " ./lib/index.js"
23
+ "default" : " ./lib/index.js"
24
24
},
25
25
"./lib/*" : {
26
26
"import" : " ./lib/*" ,
29
29
}
30
30
},
31
31
"dependencies" : {
32
- "gaussdb-connection-string" : " ^0.1.0 " ,
33
- "gaussdb-pool" : " ^0.1.0 " ,
34
- "gaussdb-protocol" : " ^0.1.0 " ,
32
+ "gaussdb-connection-string" : " ^0.1.1 " ,
33
+ "gaussdb-pool" : " ^0.1.1 " ,
34
+ "gaussdb-protocol" : " ^0.1.1 " ,
35
35
"pg-types" : " 2.2.0" ,
36
36
"pgpass" : " 1.0.5"
37
37
},
47
47
"wrangler" : " ^3.x"
48
48
},
49
49
"optionalDependencies" : {
50
- "gaussdb-cloudflare" : " ^0.1.0 "
50
+ "gaussdb-cloudflare" : " ^0.1.1 "
51
51
},
52
52
"peerDependencies" : {
53
53
"pg-native" : " >=3.0.1"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaussdb-pool" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " Connection pool for GaussDB" ,
5
5
"main" : " index.js" ,
6
6
"exports" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaussdb-protocol" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " The GaussDB client/server binary protocol, implemented in TypeScript" ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gaussdb-query-stream" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " GaussDB query result returned as readable stream" ,
5
5
"main" : " ./dist/index.js" ,
6
6
"types" : " ./dist/index.d.ts" ,
43
43
"JSONStream" : " ~1.3.5" ,
44
44
"concat-stream" : " ~1.0.1" ,
45
45
"eslint-plugin-promise" : " ^6.0.1" ,
46
+ "gaussdb" : " ^0.1.1" ,
46
47
"mocha" : " ^10.5.2" ,
47
- "gaussdb" : " ^0.1.0" ,
48
48
"stream-spec" : " ~0.3.5" ,
49
49
"ts-node" : " ^8.5.4" ,
50
50
"typescript" : " ^4.0.3"
53
53
"gaussdb" : " ^0.1.0"
54
54
},
55
55
"dependencies" : {
56
- "gaussdb-cursor" : " ^0.1.0 "
56
+ "gaussdb-cursor" : " ^0.1.1 "
57
57
}
58
58
}
You can’t perform that action at this time.
0 commit comments