@nymphjs/driver-postgresql 1.0.0-beta.0 → 1.0.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +46 -0
- package/dist/PostgreSQLDriver.d.ts +1 -0
- package/dist/PostgreSQLDriver.js +547 -590
- package/dist/PostgreSQLDriver.js.map +1 -1
- package/dist/PostgreSQLDriver.test.js +3 -12
- package/dist/PostgreSQLDriver.test.js.map +1 -1
- package/package.json +7 -7
- package/src/PostgreSQLDriver.ts +24 -4
- package/tsconfig.json +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,52 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-beta.10](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2023-01-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @nymphjs/driver-postgresql
|
|
9
|
+
|
|
10
|
+
# [1.0.0-beta.9](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2023-01-09)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @nymphjs/driver-postgresql
|
|
13
|
+
|
|
14
|
+
# [1.0.0-beta.8](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2023-01-09)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @nymphjs/driver-postgresql
|
|
17
|
+
|
|
18
|
+
# [1.0.0-beta.7](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2023-01-05)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- sqlite transaction returns wrong instance of nymph if it has been cloned ([b278c76](https://github.com/sciactive/nymphjs/commit/b278c7633722cb1cca7a941187ae2f1ff8ebdc7b))
|
|
23
|
+
|
|
24
|
+
# [1.0.0-beta.6](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2023-01-05)
|
|
25
|
+
|
|
26
|
+
**Note:** Version bump only for package @nymphjs/driver-postgresql
|
|
27
|
+
|
|
28
|
+
# [1.0.0-beta.5](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-11-24)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @nymphjs/driver-postgresql
|
|
31
|
+
|
|
32
|
+
# [1.0.0-beta.4](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-11-23)
|
|
33
|
+
|
|
34
|
+
**Note:** Version bump only for package @nymphjs/driver-postgresql
|
|
35
|
+
|
|
36
|
+
# [1.0.0-beta.3](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2022-11-21)
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
- don't run query callbacks asynchronously ([02ab89d](https://github.com/sciactive/nymphjs/commit/02ab89d174d6dd366e417d070672587937b4d4b3))
|
|
41
|
+
|
|
42
|
+
# [1.0.0-beta.2](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2022-11-21)
|
|
43
|
+
|
|
44
|
+
**Note:** Version bump only for package @nymphjs/driver-postgresql
|
|
45
|
+
|
|
46
|
+
# [1.0.0-beta.1](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2022-11-21)
|
|
47
|
+
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
|
|
50
|
+
- adjust typescript targets to output node 16 code ([36f15a6](https://github.com/sciactive/nymphjs/commit/36f15a601362ed54f4465ef6527402c026bbcf61))
|
|
51
|
+
|
|
6
52
|
# [1.0.0-beta.0](https://github.com/sciactive/nymphjs/compare/v1.0.0-alpha.43...v1.0.0-beta.0) (2022-11-16)
|
|
7
53
|
|
|
8
54
|
### Features
|
|
@@ -19,6 +19,7 @@ export default class PostgreSQLDriver extends NymphDriver {
|
|
|
19
19
|
static escape(input: string): string;
|
|
20
20
|
static escapeValue(input: string): string;
|
|
21
21
|
constructor(config: Partial<PostgreSQLDriverConfig>, link?: Pool, transaction?: PostgreSQLDriverTransaction);
|
|
22
|
+
clone(): PostgreSQLDriver;
|
|
22
23
|
private getConnection;
|
|
23
24
|
connect(): Promise<true>;
|
|
24
25
|
disconnect(): Promise<false>;
|