• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

typeorm / typeorm / 22256862981

21 Feb 2026 12:31PM UTC coverage: 81.291% (+0.1%) from 81.176%
22256862981

push

github

web-flow
feat!: remove deprecated `Connection` and `ConnectionOptions` (#12022)

27682 of 33521 branches covered (82.58%)

Branch coverage included in aggregate %.

1205 of 1301 new or added lines in 76 files covered. (92.62%)

1 existing line in 1 file now uncovered.

93920 of 116068 relevant lines covered (80.92%)

71235.59 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/driver/aurora-postgres/AuroraPostgresDataSourceOptions.ts
1
import { BaseDataSourceOptions } from "../../data-source/BaseDataSourceOptions"
×
2

×
3
/**
×
4
 * Postgres-specific connection options.
×
5
 */
×
NEW
6
export interface AuroraPostgresDataSourceOptions extends BaseDataSourceOptions {
×
7
    /**
×
8
     * Database type.
×
9
     */
×
10
    readonly type: "aurora-postgres"
×
11

×
12
    readonly region: string
×
13

×
14
    readonly secretArn: string
×
15

×
16
    readonly resourceArn: string
×
17

×
18
    readonly database: string
×
19

×
20
    /**
×
21
     * The driver object
×
22
     * This defaults to require("typeorm-aurora-data-api-driver")
×
23
     */
×
24
    readonly driver?: any
×
25

×
26
    /**
×
27
     * The Postgres extension to use to generate UUID columns. Defaults to uuid-ossp.
×
28
     * If pgcrypto is selected, TypeORM will use the gen_random_uuid() function from this extension.
×
29
     * If uuid-ossp is selected, TypeORM will use the uuid_generate_v4() function from this extension.
×
30
     */
×
31
    readonly uuidExtension?: "pgcrypto" | "uuid-ossp"
×
32

×
33
    readonly transformParameters?: boolean
×
34

×
35
    /*
×
36
     * Function handling errors thrown by drivers pool.
×
37
     * Defaults to logging error with `warn` level.
×
38
     */
×
39
    readonly poolErrorHandler?: (err: any) => any
×
40

×
41
    readonly serviceConfigOptions?: { [key: string]: any }
×
42

×
43
    readonly formatOptions?: { [key: string]: any; castParameters: boolean }
×
44

×
45
    readonly poolSize?: never
×
46
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc